/* ============================================================
   Orange Grove Social — v4 "Showpiece"
   Brand: cream / olive / grove orange · Libre Caslon + DM Sans
   ============================================================ */

:root{
  --cream: #F7F1E5;
  --cream-deep: #EFE6D4;
  --olive: #3E4A32;
  --olive-deep: #2C3524;
  --olive-ink: #232A1D;
  --orange: #D96E32;          /* Grove Orange — accent only */
  --orange-deep: #B4531F;
  --tangerine: oklch(0.72 0.16 55);
  --ink: #26211A;
  --ink-soft: #4A4238;
  --ink-mute: #675D4F;
  --cta: color-mix(in oklch, var(--orange-deep) 82%, black);
  --cta-hover: color-mix(in oklch, var(--orange-deep) 68%, black);
  --paper-line: oklch(0.82 0.03 85);
  --serif: "Libre Caslon Text", Georgia, serif;
  --display: "Libre Caslon Display", "Libre Caslon Text", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --mono: "DM Mono", ui-monospace, monospace;
  --ease-out: cubic-bezier(.16,1,.3,1);
  --gutter: clamp(20px, 4vw, 64px);
}

*{ box-sizing: border-box; margin: 0; padding: 0 }
html{ scroll-behavior: smooth }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior: auto } }

body{
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

::selection{ background: var(--orange); color: #fff }

a{ color: var(--ink); text-decoration: none }
a:hover{ color: var(--cta) }

/* Grain overlay */
body::after{
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}
body[data-grain="off"]::after{ display: none }

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring{ display: none }
@media (pointer: fine) and (prefers-reduced-motion: no-preference){
  body[data-motion="full"]{ cursor: none }
  body[data-motion="full"] a,
  body[data-motion="full"] button{ cursor: none }
  body[data-motion="full"] .cursor-dot,
  body[data-motion="full"] .cursor-ring{
    display: block;
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 3000;
    border-radius: 50%;
  }
  .cursor-dot{
    width: 8px; height: 8px;
    background: var(--cta);
    transform: translate(-50%,-50%);
  }
  .cursor-ring{
    width: 38px; height: 38px;
    border: 1px solid oklch(0.5 0.1 50 / .55);
    transform: translate(-50%,-50%);
    transition: width .25s var(--ease-out), height .25s var(--ease-out), background-color .25s;
    display: grid; place-items: center;
  }
  .cursor-ring .cursor-label{
    font-family: var(--mono); font-size: 12px; letter-spacing: .1em;
    color: var(--cream); opacity: 0; transition: opacity .2s;
    text-transform: uppercase;
  }
  .cursor-ring.is-hover{ width: 56px; height: 56px; background: oklch(0.45 0.11 50 / .12) }
  .cursor-ring.is-label{
    width: 76px; height: 76px;
    background: var(--olive-ink);
    border-color: var(--olive-ink);
  }
  .cursor-ring.is-label .cursor-label{ opacity: 1 }
}

/* ---------- Utility ---------- */
.wrap{ max-width: 1360px; margin: 0 auto; padding-inline: var(--gutter) }
.mono-tag{
  font-family: var(--mono); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-mute);
}
.rule{ border: 0; border-top: 1px solid var(--paper-line) }

.sr-only{
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link{
  position: absolute; left: 16px; top: -60px; z-index: 4000;
  background: var(--olive-ink); color: var(--cream);
  padding: 12px 20px; font-family: var(--mono); font-size: 13px;
  transition: top .2s;
}
.skip-link:focus{ top: 16px; color: var(--cream) }

:focus-visible{ outline: 2px solid var(--cta); outline-offset: 3px }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 52px; padding: 14px 30px;
  background: var(--cta); color: #fff;
  border: 1px solid var(--cta); border-radius: 999px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  letter-spacing: .01em;
  transition: background .2s, transform .2s var(--ease-out);
}
.btn:hover{ background: var(--cta-hover); color: #fff; transform: translateY(-2px) }
.btn:active{ transform: translateY(0) scale(.98) }
.btn .arr{ transition: transform .25s var(--ease-out) }
.btn:hover .arr{ transform: translateX(4px) }

.btn-ghost{
  background: transparent; color: var(--ink);
  border-color: oklch(0.4 0.03 80 / .4);
}
.btn-ghost:hover{ background: var(--ink); border-color: var(--ink); color: var(--cream) }

.link-line{
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: var(--serif); font-style: italic; font-size: 20px;
  color: var(--ink);
  border-bottom: 1px solid var(--orange);
  padding-bottom: 4px;
  transition: border-color .2s, color .2s;
}
.link-line:hover{ color: var(--cta); border-bottom-color: var(--cta) }

/* ---------- Nav ---------- */
.nav{
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: transform .4s var(--ease-out), background-color .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled{
  background: oklch(from var(--cream) l c h / .88);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--paper-line);
}
.nav.is-hidden{ transform: translateY(-100%) }
.nav-inner{
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 16px;
}
.brand{
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-size: 21px; letter-spacing: -.01em;
}
.brand:hover{ color: var(--ink) }
.brand-mark{
  width: 26px; height: 26px; border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, var(--tangerine), var(--orange-deep));
  position: relative; flex: none;
}
.brand-mark::after{
  content: ""; position: absolute; top: -4px; left: 12px;
  width: 9px; height: 9px; border-radius: 60% 40% 55% 45%;
  background: var(--olive);
  transform: rotate(38deg);
}
.nav-links{ display: flex; align-items: center; gap: 34px; list-style: none }
.nav-links a:not(.nav-cta){
  font-size: 15px; font-weight: 500; color: var(--ink-soft);
  padding: 14px 0; position: relative;
}
.nav-links a:not(.nav-cta)::after{
  content: ""; position: absolute; left: 0; right: 100%; bottom: 8px;
  border-top: 1px solid var(--cta);
  transition: right .25s var(--ease-out);
}
.nav-links a:not(.nav-cta):hover::after, .nav-links a[aria-current="true"]::after{ right: 0 }
.nav-links a[aria-current="true"]{ color: var(--ink) }
.nav-links a.nav-cta{ min-height: 44px; padding: 10px 22px; font-size: 14px }

.menu-btn{
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; padding: 10px 18px;
  background: none; border: 1px solid oklch(0.4 0.03 80 / .4); border-radius: 999px;
  font-family: var(--mono); font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); cursor: pointer;
  transition: border-color .2s var(--ease-out), background-color .2s var(--ease-out);
}
.menu-btn:hover{ border-color: var(--cta); background: oklch(0.97 0.02 80 / .6) }
.menu-btn:active{ transform: scale(.97) }

/* ---------- Hero ---------- */
.hero{
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative;
  background:
    radial-gradient(120% 90% at 85% -10%, oklch(0.9 0.05 75 / .8), transparent 60%),
    radial-gradient(90% 70% at -10% 110%, oklch(0.88 0.04 120 / .6), transparent 55%),
    var(--cream);
  padding-top: 120px;
}
.hero-kicker{
  display: flex; align-items: center; gap: 16px;
  margin-bottom: clamp(20px, 3vh, 40px);
}
.hero-kicker .rule-seg{ width: 56px; border-top: 1px solid var(--orange) }
.hero-h1{
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3.4rem, 10.5vw, 11.5rem);
  line-height: .96;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.hero-h1 .l{ display: block; overflow: hidden }
.hero-h1 .l > span{ display: block }
.hero-h1 em{
  font-style: italic;
  color: var(--cta);
}
.hero-sub{
  max-width: 44ch;
  margin-top: clamp(24px, 4vh, 48px);
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-soft);
  text-wrap: pretty;
}
.hero-row{
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  margin-top: clamp(28px, 4vh, 52px);
  padding-bottom: clamp(32px, 6vh, 72px);
}
.hero-actions{ display: flex; align-items: center; gap: 28px; flex-wrap: wrap }
.hero-meta{
  font-family: var(--mono); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-mute);
  text-align: right; line-height: 2;
}

/* load stagger */
@media (prefers-reduced-motion: no-preference){
  body[data-motion="full"] .hero-h1 .l > span{
    transform: translateY(110%);
    animation: rise 1s var(--ease-out) forwards;
    animation-delay: calc(.15s + var(--i) * .12s);
  }
  body[data-motion="full"] .hero-fade{
    opacity: 0;
    animation: fadeup .9s var(--ease-out) forwards;
    animation-delay: calc(.55s + var(--i, 0) * .15s);
  }
}
@keyframes rise{ to{ transform: translateY(0) } }
@keyframes fadeup{ from{ opacity: 0; transform: translateY(24px) } to{ opacity: 1; transform: translateY(0) } }

/* marquee */
.marquee{
  border-block: 1px solid var(--paper-line);
  overflow: hidden;
  padding-block: 18px;
  background: var(--cream-deep);
}
.marquee-track{
  display: flex; gap: 64px; width: max-content;
  animation: slide 46s linear infinite;
}
.marquee:hover .marquee-track{ animation-play-state: paused }
.marquee-track span{
  font-family: var(--serif); font-size: 19px; white-space: nowrap;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 64px;
}
.marquee-track .dot{
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); flex: none;
}
@keyframes slide{ to{ transform: translateX(-50%) } }
@media (prefers-reduced-motion: reduce){
  .marquee-track{ animation: none; flex-wrap: wrap }
}

/* ---------- Section scaffolding (varied, not uniform) ---------- */
section{ position: relative }
.sec-head{
  display: grid; grid-template-columns: auto 1fr; gap: 24px;
  align-items: baseline; margin-bottom: clamp(40px, 7vh, 84px);
}
.sec-num{
  font-family: var(--mono); font-size: 13px; color: var(--cta);
  letter-spacing: .12em;
}
.sec-title{
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
  line-height: 1.06; letter-spacing: -.015em;
  text-wrap: balance;
}
.sec-title em{ font-style: italic; color: var(--olive) }

/* reveal */
.rv{ opacity: 1; transform: none }
@media (prefers-reduced-motion: no-preference){
  body[data-motion="full"] .rv{
    opacity: 0; transform: translateY(36px);
    transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
    transition-delay: calc(var(--i, 0) * .1s);
  }
  body[data-motion="full"] .rv.in{ opacity: 1; transform: translateY(0) }
}

/* ---------- Problem (de-boxed, numbered rules) ---------- */
.problem{ padding-block: clamp(90px, 14vh, 180px) }
.problem-grid{
  display: grid; grid-template-columns: minmax(280px, 5fr) 7fr;
  gap: clamp(40px, 6vw, 110px);
}
.problem-lede{
  font-family: var(--serif); font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.35; color: var(--ink); text-wrap: pretty;
  position: sticky; top: 120px; align-self: start;
}
.problem-lede em{ font-style: italic; color: var(--cta) }
.problem-list{ list-style: none }
.problem-list li{
  display: grid; grid-template-columns: 64px 1fr; gap: 20px;
  padding-block: 34px;
  border-top: 1px solid var(--paper-line);
}
.problem-list li:last-child{ border-bottom: 1px solid var(--paper-line) }
.problem-list .num{
  font-family: var(--mono); font-size: 13px; color: var(--ink-mute);
  padding-top: 6px;
}
.problem-list h3{
  font-family: var(--serif); font-weight: 400; font-size: 24px;
  margin-bottom: 8px; letter-spacing: -.01em;
}
.problem-list p{ color: var(--ink-soft); max-width: 52ch; text-wrap: pretty }

/* ---------- System (dark olive full-bleed) ---------- */
.system{
  background: var(--olive-ink); color: var(--cream);
  padding-block: clamp(90px, 14vh, 180px);
}
.system .sec-title{ color: var(--cream) }
.system .sec-title em{ color: var(--tangerine) }
.system .mono-tag{ color: oklch(0.78 0.03 100) }
.pillars{ list-style: none; counter-reset: pillar }
.pillar{
  display: grid;
  grid-template-columns: 90px minmax(200px, 1fr) 2fr;
  gap: clamp(20px, 3vw, 56px);
  align-items: baseline;
  padding-block: clamp(30px, 4.5vh, 52px);
  border-top: 1px solid oklch(0.4 0.03 120 / .6);
  transition: padding-left .35s var(--ease-out);
}
.pillar:hover{ padding-left: 18px }
.pillar:last-child{ border-bottom: 1px solid oklch(0.4 0.03 120 / .6) }
.pillar .p-num{
  font-family: var(--mono); font-size: 13px; letter-spacing: .12em;
  color: var(--tangerine);
}
.pillar h3{
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  letter-spacing: -.01em; color: var(--cream);
}
.pillar p{ color: oklch(0.85 0.02 100); max-width: 48ch; text-wrap: pretty }

/* ---------- Pinned phone process ---------- */
.process{ padding-block: clamp(90px, 12vh, 160px) }
.pin-grid{
  display: grid; grid-template-columns: minmax(320px, 7fr) 5fr;
  gap: clamp(40px, 6vw, 110px);
}
.steps{ list-style: none }
.step{
  min-height: 78vh;
  display: flex; flex-direction: column; justify-content: center;
  gap: 18px;
  border-top: 1px solid var(--paper-line);
  opacity: .3;
  transition: opacity .5s;
}
.step.is-active{ opacity: 1 }
.step .mono-tag{ color: var(--cta) }
.step h3{
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
  letter-spacing: -.015em;
}
.step p{ color: var(--ink-soft); max-width: 46ch; font-size: 18px; text-wrap: pretty }
@media (prefers-reduced-motion: reduce){ .step{ opacity: 1 } }

.phone-col{ position: relative }
.phone-sticky{
  position: sticky; top: calc(50vh - 330px);
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.phone{
  width: min(320px, 100%); aspect-ratio: 9 / 19;
  border-radius: 44px;
  background: #14110C;
  padding: 12px;
  box-shadow: 0 40px 80px -30px oklch(0.2 0.02 60 / .45);
}
.phone-screen{
  position: relative; width: 100%; height: 100%;
  border-radius: 34px; overflow: hidden;
}
.phone-scene{
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .7s var(--ease-out);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
}
.phone-scene.is-active{ opacity: 1 }
.phone-scene .scene-tag{
  font-family: var(--mono); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: oklch(0.93 0.02 90);
  opacity: .85;
}
.phone-scene .scene-cap{
  font-family: var(--serif); font-size: 21px; line-height: 1.3;
  color: var(--cream); margin-top: 6px;
}
/* abstract texture scenes — brand tones */
.scene-1{ background:
  radial-gradient(140% 90% at 80% 10%, oklch(0.66 0.14 55), transparent 60%),
  linear-gradient(160deg, oklch(0.34 0.05 120), oklch(0.22 0.03 100)) }
.scene-2{ background:
  radial-gradient(120% 100% at 15% 90%, oklch(0.6 0.13 45 / .9), transparent 55%),
  linear-gradient(200deg, oklch(0.5 0.1 60), oklch(0.26 0.05 50)) }
.scene-3{ background:
  radial-gradient(100% 80% at 85% 85%, oklch(0.55 0.09 120 / .9), transparent 60%),
  linear-gradient(150deg, oklch(0.86 0.05 85), oklch(0.55 0.11 65)) }
.scene-4{ background:
  radial-gradient(130% 110% at 20% 15%, oklch(0.7 0.15 60 / .85), transparent 55%),
  linear-gradient(215deg, oklch(0.3 0.04 100), oklch(0.18 0.02 80)) }
.scene-5{ background:
  radial-gradient(110% 90% at 75% 20%, oklch(0.88 0.06 90 / .9), transparent 60%),
  linear-gradient(170deg, oklch(0.62 0.13 55), oklch(0.32 0.06 45)) }
.phone-status{
  position: absolute; top: 14px; left: 24px; right: 24px;
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 12px; color: oklch(0.95 0.01 90 / .8);
  z-index: 2;
}
.phone-cap{
  font-family: var(--mono); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-mute);
}

/* ---------- Work — horizontal gallery ---------- */
.work{
  padding-block: clamp(90px, 12vh, 160px) clamp(60px, 8vh, 110px);
  background: var(--cream-deep);
  border-block: 1px solid var(--paper-line);
}
.work .sec-head{ margin-bottom: clamp(28px, 4vh, 48px) }
.gallery{
  display: flex; gap: clamp(18px, 2.4vw, 32px);
  overflow-x: auto;
  padding: 8px var(--gutter) 28px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}
.gallery::-webkit-scrollbar{ display: none }
.gallery.dragging{ cursor: grabbing; scroll-snap-type: none }
.g-card{
  flex: none;
  width: min(300px, 74vw);
  scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 14px;
}
.g-media{
  aspect-ratio: 9 / 13;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transition: transform .4s var(--ease-out);
}
.g-card:hover .g-media{ transform: translateY(-6px) }
.g-media .g-tag{
  position: absolute; top: 16px; left: 16px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase;
  color: oklch(0.95 0.01 90); background: oklch(0.2 0.02 60 / .45);
  padding: 6px 12px; border-radius: 999px;
  backdrop-filter: blur(6px);
}
.g-caption{
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
}
.g-caption h3{
  font-family: var(--serif); font-weight: 400; font-size: 19px;
  letter-spacing: -.01em;
}
.g-caption .mono-tag{ flex: none }
.work-foot{
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; margin-top: 10px;
}

/* ---------- Clients (floating logo wall) ---------- */
.clients{ padding-block: clamp(90px, 12vh, 160px) clamp(60px, 8vh, 110px) }
.logo-banner{
  position: relative; overflow: hidden;
  padding: 26px 0;
  border-bottom: 1px solid var(--paper-line);
}
.logo-banner:first-of-type{ border-top: 1px solid var(--paper-line) }
.logo-banner-track{
  display: flex; gap: 64px; width: max-content;
  white-space: nowrap;
  animation: slide 70s linear infinite;
  will-change: transform;
}
.logo-banner.reverse .logo-banner-track{ animation-direction: reverse; animation-duration: 90s }
.logo-banner:nth-of-type(odd) .logo-banner-track{ animation-duration: 80s }
.logo-banner:hover .logo-banner-track{ animation-play-state: paused }
.logo-banner-track > span{ display: inline-flex; align-items: center; gap: 64px; flex-shrink: 0 }
.logo-banner-track .logo{
  font-family: var(--serif); font-size: clamp(26px, 3vw, 38px);
  color: var(--ink); letter-spacing: -0.012em; line-height: 1;
  opacity: .8; transition: opacity .2s ease;
}
.logo-banner-track .logo:hover{ opacity: 1 }
.logo-banner-track .dot{
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0; opacity: .7;
}
@media (prefers-reduced-motion: reduce){
  .logo-banner-track{ animation: none; flex-wrap: wrap; white-space: normal }
}
body[data-motion="calm"] .logo-banner-track{ animation-play-state: paused }
.clients-foot{ margin-top: 40px; text-align: center }
.clients-foot p{ font-family: var(--serif); font-size: clamp(1.2rem, 1.8vw, 1.5rem); color: var(--ink-soft) }
.clients-foot em{ font-style: italic; color: var(--cta) }

/* Brand-accurate wordmark treatments */
.logo.brand-marriott{ font-family: 'Bodoni Moda', serif; font-weight: 700; font-size: clamp(24px, 2.6vw, 34px); letter-spacing: .04em; text-transform: uppercase }
.logo.brand-toyota{ font-family: 'Oswald', sans-serif; font-weight: 600; font-size: clamp(22px, 2.4vw, 32px); letter-spacing: .18em; text-transform: uppercase }
.logo.brand-yelp{ font-family: 'Rubik', sans-serif; font-weight: 800; font-size: clamp(24px, 2.6vw, 34px); letter-spacing: -.02em; color: oklch(0.55 0.18 28) }
.logo.brand-moxy{ font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: clamp(22px, 2.4vw, 30px); letter-spacing: .02em; text-transform: uppercase }
.logo.brand-tides{ font-family: 'Cinzel', serif; font-weight: 500; font-size: clamp(22px, 2.4vw, 30px); letter-spacing: .18em; text-transform: uppercase }
.logo.brand-intermezzo{ font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; font-size: clamp(28px, 3.2vw, 40px); letter-spacing: -.01em }
.logo.brand-sparrow{ font-family: 'Yeseva One', serif; font-weight: 400; font-size: clamp(24px, 2.6vw, 34px) }
.logo.brand-chartreuse{ font-family: 'Abril Fatface', serif; font-weight: 400; font-size: clamp(26px, 2.8vw, 36px); letter-spacing: .005em }
.logo.brand-stpete{ font-family: 'Bodoni Moda', serif; font-weight: 800; font-size: clamp(22px, 2.4vw, 30px); letter-spacing: .06em; text-transform: uppercase }
.logo.brand-bunny{ font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400; font-size: clamp(26px, 2.8vw, 36px); letter-spacing: -.005em }
.logo.brand-bogden{ font-family: 'Playfair Display SC', serif; font-weight: 400; font-size: clamp(20px, 2.2vw, 28px); letter-spacing: .06em }
.logo.brand-mios{ font-family: 'Yeseva One', serif; font-weight: 400; font-size: clamp(22px, 2.4vw, 30px) }
.logo.brand-willas{ font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; font-size: clamp(28px, 3vw, 38px); letter-spacing: -.01em }
.logo.brand-elliott{ font-family: 'Cinzel', serif; font-weight: 500; font-size: clamp(20px, 2.2vw, 28px); letter-spacing: .16em; text-transform: uppercase }
.logo.brand-cybel{ font-family: 'Cinzel', serif; font-weight: 500; font-size: clamp(20px, 2.2vw, 28px); letter-spacing: .22em; text-transform: uppercase }
.logo.brand-mezzomarket{ font-family: 'Bodoni Moda', serif; font-weight: 500; font-size: clamp(22px, 2.4vw, 30px); letter-spacing: .08em; text-transform: uppercase }
.logo.brand-lilyas{ font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400; font-size: clamp(26px, 2.8vw, 36px); letter-spacing: -.005em }
.logo.brand-barmezzo{ font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; font-size: clamp(26px, 2.8vw, 36px); letter-spacing: -.005em }
.logo.brand-florida-smash{ font-family: 'Oswald', sans-serif; font-weight: 700; font-size: clamp(20px, 2.2vw, 28px); letter-spacing: .14em; text-transform: uppercase }
.logo.brand-thedink{ font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: clamp(22px, 2.4vw, 30px); letter-spacing: .01em; text-transform: uppercase }
.logo.brand-elite{ font-family: 'Oswald', sans-serif; font-weight: 600; font-size: clamp(18px, 2vw, 24px); letter-spacing: .16em; text-transform: uppercase }
.logo.brand-supro{ font-family: 'Oswald', sans-serif; font-weight: 700; font-size: clamp(20px, 2.2vw, 28px); letter-spacing: .14em; text-transform: uppercase }
.logo.brand-turkish{ font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; font-size: clamp(28px, 3vw, 38px); letter-spacing: -.005em }
.logo.brand-tweeds{ font-family: 'Playfair Display SC', serif; font-weight: 700; font-size: clamp(22px, 2.4vw, 32px); letter-spacing: .04em }
.logo.brand-gymspb{ font-family: 'Oswald', sans-serif; font-weight: 700; font-size: clamp(18px, 2vw, 24px); letter-spacing: .16em; text-transform: uppercase }
.logo.brand-cipolla{ font-family: 'Yeseva One', serif; font-weight: 400; font-size: clamp(24px, 2.6vw, 34px) }
.logo.brand-lumbre{ font-family: 'Oswald', sans-serif; font-weight: 600; font-size: clamp(22px, 2.4vw, 32px); letter-spacing: .2em; text-transform: uppercase }
.logo.brand-terroir{ font-family: 'Cinzel', serif; font-weight: 500; font-size: clamp(20px, 2.2vw, 28px); letter-spacing: .16em; text-transform: uppercase }
.logo.brand-blanca{ font-family: 'Rubik', sans-serif; font-weight: 700; font-size: clamp(20px, 2.2vw, 28px); letter-spacing: .1em; text-transform: uppercase }
.logo.brand-mouratoglou{ font-family: 'Oswald', sans-serif; font-weight: 500; font-size: clamp(20px, 2.2vw, 28px); letter-spacing: .2em; text-transform: uppercase }
.logo.brand-dwell{ font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -.01em }
.logo.brand-omni{ font-family: 'Bodoni Moda', serif; font-weight: 600; font-size: clamp(22px, 2.4vw, 30px); letter-spacing: .14em; text-transform: uppercase }
.logo.brand-bayou{ font-family: 'Playfair Display SC', serif; font-size: clamp(22px, 2.4vw, 30px); letter-spacing: .06em }

/* ---------- Offer ---------- */
.offer{ padding-block: clamp(90px, 14vh, 180px) }
.packages{
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}
@media (max-width: 960px){ .packages{ grid-template-columns: 1fr } }
.package{
  border-top: 2px solid var(--ink);
  padding-top: 30px;
  display: flex; flex-direction: column; gap: 22px;
}
.package.is-featured{ border-top-color: var(--cta) }
.pkg-head{ display: flex; justify-content: space-between; align-items: baseline; gap: 16px }
.pkg-head h3{
  font-family: var(--serif); font-weight: 400; font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  letter-spacing: -.01em;
}
.pkg-tagline{ color: var(--ink-soft); max-width: 46ch; text-wrap: pretty }
.pkg-best{
  font-family: var(--mono); font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-mute); line-height: 1.9;
  border-block: 1px solid var(--paper-line); padding-block: 14px;
}
.pkg-list{ list-style: none; display: flex; flex-direction: column; gap: 13px }
.pkg-list li{
  display: grid; grid-template-columns: 22px 1fr; gap: 10px;
  color: var(--ink-soft); text-wrap: pretty;
}
.pkg-list li::before{ content: "→"; color: var(--cta); font-size: 15px }
.pkg-list strong{ color: var(--ink); font-weight: 600 }
.pkg-foot{
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 18px; margin-top: 8px;
}
.pkg-toggle{ align-self: flex-start; cursor: pointer }
.pkg-toggle .arr{ transition: transform .3s var(--ease-out) }
.pkg-toggle[aria-expanded="true"] .arr{ transform: rotate(90deg) }
.pkg-details{ display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease-out) }
.pkg-details.open{ grid-template-rows: 1fr }
.pkg-details-inner{ overflow: hidden; display: flex; flex-direction: column; gap: 20px; min-height: 0 }
.pkg-details-inner > .pkg-list{ padding-top: 4px }
.pkg-price{ font-family: var(--serif); font-size: clamp(1.9rem, 2.6vw, 2.5rem); letter-spacing: -.01em }
.pkg-price small{ font-family: var(--sans); font-size: 15px; color: var(--ink-mute) }
.offer-note{
  margin-top: clamp(48px, 7vh, 90px);
  text-align: center;
}
.offer-note p{
  font-family: var(--serif); font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  color: var(--ink-soft); max-width: 52ch; margin: 0 auto 22px;
  text-wrap: balance;
}

/* ---------- Versus ---------- */
.versus{
  background: var(--olive-ink); color: var(--cream);
  padding-block: clamp(90px, 14vh, 180px);
}
.versus .sec-title{ color: var(--cream) }
.versus .sec-title em{ color: var(--tangerine) }
.versus .mono-tag{ color: oklch(0.78 0.03 100) }
.vs-grid{
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 72px);
  margin-top: clamp(40px, 6vh, 72px);
}
.vs-col h3{
  font-family: var(--mono); font-weight: 400; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase;
  padding-bottom: 18px; margin-bottom: 4px;
}
.vs-col.them h3{ color: oklch(0.7 0.02 100) }
.vs-col.us h3{ color: var(--tangerine) }
.vs-col ul{ list-style: none }
.vs-col li{
  padding-block: 18px;
  border-top: 1px solid oklch(0.4 0.03 120 / .6);
  color: oklch(0.86 0.02 100);
  text-wrap: pretty;
}
.vs-col.them li{ color: oklch(0.72 0.02 100) }
.vs-col.us li{ font-weight: 500; color: var(--cream) }

/* ---------- Final CTA ---------- */
.final{
  padding-block: clamp(110px, 18vh, 220px);
  text-align: center;
  background:
    radial-gradient(90% 70% at 50% 110%, oklch(0.9 0.06 75 / .7), transparent 60%),
    var(--cream);
}
.final-h{
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.8rem, 7.5vw, 7.5rem);
  line-height: 1.02; letter-spacing: -.02em;
  text-wrap: balance;
}
.final-h em{ font-style: italic; color: var(--cta) }
.final p{
  margin: 26px auto 40px; max-width: 46ch;
  color: var(--ink-soft); font-size: 18px; text-wrap: pretty;
}

/* ---------- Footer ---------- */
footer{
  background: var(--olive-ink); color: var(--cream);
  padding-top: clamp(70px, 10vh, 120px);
  overflow: hidden;
}
footer a{ color: oklch(0.86 0.02 100) }
footer a:hover{ color: var(--tangerine) }
.foot-grid{
  display: grid; grid-template-columns: 5fr 3fr 3fr;
  gap: clamp(32px, 5vw, 80px);
  padding-bottom: clamp(48px, 7vh, 80px);
}
.foot-nl h2{
  font-family: var(--serif); font-weight: 400; font-size: 26px;
  margin-bottom: 10px; color: var(--cream);
}
.foot-nl > p{ color: oklch(0.8 0.02 100); max-width: 42ch; margin-bottom: 24px; text-wrap: pretty }
.nl-label{
  display: block;
  font-family: var(--mono); font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; color: oklch(0.78 0.03 100);
  margin-bottom: 10px;
}
.nl-row{ display: flex; gap: 10px; flex-wrap: wrap }
.nl-row input{
  flex: 1 1 220px; min-height: 52px;
  background: oklch(0.3 0.03 110); border: 1px solid oklch(0.42 0.03 110);
  border-radius: 999px; padding: 12px 22px;
  color: var(--cream); font-family: var(--sans); font-size: 16px;
}
.nl-row input::placeholder{ color: oklch(0.66 0.02 100) }
.nl-note{ font-family: var(--mono); font-size: 12px; margin-top: 12px; color: oklch(0.75 0.03 100) }
.nl-note.warn{ color: var(--tangerine) }
.foot-col h3{
  font-family: var(--mono); font-weight: 400; font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase;
  color: oklch(0.7 0.02 100); margin-bottom: 18px;
}
.foot-col ul{ list-style: none; display: flex; flex-direction: column; gap: 12px }
.foot-wordmark{
  font-family: var(--display);
  font-size: clamp(3rem, 10.5vw, 11rem);
  line-height: 1;
  letter-spacing: -.02em;
  color: oklch(0.34 0.04 115);
  white-space: nowrap;
  text-align: center;
  transform: translateY(18%);
  user-select: none;
}
.foot-legal{
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid oklch(0.4 0.03 120 / .6);
  padding-block: 22px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .08em;
  color: oklch(0.72 0.02 100);
  text-transform: uppercase;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px){
  .nav-links{ display: none }
  .menu-btn{
    display: inline-flex; align-items: center; gap: 8px;
    min-height: 44px; padding: 10px 16px;
    background: none; border: 1px solid oklch(0.4 0.03 80 / .4); border-radius: 999px;
    font-family: var(--mono); font-size: 13px; letter-spacing: .1em;
    color: var(--ink); cursor: pointer;
  }
  .problem-grid, .pin-grid, .packages, .vs-grid, .foot-grid{ grid-template-columns: 1fr }
  .problem-lede{ position: static }
  .step{ min-height: 0; padding-block: 40px; opacity: 1 }
  .phone-col{ display: none }
  .hero-meta{ text-align: left }
  .pillar{ grid-template-columns: 60px 1fr; grid-template-rows: auto auto }
  .pillar p{ grid-column: 2 }
}


/* ---------- Site menu popout (all sizes) ---------- */
.m-menu{
  position: fixed; top: 76px; right: max(24px, calc((100vw - var(--maxw, 1280px)) / 2 + 24px)); z-index: 999;
  min-width: 240px;
  background: var(--cream);
  border: 1px solid oklch(0.4 0.03 80 / .25); border-radius: 16px;
  box-shadow: 0 24px 48px -24px oklch(0.3 0.04 60 / .35);
  display: flex; flex-direction: column;
  padding: 10px;
  transform-origin: top right;
  animation: menuPop .22s var(--ease-out);
}
.m-menu[hidden]{ display: none }
.m-menu a{
  font-family: var(--sans); font-size: 15px; font-weight: 500;
  color: var(--ink); padding: 11px 14px; border-radius: 10px;
  min-height: 44px; display: flex; align-items: center;
  opacity: 0; transform: translateY(6px);
  animation: menuLink .3s var(--ease-out) forwards;
  animation-delay: calc(40ms + var(--mi, 0) * 30ms);
  transition: background-color .15s var(--ease-out), color .15s var(--ease-out);
}
.m-menu a:hover{ background: oklch(0.95 0.025 80 / .8); color: var(--cta) }
.m-menu a:last-child{ color: var(--cta); font-weight: 600 }
@keyframes menuPop{ from{ opacity: 0; transform: scale(.96) translateY(-6px) } to{ opacity: 1; transform: none } }
@keyframes menuLink{ to{ opacity: 1; transform: none } }
@media (max-width: 760px){ .m-menu{ left: 24px; right: 24px } }
@media (prefers-reduced-motion: reduce){
  .m-menu, .m-menu a{ animation: none; opacity: 1; transform: none }
}
