/* ─────────────────────────────────────────────────────────────
   Aline Christ — landing page
   A quiet, cinematic editorial site.
   Tokens taken verbatim from brand-kit-completo.html
   ───────────────────────────────────────────────────────────── */

:root {
  --parchment: #F5EFE6;
  --bone:      #EDE8E0;
  --card:      #FDFAF7;
  --dusty-rose:#D1A9A5;
  --faded-rose:#AE6965;
  --warm-oak:  #A58B71;
  --dried-sage:#7A816C;
  --bark:      #2C1A14;
  --border:    #E2D8CE;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;

  /* page rhythm */
  --gutter: clamp(20px, 4vw, 56px);
  --section-pad: clamp(96px, 14vh, 200px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: clip; }
body {
  background: var(--parchment);
  color: var(--bark);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--dusty-rose); color: var(--bark); }

/* ── grain overlay ───────────────────────────────────────────── */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.17 0 0 0 0 0.10 0 0 0 0 0.08 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
  animation: grainShift 4s steps(8) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0,0); }
  20%  { transform: translate(-2%, 1%); }
  40%  { transform: translate(1%, -2%); }
  60%  { transform: translate(-1%, -1%); }
  80%  { transform: translate(2%, 1%); }
  100% { transform: translate(0,0); }
}

/* ── nav ─────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--gutter);
  transition: background-color .6s ease, border-color .6s ease, padding .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(245, 239, 230, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  padding: 14px var(--gutter);
}
.nav-brand {
  display: flex; align-items: center;
  text-decoration: none;
  height: 130px;
}
.nav-brand img {
  height: 100%;
  width: auto;
  display: block;
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--bark);
  text-decoration: none;
  opacity: 0.7;
  position: relative;
  padding: 4px 0;
  transition: opacity .25s;
}
.nav-links a:hover { opacity: 1; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0; background: var(--faded-rose);
  transition: width .4s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bark);
  padding: 12px 22px;
  border: 1px solid var(--bark);
  border-radius: 999px;
  text-decoration: none;
  background: transparent;
  transition: background .35s ease, color .35s ease, border-color .35s ease;
  position: relative;
}
.nav-cta:hover { background: var(--bark); color: var(--parchment); }
.nav-cta .arr { transition: transform .35s ease; }
.nav-cta:hover .arr { transform: translateX(4px); }

@media (max-width: 800px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-brand { height: 80px; }
  .nav-cta { display: none; }
}

/* ── hamburger button ────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 200;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--bark);
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), opacity 0.25s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── mobile menu overlay ─────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--parchment);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.4s cubic-bezier(.2,.7,.2,1), transform 0.4s cubic-bezier(.2,.7,.2,1), visibility 0s 0.4s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.4s cubic-bezier(.2,.7,.2,1), transform 0.4s cubic-bezier(.2,.7,.2,1), visibility 0s 0s;
}
body.menu-open { overflow: hidden; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.mobile-nav a {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(32px, 9vw, 52px);
  color: var(--bark);
  text-decoration: none;
  line-height: 1.4;
  opacity: 0.72;
  transition: opacity 0.2s, color 0.2s;
  display: block;
  padding: 4px 0;
}
.mobile-nav a:hover,
.mobile-nav a:focus { opacity: 1; color: var(--faded-rose); outline: none; }

.mobile-menu-cta {
  margin-top: 52px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faded-rose);
  text-decoration: none;
  border: 1px solid rgba(174,105,101,0.5);
  padding: 15px 32px;
  border-radius: 999px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.mobile-menu-cta:hover {
  background: var(--faded-rose);
  color: var(--parchment);
  border-color: var(--faded-rose);
}

/* ── overline ────────────────────────────────────────────────── */
.overline {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--dried-sage);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.overline::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--dried-sage);
  opacity: 0.6;
}

/* ── hero ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 160px var(--gutter) 120px;
  overflow: hidden;
}

/* ── hero media stack ──
   Layers (bottom → top):
     .hero-video / .hero-still   — actual footage (Ken-Burns'd if still)
     .hero-dapple                — moving warm light through leaves
     .hero-veil                  — parchment veil so the editorial type
                                   stays readable; video peeks through.
*/
.hero-media {
  position: absolute; inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.hero-video,
.hero-still {
  position: absolute; inset: -4%;
  width: 108%; height: 108%;
  object-fit: cover;
  display: block;
}
.hero-video {
  filter: saturate(0.78) sepia(0.18) brightness(0.92) contrast(0.95);
  z-index: 1;
  animation: heroDriftSlow 48s ease-in-out infinite alternate;
}
/* Still fallback sits below the video */
.hero-still {
  background: url("images/aline-hero.jpg") center/cover no-repeat;
  filter: saturate(0.78) sepia(0.20) brightness(0.92);
  z-index: 0;
  animation: kenBurns 36s ease-in-out infinite alternate;
}
.hero-video:not([data-fallback]) { opacity: 1; }
.hero-video[data-fallback] { display: none; }
.hero-video[data-fallback] ~ .hero-still { z-index: 1; }

@keyframes kenBurns {
  from { transform: scale(1.02) translate3d(0,0,0); }
  to   { transform: scale(1.10) translate3d(-1.5%, -1%, 0); }
}
@keyframes heroDriftSlow {
  from { transform: scale(1.02) translate3d(0,0,0); }
  to   { transform: scale(1.06) translate3d(-1%, -1%, 0); }
}

/* dappled light — slow drifting warm spots */
.hero-dapple {
  position: absolute; inset: -10%;
  z-index: 2;
  background:
    radial-gradient(28vw 28vw at 22% 32%, rgba(245, 220, 184, 0.42), transparent 60%),
    radial-gradient(20vw 20vw at 72% 18%, rgba(255, 232, 200, 0.32), transparent 65%),
    radial-gradient(34vw 34vw at 78% 78%, rgba(174,105,101,0.22), transparent 65%),
    radial-gradient(24vw 24vw at 12% 82%, rgba(122,129,108,0.20), transparent 65%);
  mix-blend-mode: screen;
  filter: blur(12px);
  animation: dappleDrift 40s ease-in-out infinite alternate;
  opacity: 0.85;
}
@keyframes dappleDrift {
  0%   { transform: translate3d(0,0,0)        scale(1); }
  50%  { transform: translate3d(-3%, 2%, 0)   scale(1.04); }
  100% { transform: translate3d(2%, -1.5%, 0) scale(1.02); }
}

/* parchment veil */
.hero-veil {
  position: absolute; inset: 0;
  z-index: 3;
  background:
    radial-gradient(120% 80% at 50% 40%, rgba(245, 239, 230, 0.42) 0%, rgba(245, 239, 230, 0.78) 55%, rgba(245, 239, 230, 0.92) 100%),
    linear-gradient(180deg, rgba(245, 239, 230, 0.30) 0%, rgba(245, 239, 230, 0.10) 30%, rgba(245, 239, 230, 0.30) 70%, rgba(245, 239, 230, 0.60) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .hero-video, .hero-still, .hero-dapple { animation: none; }
}

/* sacred geometry watermark — Seed of Life */
.sacred {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.18;
  color: var(--faded-rose);
  mix-blend-mode: multiply;
}
.sacred svg { width: 100%; height: 100%; overflow: visible; }
.sacred svg .ring {
  fill: none;
  stroke: currentColor;
  stroke-width: 0.6;
}
.sacred-rotate {
  animation: slowSpin 120s linear infinite;
  transform-origin: 50% 50%;
}
@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero .sacred {
  width: min(76vh, 760px); height: min(76vh, 760px);
  top: 50%; right: -8vw;
  transform: translateY(-50%);
  opacity: 0.16;
  z-index: 4;
}
.approach .sacred {
  width: 540px; height: 540px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.07;
}
.closing .sacred {
  width: 660px; height: 660px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.10;
  color: var(--dusty-rose);
}

/* atmospheric drifting glow */
.hero::before, .hero::after {
  content: ""; position: absolute; pointer-events: none;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  z-index: 3;
}
.hero::before {
  width: 56vw; height: 56vw;
  background: radial-gradient(circle at 30% 30%, rgba(174,105,101,0.35), rgba(174,105,101,0) 60%);
  top: -10vh; right: -12vw;
  animation: drift1 28s ease-in-out infinite alternate;
}
.hero::after {
  width: 44vw; height: 44vw;
  background: radial-gradient(circle at 60% 50%, rgba(122,129,108,0.30), rgba(122,129,108,0) 65%);
  bottom: -16vh; left: -10vw;
  animation: drift2 36s ease-in-out infinite alternate;
}
@keyframes drift1 {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-6vw, 4vh) scale(1.08); }
}
@keyframes drift2 {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(5vw, -4vh) scale(1.12); }
}

.hero-inner {
  position: relative; z-index: 4;
  max-width: 980px; margin: 0 auto; width: 100%;
  text-align: center;
}
.hero-overline { justify-content: center; }
.hero-overline::before { display: none; }
.hero-overline { font-size: 14px; letter-spacing: 0.2em; margin-bottom: 36px; opacity: 0; transform: translateY(8px); animation: rise 1.4s 0.2s both; }
.hero-actions { justify-content: center; }

.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(30px, 3.8vw, 58px);
  line-height: 1.16;
  letter-spacing: -0.005em;
  color: var(--bark);
  max-width: 24ch;
  margin-left: auto; margin-right: auto;
  text-wrap: balance;
}
.hero h1 .word { display: inline-block; opacity: 0; transform: translateY(28px); filter: blur(8px); animation: word-rise .9s cubic-bezier(.2,.7,.2,1) both; }
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--faded-rose);
}
@keyframes word-rise {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.hero-sub {
  margin: 36px auto 0;
  max-width: 56ch;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.7;
  color: rgba(44,26,20,0.78);
  font-weight: 300;
  opacity: 0;
  animation: rise 1.6s 1.6s both;
}

.hero-actions {
  display: flex; gap: 28px; align-items: center; flex-wrap: wrap;
  margin-top: 56px;
  opacity: 0; animation: rise 1.6s 1.95s both;
}

.btn-primary {
  --bg: var(--faded-rose);
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--parchment);
  padding: 20px 36px;
  background: var(--bg);
  border: none;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
.btn-primary::before {
  content: ""; position: absolute; inset: 0;
  background: var(--bark);
  transform: scaleX(0); transform-origin: right;
  transition: transform .55s cubic-bezier(.7,0,.2,1);
  z-index: 0;
}
.btn-primary:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary .arr { transition: transform .4s ease; }
.btn-primary:hover .arr { transform: translateX(5px); }

.link-quiet {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--bark);
  text-decoration: none;
  border-bottom: 1px solid rgba(44,26,20,0.3);
  padding-bottom: 3px;
  transition: border-color .35s ease, color .35s ease;
}
.link-quiet:hover { color: var(--faded-rose); border-bottom-color: var(--faded-rose); }

/* hero location line — sits inside hero-inner, center-aligned with all copy */
.hero-loc {
  margin-top: 40px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--warm-oak);
  opacity: 0;
  animation: rise 1.6s 2.2s both;
}

/* hero meta — scroll cue only */
.hero-meta {
  position: absolute;
  bottom: 40px; left: 0; right: 0;
  z-index: 4;
  opacity: 0; animation: rise 1.6s 2.6s both;
  display: flex; justify-content: center;
  pointer-events: none;
}
.scroll-cue {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--warm-oak);
}
.scroll-cue .line {
  width: 1px; height: 64px; background: var(--warm-oak); opacity: 0.5;
  position: relative; overflow: hidden;
}
.scroll-cue .line::after {
  content: ""; position: absolute; top: -56px; left: 0; right: 0; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--bark));
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: translateY(0); }
  100% { transform: translateY(112px); }
}

/* ── reveal helpers ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.2s cubic-bezier(.2,.7,.2,1), transform 1.2s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-blur { filter: blur(8px); }
.reveal-blur.in { filter: blur(0); }

/* stagger via inline --d */
.reveal { transition-delay: var(--d, 0s); }

/* ── interlude (single-line breath) ─────────────────────────── */
.interlude {
  padding: clamp(120px, 18vh, 220px) var(--gutter);
  text-align: center;
}
.interlude p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.4;
  color: var(--faded-rose);
  max-width: 32ch;
  margin: 0 auto;
  text-wrap: balance;
}
.interlude .mark {
  display: block;
  width: 1px; height: 64px;
  background: var(--warm-oak);
  opacity: 0.4;
  margin: 0 auto 56px;
}

/* ── editorial section "who" ─────────────────────────────────── */
.who {
  padding: var(--section-pad) var(--gutter);
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.who-image {
  position: relative;
  aspect-ratio: 4/5;
  background: transparent;
  overflow: visible;
  will-change: transform;
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
}
.who-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95);
  border-radius: inherit;
}
.who-image::before {
  content: ""; position: absolute; inset: -16px;
  border-radius: inherit;
  background: radial-gradient(60% 50% at 50% 50%, rgba(174,105,101,0.18), transparent 70%);
  filter: blur(30px);
  z-index: -1;
  pointer-events: none;
}

.who-text { padding-top: clamp(20px, 4vw, 60px); }
.who-text .overline { margin-bottom: 28px; }
.who-text h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.18;
  color: var(--bark);
  margin-bottom: 32px;
  text-wrap: pretty;
}
.who-text h2 em { color: var(--faded-rose); font-style: italic; }
.who-text p {
  font-size: 16.5px;
  line-height: 1.85;
  color: rgba(44,26,20,0.85);
  max-width: 48ch;
}
.who-text p + p { margin-top: 22px; }

@media (max-width: 880px) {
  .who { grid-template-columns: 1fr; }
  .who-image {
    width: 72vw;
    max-width: 280px;
    height: calc(72vw * 5 / 4);
    max-height: calc(280px * 5 / 4);
    margin: 0 auto;
  }
}

/* ── approach (3 pillars) ────────────────────────────────────── */
.approach {
  background: var(--bone);
  padding: var(--section-pad) var(--gutter);
  position: relative;
}
.approach-head {
  max-width: 880px;
  margin: 0 auto 100px;
  text-align: center;
}
.approach-head .overline { justify-content: center; }
.approach-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1.12;
  margin-top: 28px;
  color: var(--bark);
  text-wrap: balance;
}
.approach-head h2 em { color: var(--faded-rose); font-style: italic; }

.pillars {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 5vw, 90px);
}
.pillar {
  position: relative;
}
.pillar .num { display: none; }
.pillar .mark {
  width: 96px; height: 96px;
  margin-bottom: 36px;
  position: relative;
}
.pillar .mark svg { width: 100%; height: 100%; overflow: visible; }
.pillar .mark circle, .pillar .mark path {
  fill: none;
  stroke: var(--faded-rose);
  stroke-width: 0.8;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}
.pillar .mark .spin { transform-origin: 50% 50%; }
.pillar .mark .pulse { transform-origin: 50% 50%; }
.pillar:nth-child(2) .mark circle,
.pillar:nth-child(2) .mark path { stroke: var(--dried-sage); }
.pillar:nth-child(3) .mark circle,
.pillar:nth-child(3) .mark path { stroke: var(--warm-oak); }

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.06); opacity: 0.7; }
}

.pillar h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--bark);
}
.pillar p {
  font-size: 15.5px;
  line-height: 1.85;
  color: rgba(44,26,20,0.78);
  max-width: 38ch;
}

@media (max-width: 880px) {
  .pillars { grid-template-columns: 1fr; gap: 80px; }
}

/* ── pull quote interlude ────────────────────────────────────── */
.pullquote {
  padding: var(--section-pad) var(--gutter);
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.pullquote .quotemark {
  font-family: var(--serif);
  font-size: 96px;
  line-height: 1;
  color: var(--dusty-rose);
  display: block;
  margin-bottom: 12px;
  font-style: italic;
  font-weight: 300;
  opacity: 0.6;
}
.pullquote q {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(26px, 3.6vw, 48px);
  line-height: 1.3;
  color: var(--bark);
  text-wrap: balance;
  display: block;
  quotes: none;
}
.pullquote q::before, .pullquote q::after { content: none; }
.pullquote .attr {
  display: block;
  margin-top: 36px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--warm-oak);
}

/* ── services (numbered editorial cards) ─────────────────────── */
.services {
  padding: var(--section-pad) var(--gutter);
  max-width: 1280px;
  margin: 0 auto;
}
.services-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 90px;
  align-items: end;
}
.services-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4.2vw, 60px);
  line-height: 1.12;
  color: var(--bark);
  text-wrap: pretty;
}
.services-head h2 em { color: var(--faded-rose); font-style: italic; }
.services-head .lede {
  font-size: 15.5px; line-height: 1.85; color: rgba(44,26,20,0.78);
  max-width: 50ch;
}
@media (max-width: 880px) { .services-head { grid-template-columns: 1fr; } }

.service-list {
  border-top: 1px solid var(--border);
}
.service {
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 80px 1fr 2fr auto;
  gap: 40px;
  padding: 48px 0;
  align-items: start;
  position: relative;
  cursor: pointer;
  transition: padding .5s cubic-bezier(.2,.7,.2,1);
}
.service::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(174,105,101,0.04) 0%, transparent 80%);
  opacity: 0; transition: opacity .6s ease;
  pointer-events: none;
}
.service:hover { padding-left: 24px; padding-right: 24px; }
.service:hover::before { opacity: 1; }

.service .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--warm-oak);
  letter-spacing: 0.04em;
}
.service .title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.2;
  color: var(--bark);
}
.service .title small {
  display: block;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-oak);
  margin-top: 10px;
}
.service .desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(44,26,20,0.78);
  max-width: 52ch;
}
.service .arrow {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--bark);
  transition: background .4s ease, color .4s ease, border-color .4s ease, transform .4s ease;
  flex-shrink: 0;
}
.service:hover .arrow { background: var(--bark); color: var(--parchment); border-color: var(--bark); transform: translateX(6px); }

@media (max-width: 880px) {
  .service { grid-template-columns: 40px 1fr; gap: 16px; }
  .service .desc { grid-column: 2; }
  .service .arrow { grid-column: 2; margin-top: 12px; width: 40px; height: 40px; }
}

.service-discovery {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.service-discovery p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 24px);
  color: rgba(44,26,20,0.55);
}
.service-discovery a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faded-rose);
  text-decoration: none;
  border: 1px solid var(--faded-rose);
  border-radius: 999px;
  padding: 16px 28px;
  white-space: nowrap;
  transition: background .35s ease, color .35s ease;
}
.service-discovery a:hover {
  background: var(--faded-rose);
  color: var(--parchment);
}

/* ── about teaser ────────────────────────────────────────────── */
.about {
  padding: var(--section-pad) var(--gutter);
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.about-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: visible;
  will-change: transform;
  background: transparent;
  border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.about-image::before {
  content: ""; position: absolute; inset: -16px;
  border-radius: inherit;
  background: radial-gradient(60% 50% at 50% 50%, rgba(122,129,108,0.16), transparent 70%);
  filter: blur(30px);
  z-index: -1;
  pointer-events: none;
}
.about-text .overline { margin-bottom: 28px; }
.about-text .quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.3;
  color: var(--bark);
  margin-bottom: 36px;
  text-wrap: balance;
}
.about-text p {
  font-size: 15.5px;
  line-height: 1.85;
  color: rgba(44,26,20,0.78);
  max-width: 52ch;
}
.about-text p + p { margin-top: 18px; }
.about-text .link-quiet { display: inline-block; margin-top: 32px; }

@media (max-width: 880px) {
  .about { grid-template-columns: 1fr; }
  .about-image {
    width: 72vw;
    max-width: 280px;
    height: calc(72vw * 4 / 3);
    max-height: calc(280px * 4 / 3);
    margin: 0 auto;
  }
}

/* ── credentials marquee ─────────────────────────────────────── */
.credentials {
  padding: 70px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bone);
  overflow: hidden;
  position: relative;
}
.credentials::before, .credentials::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 14vw; z-index: 2;
  pointer-events: none;
}
.credentials::before { left: 0;  background: linear-gradient(to right, var(--bone), transparent); }
.credentials::after  { right: 0; background: linear-gradient(to left,  var(--bone), transparent); }

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 48s linear infinite;
}
.credentials:hover .marquee { animation-play-state: paused; }

.marquee-track {
  display: flex; align-items: center;
  gap: 56px;
  padding-right: 56px;
  flex-shrink: 0;
}
.marquee-track > span {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bark);
  white-space: nowrap;
  display: inline-flex; align-items: center;
  cursor: default;
  transition: color .35s ease, letter-spacing .35s ease;
}
.marquee-track > span:hover { color: var(--faded-rose); letter-spacing: 0.32em; }
.marquee-track > i {
  display: inline-block;
  width: 8px; height: 8px;
  border: 1px solid var(--faded-rose);
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: 0.7;
}
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ── closing CTA — dark room ─────────────────────────────────── */
.closing {
  position: relative;
  background: var(--bark);
  color: var(--parchment);
  padding: clamp(140px, 22vh, 240px) var(--gutter);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.closing::before {
  content: ""; position: absolute; inset: -20%;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(174,105,101,0.34), transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(122,129,108,0.22), transparent 55%);
  filter: blur(40px);
  z-index: -1;
  animation: drift1 34s ease-in-out infinite alternate;
}
.closing .overline { color: var(--dusty-rose); }
.closing .overline::before { background: var(--dusty-rose); }
.closing h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.06;
  color: var(--bone);
  margin: 36px auto 0;
  max-width: 18ch;
  text-wrap: balance;
}
.closing h2 em { color: var(--dusty-rose); font-style: italic; }
.closing .sub {
  margin-top: 36px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--dusty-rose);
  letter-spacing: 0.02em;
  max-width: 50ch;
  margin-left: auto; margin-right: auto;
  line-height: 1.65;
}
.closing .actions {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  margin-top: 60px;
}
.closing .btn-primary { background: var(--faded-rose); }
.closing .note {
  font-size: 12px;
  color: rgba(237,232,224,0.55);
  max-width: 44ch;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

/* ── footer ──────────────────────────────────────────────────── */
.foot {
  background: var(--parchment);
  padding: 80px var(--gutter) 56px;
  border-top: 1px solid var(--border);
}
.foot-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.foot-brand {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--bark);
  display: block;
  line-height: 1;
}
.foot-tag {
  margin-top: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--faded-rose);
  font-weight: 300;
}
.foot-links { display: flex; flex-direction: column; gap: 12px; }
.foot-links a {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--bark);
  text-decoration: none;
  opacity: 0.72;
  transition: opacity .3s, color .3s;
}
.foot-links a:hover { opacity: 1; color: var(--faded-rose); }
.foot-meta { display: flex; flex-direction: column; gap: 8px; }
.foot-meta div {
  font-size: 12.5px;
  color: rgba(44,26,20,0.72);
  letter-spacing: 0.02em;
}
.foot-meta a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--border); padding-bottom: 1px; }
.foot-meta a:hover { color: var(--faded-rose); border-bottom-color: var(--faded-rose); }
.foot-bottom {
  max-width: 1280px; margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 11px; letter-spacing: 0.06em; color: rgba(44,26,20,0.5);
}

@media (max-width: 800px) {
  .foot-inner { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; }
}

/* ── nav dropdown ────────────────────────────────────────────── */
.nav-dropdown {
  position: relative;
  cursor: default;
}
.nav-dropdown-btn {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--bark);
  opacity: 0.7;
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity .25s;
  user-select: none;
  background: none;
  border: none;
  font-family: var(--sans);
  cursor: pointer;
}
.nav-dropdown:hover .nav-dropdown-btn { opacity: 1; }
.drop-arr {
  font-size: 9px;
  display: inline-block;
  transition: transform .3s ease;
  opacity: 0.6;
}
.nav-dropdown:hover .drop-arr { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: -20px;
  background: rgba(245, 239, 230, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  min-width: 240px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .3s ease, transform .3s ease, visibility 0s .3s;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .3s ease, transform .3s ease, visibility 0s 0s;
}
.nav-dropdown-menu a {
  display: block;
  padding: 13px 24px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--bark);
  text-decoration: none;
  opacity: 0.72;
  transition: opacity .2s, padding-left .25s, color .2s;
  border-bottom: none;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover {
  opacity: 1;
  padding-left: 32px;
  color: var(--faded-rose);
}

/* ── page hero (inner pages — no video) ──────────────────────── */
.page-hero {
  padding: clamp(140px, 18vh, 200px) var(--gutter) clamp(80px, 10vh, 140px);
  background: var(--parchment);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: -20%;
  background:
    radial-gradient(60vw 60vw at 80% 20%, rgba(174,105,101,0.10), transparent 60%),
    radial-gradient(50vw 50vw at 10% 80%, rgba(122,129,108,0.09), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 880px;
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--bark);
  margin-top: 24px;
  text-wrap: balance;
}
.page-hero h1 em { font-style: italic; color: var(--faded-rose); }
.page-hero-sub {
  margin-top: 28px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(44,26,20,0.65);
  max-width: 52ch;
  font-weight: 300;
}

/* ── about page sections ─────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-pad-y { padding: var(--section-pad) 0; }

.her-story {
  padding: var(--section-pad) var(--gutter);
  background: var(--parchment);
}
.her-story-inner { max-width: 720px; }
.her-story blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.35;
  color: var(--bark);
  border-left: 2px solid rgba(165,139,113,0.3);
  padding-left: 32px;
  margin: 32px 0 40px;
}
.her-story p {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(44,26,20,0.78);
}
.her-story p + p { margin-top: 20px; }

.credentials-page {
  background: var(--bone);
  padding: var(--section-pad) var(--gutter);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.credentials-page .overline { margin-bottom: 40px; display: block; }
.cred-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0;
  max-width: 860px;
}
.cred-list li {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--bark);
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}
.cred-list li::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border: 1px solid var(--faded-rose);
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: 0.7;
}

.philosophy-page {
  padding: var(--section-pad) var(--gutter);
  background: var(--parchment);
}
.philosophy-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.philosophy-grid h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.18;
  color: var(--bark);
  margin-top: 20px;
}
.philosophy-grid h2 em { color: var(--faded-rose); font-style: italic; }
.philo-block { margin-bottom: 40px; }
.philo-block:last-child { margin-bottom: 0; }
.philo-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-oak);
  margin-bottom: 12px;
  display: block;
}
.philo-block p {
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(44,26,20,0.72);
}
@media (max-width: 880px) {
  .philosophy-grid { grid-template-columns: 1fr; gap: 48px; }
}

.expect-section {
  background: var(--bone);
  padding: var(--section-pad) var(--gutter);
  border-top: 1px solid var(--border);
}
.expect-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.expect-grid h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  color: var(--bark);
  margin-top: 20px;
  margin-bottom: 24px;
}
.expect-grid > div:first-child p {
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(44,26,20,0.72);
}
.expect-steps { list-style: none; }
.expect-steps li {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.expect-steps li:last-child { border-bottom: none; }
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: rgba(165,139,113,0.45);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
}
.step-text { font-size: 14px; line-height: 1.6; color: rgba(44,26,20,0.78); }
.step-sub { font-size: 12px; color: rgba(44,26,20,0.45); font-style: italic; margin-top: 4px; }
.expect-ctas {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 36px;
}
@media (max-width: 880px) {
  .expect-grid { grid-template-columns: 1fr; }
}

.closing-quote-section {
  background: var(--bone);
  padding: var(--section-pad) var(--gutter);
  text-align: center;
  border-top: 1px solid var(--border);
}
.closing-quote-section blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 3vw, 40px);
  line-height: 1.3;
  color: var(--bark);
  max-width: 28ch;
  margin: 0 auto;
  text-wrap: balance;
}
.closing-quote-section cite {
  display: block;
  margin-top: 32px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--warm-oak);
  font-style: normal;
}

/* ── skip link ───────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--bark);
  color: var(--parchment);
  padding: 10px 20px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

/* ── reduce motion ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01s !important;
    transition-duration: 0.01s !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* ── mobile nav — two-row visible bar (no hamburger) ─────────── */
@media (max-width: 800px) {
  /* override the earlier mobile rules that hid links / showed hamburger */
  .nav {
    flex-direction: column;
    align-items: stretch;
    padding: 10px var(--gutter) 0;
    background: rgba(245, 239, 230, 0.97) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-brand { height: 52px; align-self: flex-start; margin-bottom: 6px; }

  /* show links directly in a row */
  .nav-links {
    display: flex !important;
    gap: 0;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid rgba(44,26,20,0.08);
    padding: 6px 0 10px;
  }
  .nav-links > a {
    font-size: 12px;
    letter-spacing: 0.06em;
    padding: 6px 10px;
    white-space: nowrap;
    flex-shrink: 0;
    opacity: 0.78;
  }
  .nav-links a::after { display: none; }

  /* Services dropdown on mobile — button shown, submenu hidden until tapped */
  .nav-dropdown { position: static; }
  .nav-dropdown-btn {
    display: inline-flex !important;
    font-size: 12px;
    letter-spacing: 0.06em;
    padding: 6px 10px;
    color: var(--bark);
    opacity: 0.78;
    font-family: var(--sans);
    font-weight: 300;
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
  }
  /* submenu panel — hidden by default, shown via JS .mobile-open class */
  .nav-dropdown-menu {
    position: fixed;
    left: 0; right: 0;
    background: rgba(245, 239, 230, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0 12px;
    display: none;
    flex-direction: row;
    justify-content: center;
    gap: 0;
    z-index: 120;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }
  .nav-dropdown-menu.mobile-open { display: flex; }
  .nav-dropdown-menu a {
    font-size: 12px;
    letter-spacing: 0.06em;
    padding: 8px 24px;
    opacity: 0.78;
    color: var(--bark);
    border-bottom: none;
    white-space: nowrap;
  }
  .nav-dropdown-menu a::after { display: none; }
  .nav-dropdown-menu a:hover { opacity: 1; padding-left: 24px; color: var(--faded-rose); }

  /* hide hamburger — replaced by always-visible nav */
  .nav-hamburger { display: none !important; }
  .nav-cta { display: none; }
}

/* ── mobile spacing & layout ─────────────────────────────────── */
@media (max-width: 800px) {
  /* tighter section rhythm throughout */
  :root { --section-pad: 64px; }

  /* hero — clear the 2-row fixed nav (~110px) plus breathing room */
  .hero { padding: 148px var(--gutter) 52px; }

  /* interlude — the "For the ones who are quietly searching" gap */
  .interlude { padding: 56px var(--gutter); }
  .interlude .mark { height: 40px; margin-bottom: 28px; }

  /* hide scroll cue on mobile — overlaps hero-loc text at reduced height */
  .hero-meta { display: none; }

  /* hero h1 size */
  .hero h1 { font-size: clamp(28px, 7vw, 44px); }

  /* page hero (inner pages) */
  .page-hero { padding: 128px var(--gutter) 56px; }

  /* approach grid → single column with less gap */
  .approach-grid { gap: 32px; }

  /* service cards vertical gap */
  .services-grid { gap: 16px; }

  /* who section stacks vertically — reduce gap */
  .who-grid { gap: 40px; }

  /* credentials marquee — keep scrolling, just tighten fade edges */
  .credentials { padding: 40px 0; }
  .credentials::before, .credentials::after { width: 32px; }
  .marquee-track { gap: 32px; padding-right: 32px; }
  .marquee-track > span { font-size: 11px; letter-spacing: 0.18em; }

  /* closing CTA section */
  .closing { padding: 72px var(--gutter); }

  /* footer spacing */
  .foot { padding: 56px var(--gutter) 32px; }
}
