:root {
  --cream: #f5efe3;
  --cream-alt: #fbf8f1;
  --ink: #241f18;
  --body: #4e483a;
  --line: #e2d8c3;
  --olive: #4a7856;
  --olive-text: #2f5a3d;
  --olive-deep: #1f3f2b;
  --clay: #8c6a4c;
  --espresso: #211a13;
  --cream-on-dark: #efe6d4;
  --radius-l: 28px;
  --radius-m: 20px;
  --radius-s: 12px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--body);
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* quiet paper grain, applied globally, very low opacity */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

h1,
h2,
h3,
h4,
.serif {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
  cursor: default;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 10px 0;
}
.skip-link:focus {
  left: 0;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--olive-text);
  outline-offset: 3px;
  border-radius: 4px;
}

.eyebrow {
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--olive-text);
  margin: 0 0 0.9rem;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 3.5rem);
}

/* ---------- reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(6px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease),
    filter 0.9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.reveal-1.is-visible {
  transition-delay: 0.08s;
}
.reveal-2.is-visible {
  transition-delay: 0.16s;
}
.reveal-3.is-visible {
  transition-delay: 0.24s;
}
.reveal-4.is-visible {
  transition-delay: 0.32s;
}
.reveal-5.is-visible {
  transition-delay: 0.4s;
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    transition: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition:
    background 0.35s var(--ease),
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    color 0.35s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--olive-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -12px rgba(36, 31, 24, 0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  background: var(--cream-alt);
  border-color: var(--olive);
}
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--olive-text);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--olive);
  padding-bottom: 2px;
  transition:
    gap 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.btn-link:hover {
  gap: 0.7rem;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition:
    background 0.5s var(--ease),
    padding 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    backdrop-filter 0.5s var(--ease);
}
.site-header.scrolled {
  background: rgba(245, 239, 227, 0.86);
  backdrop-filter: blur(14px);
  padding: 0.9rem 0;
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 3.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-width: 0;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-mark {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: var(--ink);
}
.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-text);
  margin-top: 0.25rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--olive-text);
  transition: right 0.35s var(--ease);
}
.nav-links a:hover::after {
  right: 0;
}
.nav-cta {
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.4rem;
  color: var(--ink);
  flex-shrink: 0;
  position: relative;
}
.nav-toggle svg {
  width: 26px;
  height: 26px;
}
.nav-toggle .icon-close {
  display: none;
}
.nav-toggle.is-open .icon-hamburger {
  display: none;
}
.nav-toggle.is-open .icon-close {
  display: block;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: var(--cream);
  z-index: 99;
  padding: 0;
  flex-direction: column;
  gap: 0;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  overflow-x: hidden;
  overflow-y: auto;
}
.nav-mobile.open {
  transform: translateY(0);
}
.nav-mobile-close {
  position: relative;
  align-self: flex-end;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  transition: opacity 0.3s var(--ease);
  margin: 1rem 1rem 0 0;
  flex-shrink: 0;
}
.nav-mobile-close:hover {
  opacity: 0.6;
}
.nav-mobile-close svg {
  width: 24px;
  height: 24px;
}
.nav-mobile a {
  font-family: "Fraunces", serif;
  font-size: 1.7rem;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--line);
  display: block;
  transition: color 0.3s var(--ease);
}
.nav-mobile a:hover {
  color: var(--olive-text);
}
.nav-mobile .btn {
  margin: 2rem 1.5rem 1rem 1.5rem;
  align-self: flex-start;
  width: auto;
  color: var(--cream);
}

@media (max-width: 860px) {
  .site-header {
    padding: 0.9rem 0;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-inner {
    gap: 0.75rem;
    padding-inline: 1rem;
  }
  .brand {
    min-width: 0;
    max-width: calc(100% - 64px);
  }
  .brand-mark {
    font-size: 1.2rem;
  }
  .brand-sub {
    font-size: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .nav-toggle {
    display: block;
  }
  .nav-mobile {
    display: flex;
  }
}

/* ---------- hero ---------- */
.hero {
  padding: 9.5rem 0 6rem;
  position: relative;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.5rem, 4.6vw, 4.1rem);
  line-height: 1.06;
  margin-bottom: 1.5rem;
  max-width: 12ch;
}
.hero-sub {
  font-size: 1.08rem;
  max-width: 38ch;
  margin-bottom: 2.2rem;
  color: var(--body);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}
.hero-media {
  position: relative;
}
.hero-glow {
  position: absolute;
  inset: -12% -18%;
  background: radial-gradient(
    closest-side,
    rgba(140, 106, 76, 0.28),
    rgba(245, 239, 227, 0) 70%
  );
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}
.hero-image-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 60px -25px rgba(36, 31, 24, 0.35);
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.12) saturate(0.92) contrast(1.02);
  transform: scale(1.02);
}
.plate {
  position: absolute;
  bottom: 1.4rem;
  right: 1.4rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  font-weight: 600;
  padding: 0.9rem 0.5rem;
  border-left: 1px solid rgba(245, 239, 227, 0.5);
}

/* ---------- section shells ---------- */
section {
  padding: 6.5rem 0;
  position: relative;
  z-index: 1;
}
.section-head {
  max-width: 640px;
  margin-bottom: 3.2rem;
}
.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-intro {
  font-size: 1.05rem;
  max-width: 46ch;
}

/* ---------- about ---------- */
.about {
  background: var(--cream-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-image-frame {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 24px 50px -28px rgba(36, 31, 24, 0.4);
}
.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.12) saturate(0.92) contrast(1.02);
}
.about-image-frame .plate {
  color: var(--cream);
}
.about-copy h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  max-width: 14ch;
  margin-bottom: 1.6rem;
}
.about-copy p {
  margin-bottom: 1.15rem;
  max-width: 48ch;
  font-size: 1.03rem;
}
.about-detail {
  font-family: "Fraunces", serif;
  font-style: italic;
  color: var(--olive-text);
  font-size: 1.1rem;
  margin-top: 1.6rem !important;
}

/* ---------- services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}
.service-card {
  background: var(--cream-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 2.1rem 1.9rem;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.45s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px -26px rgba(36, 31, 24, 0.3);
  border-color: var(--olive);
}
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--olive-deep);
  margin-bottom: 1.3rem;
}
.service-icon svg {
  width: 20px;
  height: 20px;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.93rem;
  color: var(--body);
}

/* ---------- gallery ---------- */
.gallery-grid {
  column-count: 1;
  column-gap: 0.5rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 2rem;
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  display: block;
  filter: sepia(0.1) saturate(0.94) contrast(1.02);
  transition: transform 0.8s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(15, 12, 10, 0);
  backdrop-filter: blur(0px) saturate(1.1);
  isolation: isolate;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.35s var(--ease),
    background 0.35s var(--ease),
    backdrop-filter 0.35s var(--ease);
}
body.lightbox-open {
  overflow: hidden;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
  background: rgba(15, 12, 10, 0.72);
  backdrop-filter: blur(14px) saturate(1.1);
}
.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  width: auto;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease);
}
.lightbox.is-open img {
  opacity: 1;
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
}
@media (min-width: 640px) {
  .gallery-grid {
    column-count: 2;
  }
}
@media (min-width: 1000px) {
  .gallery-grid {
    column-count: 3;
  }
}

/* ---------- why ---------- */
.why {
  background: var(--cream-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.value-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}
.value-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 3px solid var(--olive);
  border-radius: var(--radius-m);
  padding: 2.1rem 1.9rem;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.45s var(--ease);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px -26px rgba(36, 31, 24, 0.3);
  border-color: var(--olive);
}
.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--olive-deep);
}
.value-card p {
  font-size: 0.95rem;
  color: var(--body);
}

/* ---------- testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.6rem;
}
.testimonial-grid blockquote {
  margin: 0;
}
.testimonial-grid p {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.testimonial-grid cite {
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--olive-text);
  font-weight: 600;
}

/* ---------- faq ---------- */
.faq-list {
  max-width: 760px;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0.2rem;
  cursor: pointer;
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.faq-item:hover .faq-question {
  color: var(--olive-deep);
}
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--olive);
  transition: transform 0.35s var(--ease);
}
.faq-item[open] .faq-icon {
  transform: rotate(135deg);
  color: var(--olive-deep);
}
.faq-answer {
  padding: 0 2.6rem 1.7rem 0.2rem;
  font-size: 0.98rem;
  color: var(--body);
  max-width: 60ch;
}
@keyframes faq-fade-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.faq-item[open] .faq-answer {
  animation: faq-fade-in 0.35s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  .faq-item[open] .faq-answer {
    animation: none;
  }
}

/* ---------- contact ---------- */
.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.contact-details {
  margin: 2rem 0 2.2rem;
}
.contact-details > div {
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}
.contact-details > div:last-child {
  border-bottom: 1px solid var(--line);
}
.contact-details dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--olive-text);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.contact-details dd {
  margin: 0;
  font-size: 1.02rem;
  color: var(--ink);
}
.contact-details a:hover {
  color: var(--olive-deep);
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  align-items: center;
}
.contact-map {
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 50px -30px rgba(36, 31, 24, 0.35);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: sepia(0.15) saturate(0.7) brightness(0.98);
}
@media (max-width: 860px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .contact-map iframe {
    min-height: 320px;
  }
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--espresso);
  color: var(--cream-on-dark);
  padding-top: 5rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 3.5rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(239, 230, 212, 0.14);
}
.footer-brand .brand-mark {
  color: var(--cream-on-dark);
}
.footer-brand p {
  margin-top: 0.9rem;
  max-width: 32ch;
  font-size: 0.92rem;
  color: rgba(239, 230, 212, 0.7);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-links a {
  font-size: 0.94rem;
  color: rgba(239, 230, 212, 0.85);
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--cream-on-dark);
}
.footer-social {
  display: flex;
  gap: 0.9rem;
  align-self: flex-start;
}
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(239, 230, 212, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.footer-social a:hover {
  background: rgba(239, 230, 212, 0.1);
  border-color: rgba(239, 230, 212, 0.5);
}
.footer-social svg {
  width: 18px;
  height: 18px;
}
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.6rem clamp(1.25rem, 4vw, 3.5rem) 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(239, 230, 212, 0.55);
}

@media (max-width: 860px) {
  .hero-inner,
  .about-inner {
    grid-template-columns: 1fr;
  }
  .hero-media {
    order: -1;
  }
  .hero-copy h1 {
    max-width: none;
  }
}
