/* =================================================================
   LEMON & SAGE — Shared site CSS
   Loaded by homepage and all service detail pages
   ================================================================= */

:root {
  --sage: #7d8d72;
  --sage-light: #a7b39c;
  --sage-deep: #4d5a44;
  --sage-mist: #d9deca;
  --lemon: #d4b76a;
  --lemon-light: #e8d49b;
  --lemon-deep: #8a6e34;
  --butter: #fbf6ec;
  --cream: #f4ede1;
  --paper: #efe6d4;
  --walnut: #3a2a1e;
  --walnut-soft: #5c4636;
  --bark: #2a1f18;
  --line: rgba(58,42,30,0.12);
  --line-soft: rgba(58,42,30,0.06);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'DM Mono', 'IBM Plex Mono', monospace;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --gutter: clamp(20px, 4vw, 64px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; font-size: 16px; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--walnut);
  background: var(--butter);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.35s var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--walnut); color: var(--cream); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--walnut);
  font-variation-settings: "opsz" 96, "SOFT" 50;
}
h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--lemon-deep);
  font-weight: 400;
  font-variation-settings: "opsz" 96, "SOFT" 100;
}

.eyebrow {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sage-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--sage);
}

.lede {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--walnut-soft);
  max-width: 56ch;
  font-weight: 300;
}

/* ============== BOTANICAL ============== */
.botanical {
  position: absolute;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
}
.botanical.is-visible { opacity: 1; }
.botanical svg { width: 100%; height: 100%; overflow: visible; }
.botanical-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  transition: stroke-dashoffset 2.4s var(--ease-out);
}
.botanical.is-visible .botanical-stroke { stroke-dashoffset: 0; }
.botanical-fill {
  opacity: 0;
  transition: opacity 1.2s var(--ease-out) 0.8s;
}
.botanical.is-visible .botanical-fill { opacity: 1; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.15rem 2.4rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--walnut);
  color: var(--butter);
  border: 1px solid var(--walnut);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease);
  cursor: pointer;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--sage-deep);
  transform: translateY(101%);
  transition: transform 0.55s var(--ease);
  z-index: -1;
}
.btn:hover::before { transform: translateY(0); }
.btn:hover {
  border-color: var(--sage-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -12px rgba(58,42,30,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--walnut);
  border-color: var(--line);
}
.btn-outline::before { background: var(--walnut); }
.btn-outline:hover { color: var(--butter); border-color: var(--walnut); }
.btn-light {
  background: var(--butter);
  color: var(--walnut);
  border-color: var(--butter);
}
.btn-light::before { background: var(--sage-mist); }
.btn-light:hover { color: var(--walnut); }
.btn .arrow {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  transition: transform 0.45s var(--ease);
}
.btn:hover .arrow { transform: translateX(6px); }

/* ============== NAV ============== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  padding: 1.5rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(251, 246, 236, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
}
.nav.is-scrolled, .nav.solid {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: rgba(251, 246, 236, 0.92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--line-soft);
}
.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
}
.nav-brand-mark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.55rem;
  letter-spacing: -0.005em;
  color: var(--walnut);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-brand-mark .amp {
  font-style: italic;
  color: var(--lemon-deep);
  font-weight: 400;
  font-size: 1.4rem;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.nav-brand-sub {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 0.55rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--sage-deep);
}
.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2.4rem;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--walnut);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--sage-deep);
  transition: width 0.45s var(--ease), left 0.45s var(--ease);
}
.nav-links a:hover::after { width: 100%; left: 0; }
.nav-cta {
  padding: 0.7rem 1.6rem;
  background: var(--walnut);
  color: var(--butter) !important;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  border: 1px solid var(--walnut);
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--sage-deep); border-color: var(--sage-deep); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--walnut);
  transition: all 0.4s var(--ease);
}

/* ============== FOOTER ============== */
.footer {
  background: var(--bark);
  color: rgba(251,246,236,0.55);
  padding: 5rem var(--gutter) 0;
}
.footer-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(212,183,106,0.14);
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1.7rem;
  letter-spacing: -0.005em;
  color: var(--lemon-light);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.footer-brand .amp {
  font-style: italic;
  color: var(--lemon);
  font-size: 1.55rem;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.footer-brand-sub {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(212,183,106,0.55);
  display: block;
  margin-bottom: 1.6rem;
}
.footer-tagline {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(251,246,236,0.5);
  max-width: 32ch;
}
.footer-col-title {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--lemon-light);
  margin-bottom: 1.4rem;
  display: block;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.footer-links a { font-size: 0.9rem; color: rgba(251,246,236,0.55); }
.footer-links a:hover { color: var(--lemon-light); }
.footer-bottom {
  max-width: 1480px;
  margin: 0 auto;
  padding: 1.8rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(251,246,236,0.32); letter-spacing: 0.04em; }
.footer-credit a { color: var(--lemon); }
.footer-credit a:hover { color: var(--lemon-light); }

/* ============== REVEALS ============== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.95s var(--ease-out), transform 0.95s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.55s; opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-stagger > *, .botanical { opacity: 1; transform: none; }
  .botanical-stroke { stroke-dashoffset: 0; }
  .botanical-fill { opacity: 1; }
}

/* ============== SERVICE PAGE STYLES ============== */
.svc-hero {
  position: relative;
  min-height: 70vh;
  padding: 9rem var(--gutter) 4rem;
  background: var(--butter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.svc-hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0.25 0 0 0 0 0.18 0 0 0 0 0.12 0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}
.svc-hero-inner {
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.svc-hero-breadcrumb {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.svc-hero-breadcrumb a:hover { color: var(--lemon-deep); }
.svc-hero-breadcrumb .sep { color: var(--line); }
.svc-hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 5.8vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.026em;
  color: var(--walnut);
  margin-bottom: 1.6rem;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.svc-hero-title em {
  font-style: italic;
  color: var(--lemon-deep);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.svc-hero-lede {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--walnut-soft);
  max-width: 48ch;
  margin-bottom: 2.8rem;
}
.svc-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.svc-hero-image {
  position: relative;
  height: 540px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--paper);
}
.svc-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}
.svc-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(58,42,30,0.18) 100%);
  pointer-events: none;
}
.svc-hero-stamp {
  position: absolute;
  bottom: 1.6rem;
  left: 1.6rem;
  background: var(--butter);
  padding: 1rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-left: 2px solid var(--lemon-deep);
  z-index: 2;
}
.svc-hero-stamp-label {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage-deep);
}
.svc-hero-stamp-value {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--walnut);
  font-variation-settings: "opsz" 96, "SOFT" 100;
}

.svc-section { padding: clamp(5rem, 10vw, 9rem) var(--gutter); }
.svc-section-inner { max-width: 1280px; margin: 0 auto; }
.svc-overview {
  background: var(--cream);
}
.svc-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.svc-overview-eyebrow { margin-bottom: 1.4rem; }
.svc-overview-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--walnut);
  margin-bottom: 1.2rem;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.svc-overview-title em {
  font-style: italic;
  color: var(--lemon-deep);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.svc-overview-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--walnut-soft);
  margin-bottom: 1.4rem;
}

.svc-process { background: var(--butter); }
.svc-process-head { max-width: 720px; margin: 0 auto 4rem; text-align: center; }
.svc-process-head .eyebrow { margin-bottom: 1.4rem; }
.svc-process-head .eyebrow::before { display: inline-block; margin: 0 auto; }
.svc-process-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.024em;
  color: var(--walnut);
  margin-bottom: 1.2rem;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.svc-process-title em {
  font-style: italic;
  color: var(--lemon-deep);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.svc-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.svc-step {
  background: var(--butter);
  padding: 2.4rem 2rem;
  position: relative;
}
.svc-step-num {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 2.6rem;
  color: var(--lemon-deep);
  line-height: 1;
  margin-bottom: 1.4rem;
  display: block;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.svc-step-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--walnut);
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 96, "SOFT" 50;
}
.svc-step-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--walnut-soft);
}

.svc-who { background: var(--cream); }
.svc-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.svc-who .eyebrow { margin-bottom: 1.4rem; }
.svc-who-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--walnut);
  margin-bottom: 1.6rem;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.svc-who-title em {
  font-style: italic;
  color: var(--lemon-deep);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.svc-who-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.svc-who-list li {
  font-size: 1rem;
  color: var(--walnut);
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.svc-who-list li:last-child { border-bottom: none; }
.svc-who-list li svg {
  width: 20px;
  height: 20px;
  color: var(--lemon-deep);
  flex-shrink: 0;
  margin-top: 4px;
}
.svc-who-image {
  position: relative;
  height: 520px;
  border-radius: 4px;
  overflow: hidden;
}
.svc-who-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
}

.svc-faq { background: var(--butter); }
.svc-faq-head { max-width: 720px; margin: 0 auto 4rem; text-align: center; }
.svc-faq-head .eyebrow { margin-bottom: 1.4rem; }
.svc-faq-head .eyebrow::before { display: inline-block; margin: 0 auto; }
.svc-faq-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.024em;
  color: var(--walnut);
  margin-bottom: 1.2rem;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.svc-faq-title em {
  font-style: italic;
  color: var(--lemon-deep);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.svc-faq-list { max-width: 880px; margin: 0 auto; }
.svc-faq-item {
  border-bottom: 1px solid var(--line);
}
.svc-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--walnut);
  font-variation-settings: "opsz" 96, "SOFT" 50;
  transition: color 0.35s ease;
}
.svc-faq-q:hover { color: var(--lemon-deep); }
.svc-faq-q .icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.45s var(--ease);
  color: var(--sage-deep);
}
.svc-faq-item.is-open .svc-faq-q .icon { transform: rotate(45deg); color: var(--lemon-deep); }
.svc-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
}
.svc-faq-item.is-open .svc-faq-a { max-height: 400px; padding-bottom: 1.8rem; }
.svc-faq-a p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--walnut-soft);
  max-width: 70ch;
}

.svc-cta {
  background: var(--walnut);
  color: var(--butter);
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.svc-cta-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' seed='9'/><feColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.88 0 0 0 0 0.7 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: screen;
}
.svc-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.svc-cta .eyebrow {
  color: var(--lemon-light);
  margin-bottom: 2rem;
}
.svc-cta .eyebrow::before { background: var(--lemon-light); }
.svc-cta-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--butter);
  margin-bottom: 1.4rem;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.svc-cta-title em {
  font-style: italic;
  color: var(--lemon-light);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.svc-cta-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(251,246,236,0.75);
  max-width: 56ch;
  margin: 0 auto 2.6rem;
}

.svc-related { background: var(--butter); }
.svc-related-head { max-width: 720px; margin: 0 auto 4rem; text-align: center; }
.svc-related-head .eyebrow { margin-bottom: 1.4rem; }
.svc-related-head .eyebrow::before { display: inline-block; margin: 0 auto; }
.svc-related-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--walnut);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.svc-related-title em {
  font-style: italic;
  color: var(--lemon-deep);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.svc-related-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.svc-related-card {
  background: var(--butter);
  padding: 2.4rem 2rem;
  transition: background 0.5s var(--ease);
  display: block;
}
.svc-related-card:hover { background: var(--cream); }
.svc-related-card-num {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  color: var(--sage-deep);
  margin-bottom: 1rem;
  display: block;
}
.svc-related-card-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--walnut);
  margin-bottom: 0.6rem;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 96, "SOFT" 50;
}
.svc-related-card-name em {
  font-style: italic;
  color: var(--lemon-deep);
  font-weight: 400;
  font-variation-settings: "opsz" 96, "SOFT" 100;
}
.svc-related-card-arrow {
  font-family: var(--serif);
  font-style: italic;
  color: var(--lemon-deep);
  font-size: 1rem;
  display: inline-block;
  transition: transform 0.4s var(--ease);
}
.svc-related-card:hover .svc-related-card-arrow { transform: translateX(6px); }

/* ============== RESPONSIVE ============== */
@media (max-width: 1100px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--butter);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 78;
    transform: translateY(-100%);
    transition: transform 0.5s var(--ease);
    gap: 2rem;
  }
  .nav-links.is-open { transform: translateY(0); }
  .nav-links a {
    font-family: var(--serif);
    font-size: 2rem;
    letter-spacing: -0.005em;
    text-transform: none;
    color: var(--walnut);
    font-variation-settings: "opsz" 144, "SOFT" 50;
  }
  .nav-cta { font-family: var(--sans); font-size: 0.8rem; padding: 0.9rem 1.8rem; }
  .nav-toggle { display: flex; position: relative; z-index: 79; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.6rem; }
  .svc-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .svc-hero-image { height: 420px; }
  .svc-overview-grid { grid-template-columns: 1fr; gap: 2rem; }
  .svc-process-steps { grid-template-columns: 1fr 1fr; }
  .svc-who-grid { grid-template-columns: 1fr; gap: 3rem; }
  .svc-who-image { height: 380px; }
  .svc-related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-process-steps { grid-template-columns: 1fr; }
}

/* =================================================================
   v4.1 PATCHES — Mobile nav, AestheticRecord booking, Circle portrait
   ================================================================= */

/* ===== MOBILE NAV FIX ===== */
@media (max-width: 1100px) {
  /* Hide Reserve button on mobile when drawer is closed; show inside drawer when open */
  .nav-links li:last-child .nav-cta {
    display: none;
  }
  .nav-links.is-open li:last-child .nav-cta {
    display: inline-flex;
    padding: 1rem 2.4rem;
    font-size: 0.85rem;
  }
  .nav { z-index: 90; }
  section[id] { scroll-margin-top: 80px; }
}

/* ===== CIRCLE PORTRAIT ===== */
.about-portrait-circle {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 24px 60px -16px rgba(58, 42, 30, 0.22);
  border: 8px solid var(--butter);
}
.about-portrait-circle::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(212, 183, 106, 0.2);
  pointer-events: none;
}
.about-portrait-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.95) contrast(1.02);
  transition: transform 1.2s var(--ease);
}
.about-portrait-circle:hover img { transform: scale(1.04); }

/* Reposition about image wrap for circle - override the rectangle */
.about-image-wrap {
  height: auto !important;
  background: transparent !important;
  border-radius: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-image-wrap .about-image-stamp {
  position: relative;
  bottom: auto;
  right: auto;
  margin-top: 1.6rem;
  align-self: flex-start;
}

@media (max-width: 1100px) {
  .about-portrait-circle { max-width: 360px; }
}
@media (max-width: 640px) {
  .about-portrait-circle { max-width: 280px; border-width: 6px; }
}

/* ===== BOOKING CALLOUT (REPLACES OLD BOOKING SECTION) ===== */
.booking-callout {
  position: relative;
  background: var(--walnut);
  color: var(--butter);
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
  text-align: center;
  overflow: hidden;
}
.booking-callout-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' seed='9'/><feColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.88 0 0 0 0 0.7 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: screen;
}
.booking-callout-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.booking-callout-eyebrow {
  color: var(--lemon-light);
  margin-bottom: 2rem;
}
.booking-callout-eyebrow::before { background: var(--lemon-light); }
.booking-callout-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--butter);
  margin-bottom: 1.6rem;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.booking-callout-title em {
  font-style: italic;
  color: var(--lemon-light);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.booking-callout-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(251, 246, 236, 0.78);
  max-width: 56ch;
  margin: 0 auto 2.6rem;
}
.booking-callout-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}
.booking-callout-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin: 0 auto 2.4rem;
  max-width: 320px;
}
.booking-callout-divider .line {
  flex: 1;
  height: 1px;
  background: rgba(212, 183, 106, 0.3);
}
.booking-callout-divider .label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(251, 246, 236, 0.55);
}
.booking-callout-contact {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 460px;
  margin: 0 auto;
}
.callout-contact-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1.2rem;
  font-size: 0.95rem;
  color: rgba(251, 246, 236, 0.78);
}
.callout-contact-label {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--lemon-light);
  min-width: 100px;
  text-align: right;
}
.callout-contact-row a {
  color: var(--lemon-light);
}
.callout-contact-row a:hover {
  color: var(--butter);
}
.botanical-callout-1 {
  top: 8%;
  left: 5%;
  width: 200px;
  height: 220px;
  color: var(--sage-light);
  opacity: 0.18;
}

@media (max-width: 640px) {
  .callout-contact-row { flex-direction: column; gap: 0.2rem; align-items: center; }
  .callout-contact-label { min-width: auto; text-align: center; }
}

/* =================================================================
   v4.2 HOTFIX — Force-hide Reserve CTA on mobile, solid nav bg
   ================================================================= */
@media (max-width: 1100px) {
  /* Force the Reserve CTA button to be invisible on mobile when drawer closed */
  /* Higher specificity than .nav-cta base styles */
  body .nav .nav-links .nav-cta,
  body .nav .nav-links li .nav-cta {
    display: none !important;
  }
  /* Show it again when drawer is open */
  body .nav .nav-links.is-open .nav-cta,
  body .nav .nav-links.is-open li .nav-cta {
    display: inline-flex !important;
    padding: 1rem 2.4rem !important;
    font-size: 0.85rem !important;
  }
  
  /* Force solid nav background ALWAYS on mobile - no content bleed-through */
  .nav {
    background: rgba(251, 246, 236, 0.96) !important;
    backdrop-filter: saturate(180%) blur(16px) !important;
    -webkit-backdrop-filter: saturate(180%) blur(16px) !important;
    border-bottom: 1px solid var(--line-soft) !important;
  }
  
  /* Make sure hero starts BELOW the nav, not under it */
  .hero {
    padding-top: 6rem !important;
  }
}
