:root {
  --olive: #807a53;
  --olive-soft: rgba(128,122,83,0.14);
  --orange: #c86435;
  --cream: #faf0e4;
  --brown: #b46d42;
  --ink: #000000;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 760px; }

a { color: inherit; }

.eyebrow {
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--olive); margin-bottom: 18px;
}
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 800; line-height: 1.1; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 3.9rem); margin-bottom: 24px; }
h2 { font-size: clamp(1.9rem, 5vw, 3rem); margin-bottom: 22px; }
h3 { font-size: 1.4rem; }
section { padding: 92px 0; }

.stage-note {
  font-family: 'Playfair Display', serif; font-style: italic; font-weight: 600;
  font-size: 1rem; color: var(--orange); line-height: 1.5; margin-top: 34px; max-width: 38ch;
}
.lede { font-size: 1.15rem; max-width: 54ch; color: #1a1a1a; margin-bottom: 32px; }
.lede strong { font-weight: 500; }
p + p { margin-top: 16px; }

/* ---------- nav ---------- */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,240,228,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(128,122,83,0.25);
}
nav .wrap { display: flex; justify-content: space-between; align-items: center; height: 70px; gap: 20px; }
.brand img { height: 36px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.06em;
  text-decoration: none; color: var(--ink); padding-bottom: 3px; border-bottom: 1.5px solid transparent;
}
.nav-links a:hover { border-color: var(--orange); }
.nav-links a.active { border-color: var(--orange); font-weight: 600; }
.nav-cta {
  background: var(--ink); color: var(--cream) !important; text-decoration: none;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 11px 20px; border-radius: 999px; border: none !important; transition: background 0.2s ease;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--orange); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--ink); line-height: 1; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; background: var(--orange); color: var(--cream);
  font-weight: 600; font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; padding: 17px 32px; border-radius: 999px; border: none; cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn:hover { background: var(--ink); transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }
.btn.ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); margin-left: 12px; }
.btn.ghost:hover { background: var(--ink); color: var(--cream); }
.btn.light { background: var(--cream); color: var(--ink); }
.btn.light:hover { background: var(--orange); color: var(--cream); }

/* ---------- page header ---------- */
.page-head { padding: 84px 0 60px; }
.page-head .lede { margin-bottom: 0; }

/* ---------- hero ---------- */
.hero { padding: 84px 0 96px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 em { font-style: italic; font-weight: 600; color: var(--brown); }

/* ---------- dashboard card artifact ---------- */
.dash { display: flex; flex-direction: column; gap: 16px; animation: float 7s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.card { background: #fffaf3; border: 1px solid rgba(128,122,83,0.3); border-radius: 16px; padding: 20px 22px; box-shadow: 0 14px 40px rgba(0,0,0,0.08); }
.card-label { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--olive); margin-bottom: 10px; }
.card-insight { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 600; font-size: 1.1rem; line-height: 1.45; }
.funnel { display: flex; gap: 8px; }
.funnel span { flex: 1; text-align: center; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 10px 4px; border-radius: 8px; color: var(--cream); }
.funnel span:nth-child(1) { background: var(--olive); }
.funnel span:nth-child(2) { background: var(--brown); }
.funnel span:nth-child(3) { background: var(--orange); }
.funnel span:nth-child(4) { background: var(--ink); }
.signal { margin-bottom: 10px; }
.signal:last-child { margin-bottom: 0; }
.signal .sig-name { display: flex; justify-content: space-between; font-size: 0.75rem; font-weight: 500; margin-bottom: 4px; }
.signal .sig-name b { font-weight: 600; color: var(--olive); }
.bar { height: 7px; background: var(--olive-soft); border-radius: 99px; overflow: hidden; }
.bar i { display: block; height: 100%; border-radius: 99px; background: var(--orange); width: 0; transition: width 1.2s cubic-bezier(0.22,1,0.36,1); }
.dash.in .bar i.w1 { width: 96%; }
.dash.in .bar i.w2 { width: 74%; }
.dash.in .bar i.w3 { width: 55%; }
.dash.in .bar i.w4 { width: 28%; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips span { font-size: 0.7rem; font-weight: 500; border: 1px solid var(--brown); color: var(--brown); padding: 5px 12px; border-radius: 999px; }

/* ---------- client marquee ---------- */
.clients { padding: 34px 0; border-top: 1px solid rgba(128,122,83,0.25); border-bottom: 1px solid rgba(128,122,83,0.25); overflow: hidden; }
.clients .label { text-align: center; font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--olive); margin-bottom: 18px; }
.marquee { display: flex; overflow: hidden; user-select: none; }
.marquee-track { display: flex; gap: 56px; padding-right: 56px; flex-shrink: 0; animation: scroll 30s linear infinite; align-items: center; }
@keyframes scroll { to { transform: translateX(-100%); } }
.marquee-track span { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.15rem; color: rgba(0,0,0,0.55); white-space: nowrap; }

/* ---------- grids ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 44px; }
.tile { background: #fffaf3; border: 1px solid rgba(128,122,83,0.3); border-radius: 16px; padding: 28px 24px; }
.tile .num { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; color: var(--orange); margin-bottom: 12px; }
.tile h3 { margin-bottom: 8px; }
.tile p { font-size: 0.9rem; color: #2c2c2c; }
.tile .big { font-family: 'Playfair Display', serif; font-weight: 800; font-size: clamp(2.2rem, 4.6vw, 3.2rem); line-height: 1; color: var(--orange); margin-bottom: 14px; }

/* ---------- dark section ---------- */
.dark { background: var(--ink); color: var(--cream); }
.dark .eyebrow { color: var(--brown); }
.dark h2, .dark h3 { color: var(--cream); }
.dark p { color: rgba(250,240,228,0.82); }
.dark .tile { background: rgba(250,240,228,0.06); border-color: rgba(250,240,228,0.18); }
.dark .tile p { color: rgba(250,240,228,0.75); }

/* ---------- hook marquee ---------- */
.hook-marquee { display: flex; overflow: hidden; margin-top: 48px; }
.hook-track { display: flex; gap: 20px; padding-right: 20px; flex-shrink: 0; animation: scroll 40s linear infinite; }
.hook-card { width: 280px; flex-shrink: 0; border-radius: 18px; padding: 28px 24px; display: flex; flex-direction: column; justify-content: space-between; min-height: 200px; }
.hook-card .tag { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.8; margin-bottom: 16px; }
.hook-card p { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.2rem; line-height: 1.35; }
.hook-card.c1 { background: var(--olive); color: var(--cream); }
.hook-card.c2 { background: var(--cream); color: var(--ink); }
.hook-card.c3 { background: var(--orange); color: var(--cream); }
.hook-card.c4 { background: var(--brown); color: var(--cream); }

/* ---------- accordion ---------- */
.svc { border-top: 1px solid rgba(128,122,83,0.35); }
.svc:last-of-type { border-bottom: 1px solid rgba(128,122,83,0.35); }
.svc summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 60px 1fr 30px; align-items: center; padding: 26px 0; gap: 14px; }
.svc summary::-webkit-details-marker { display: none; }
.svc .num { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: var(--olive); }
.svc .name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(1.25rem, 3vw, 1.65rem); }
.svc .plus { font-size: 1.6rem; font-weight: 300; color: var(--orange); text-align: right; transition: transform 0.25s ease; line-height: 1; }
.svc[open] .plus { transform: rotate(45deg); }
.svc .body { padding: 0 0 30px 74px; max-width: 62ch; }
.svc .body ul { list-style: none; margin-top: 10px; }
.svc .body li { padding: 7px 0 7px 22px; position: relative; font-size: 0.95rem; color: #262626; }
.svc .body li::before { content: ""; position: absolute; left: 0; top: 16px; width: 10px; height: 2px; background: var(--orange); }

/* ---------- steps ---------- */
.step { display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 28px 0; border-top: 1px solid rgba(128,122,83,0.35); }
.step:last-of-type { border-bottom: 1px solid rgba(128,122,83,0.35); }
.step .s-num { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.6rem; color: var(--olive); line-height: 1; padding-top: 4px; }
.step h3 { margin-bottom: 6px; }
.step p { font-size: 0.98rem; color: #262626; max-width: 56ch; }

/* ---------- founder ---------- */
.founder-grid { display: grid; grid-template-columns: 360px 1fr; gap: 52px; align-items: center; }
.portrait { aspect-ratio: 4/5; border-radius: 18px; overflow: hidden; background: linear-gradient(160deg, var(--olive), var(--brown)); }
.portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.role { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brown); margin-bottom: 20px; }
.stats-row { display: flex; gap: 36px; flex-wrap: wrap; margin-top: 28px; }
.stat .stat-n { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.7rem; color: var(--brown); line-height: 1.2; }
.stat .stat-l { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--olive); }

/* ---------- quotes ---------- */
.quote { border-left: 3px solid var(--orange); padding: 4px 0 4px 26px; margin-bottom: 42px; }
.quote:last-of-type { margin-bottom: 0; }
.quote blockquote { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 600; font-size: clamp(1.15rem, 2.8vw, 1.45rem); line-height: 1.5; margin-bottom: 14px; }
.quote cite { font-style: normal; font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--olive); }

/* ---------- client list ---------- */
.client-list { list-style: none; margin-top: 34px; }
.client-list li { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; border-bottom: 1px solid rgba(128,122,83,0.28); flex-wrap: wrap; }
.client-list li:first-child { border-top: 1px solid rgba(128,122,83,0.28); }
.client-list .c-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.15rem; }
.client-list .c-cat { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--olive); align-self: center; }

/* ---------- fit checker ---------- */
.check { display: grid; grid-template-columns: 30px 1fr 44px; gap: 18px; align-items: center; padding: 24px 0; border-top: 1px solid rgba(250,240,228,0.18); cursor: pointer; }
.check:last-of-type { border-bottom: 1px solid rgba(250,240,228,0.18); }
.check input { position: absolute; opacity: 0; pointer-events: none; }
.box { width: 26px; height: 26px; border: 1.5px solid var(--cream); border-radius: 7px; display: flex; align-items: center; justify-content: center; transition: background 0.2s ease, border-color 0.2s ease; font-size: 0.9rem; color: var(--ink); }
.check input:checked ~ .box { background: var(--orange); border-color: var(--orange); color: var(--cream); }
.check input:focus-visible ~ .box { outline: 2px solid var(--orange); outline-offset: 3px; }
.check .txt { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(1.05rem, 2.6vw, 1.35rem); line-height: 1.35; }
.check .idx { font-family: 'Playfair Display', serif; font-weight: 700; color: rgba(250,240,228,0.4); text-align: right; }
.fit-status { margin-top: 34px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.fit-count { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.6rem; }
.fit-msg { font-size: 0.95rem; color: rgba(250,240,228,0.75); }
#fitBtn { opacity: 0.35; pointer-events: none; transition: opacity 0.3s ease; }
#fitBtn.ready { opacity: 1; pointer-events: auto; }

/* ---------- availability ---------- */
.avail-strip { margin-top: 34px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; background: var(--ink); color: var(--cream); border-radius: 16px; padding: 24px 28px; }
.avail-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--orange); flex-shrink: 0; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.avail-txt { font-size: 0.95rem; flex: 1; min-width: 220px; color: rgba(250,240,228,0.9); }
.avail-txt b { font-weight: 600; color: var(--cream); }

/* ---------- contact rows ---------- */
.contact-row { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 24px 0; border-top: 1px solid rgba(128,122,83,0.3); align-items: baseline; }
.contact-row:last-of-type { border-bottom: 1px solid rgba(128,122,83,0.3); }
.contact-row .c-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--olive); }
.contact-row .c-val { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.2rem; word-break: break-word; }
.contact-row .c-val a { text-decoration: none; border-bottom: 1.5px solid var(--orange); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--olive); color: var(--cream); }
.cta-band h2 { color: var(--cream); }
.cta-band .eyebrow { color: var(--cream); opacity: 0.78; }
.cta-band p { max-width: 52ch; margin-bottom: 34px; color: rgba(250,240,228,0.92); }
.cta-band .alt { display: block; margin-top: 22px; font-size: 0.9375rem; color: rgba(250,240,228,0.85); }
.cta-band .alt a { color: var(--cream); text-underline-offset: 3px; }

/* ---------- footer ---------- */
footer { background: var(--ink); color: var(--cream); padding: 58px 0 46px; }
.foot-logo { height: 48px; width: auto; display: block; margin-bottom: 12px; }
.foot-tag { font-size: 0.8125rem; letter-spacing: 0.06em; color: rgba(250,240,228,0.7); margin-bottom: 30px; }
.foot-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 34px; }
.foot-cols h4 { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brown); margin-bottom: 14px; font-family: 'Inter', sans-serif; }
.foot-cols a, .foot-cols p { display: block; font-size: 0.9rem; color: rgba(250,240,228,0.8); text-decoration: none; margin-bottom: 8px; }
.foot-cols a:hover { color: var(--orange); }
.foot-meta { font-size: 0.8125rem; color: rgba(250,240,228,0.5); border-top: 1px solid rgba(250,240,228,0.15); padding-top: 24px; line-height: 1.9; }
.foot-meta a { color: rgba(250,240,228,0.7); text-decoration: none; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .dash { animation: none; }
  .marquee-track, .hook-track { animation: none; flex-wrap: wrap; }
  .bar i { transition: none; }
}

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .founder-grid { grid-template-columns: 1fr; gap: 34px; }
  .portrait { max-width: 330px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 70px; left: 0; right: 0;
    background: var(--cream); flex-direction: column; align-items: flex-start;
    gap: 0; padding: 12px 28px 22px; border-bottom: 1px solid rgba(128,122,83,0.3);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; width: 100%; }
  .nav-links .nav-cta { margin-top: 10px; text-align: center; }
}

@media (max-width: 620px) {
  section { padding: 68px 0; }
  .hero { padding: 58px 0 74px; }
  .page-head { padding: 58px 0 44px; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .svc .body { padding-left: 0; }
  .btn.ghost { margin-left: 0; margin-top: 12px; }
  .foot-cols { grid-template-columns: 1fr; }
  .contact-row { grid-template-columns: 1fr; gap: 6px; }
  .step { grid-template-columns: 50px 1fr; gap: 14px; }
}
