/* ── tokens ─────────────────────────────────────────────────────── */
:root {
  --bg:          #f1ece2;
  --bg-2:        #ebe5d8;
  --paper:       #faf6ec;
  --ink:         #1a2922;
  --ink-2:       #354a40;
  --ink-3:       #6c7a72;
  --line:        #d8d0bf;
  --line-2:      #cdc4af;
  --accent:      #c4622d;
  --accent-2:    #a04d1f;
  --green:       #1a3329;
  --green-soft:  #c8d3c7;
  --pos:         #2f6b4a;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;

  --maxw: 1320px;
  --pad-x: clamp(20px, 4vw, 56px);

  --fs-eyebrow: 11px;
  --ls-eyebrow: 0.16em;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Geist', ui-sans-serif, system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "ss02", "cv11";
}
::selection { background: var(--green); color: var(--paper); }

.mono { font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace; font-feature-settings: "ss01"; }
.eyebrow {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.eyebrow .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); margin-right: 8px; vertical-align: 1px;
}

h1,h2,h3,h4 { margin: 0; font-weight: 500; letter-spacing: -0.022em; line-height: 1.04; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.wrap--narrow { max-width: 1080px; }
.wrap--content { max-width: 800px; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.rule.dashed { background: transparent; border-top: 1px dashed var(--line-2); }
.vrule { width: 1px; background: var(--line); align-self: stretch; }

/* ── nav ────────────────────────────────────────────────────────── */
.nav-outer {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease, background .3s ease;
}
.nav-outer.nav-scrolled {
  box-shadow: 0 4px 24px -8px rgba(26,41,34,.12);
  background: color-mix(in oklab, var(--bg) 94%, transparent);
}
.admin-bar .nav-outer { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .nav-outer { top: 46px; } }

/* Performance hints for animated elements */
.collage, .frag, .hero h1, .hero-sub, .sec-head { will-change: transform, opacity; }

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 64px;
  gap: 32px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -0.01em; }
.brand-text-link { display: flex; align-items: center; gap: 10px; color: inherit; text-decoration: none; }
.brand-name { font-weight: 600; letter-spacing: -0.01em; }
.brand-mark {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background:
    radial-gradient(circle at 30% 35%, var(--paper) 0 3px, transparent 4px),
    conic-gradient(from 210deg, var(--green) 0 60%, var(--accent) 60% 100%);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}
/* Custom logo in brand area */
.brand .custom-logo-link { display: inline-flex; align-items: center; }
.brand .custom-logo { height: 36px; width: auto; display: block; }

.nav-outer .nav-links { display: flex; gap: 28px; align-self: center; justify-content: center; }
.nav-outer .nav-links a {
  font-size: 14px; color: var(--ink-2); position: relative; padding: 6px 0;
}
.nav-outer .nav-links a:hover,
.nav-outer .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-cta { display: flex; gap: 10px; align-items: center; }

/* ── hamburger toggle ───────────────────────────────────────────── */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 4px; width: 36px; height: 36px; padding: 6px;
  background: transparent; border: 1px solid var(--line-2); border-radius: var(--r-sm);
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 16px; height: 1.5px; background: var(--ink);
  transition: transform .2s, opacity .2s;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ── buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font: inherit; font-size: 14px; font-weight: 500;
  padding: 10px 16px; border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer; user-select: none; text-decoration: none;
  transition: background .15s, color .15s, border-color .15s, transform .1s;
}
.btn .arr { transition: transform .15s; }
.btn:hover .arr { transform: translateX(2px); }
.btn-primary { background: var(--green); color: var(--paper); }
.btn-primary:hover { background: #0f1f17; }
.btn-ghost { color: var(--ink); border-color: var(--line-2); background: transparent; }
.btn-ghost:hover { background: var(--paper); }
.btn-accent { background: var(--accent); color: var(--paper); }
.btn-accent:hover { background: var(--accent-2); }
.btn-link {
  color: var(--ink); padding: 0; border: 0; background: transparent; font-weight: 500;
  border-bottom: 1px solid var(--line-2); border-radius: 0; padding-bottom: 2px;
}
.btn-link:hover { border-color: var(--ink); }

/* ── hero ───────────────────────────────────────────────────────── */
.hero { padding: 56px 0 64px; }
.hero-eyebrow { margin-bottom: 28px; display: flex; align-items: center; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px; align-items: end;
}
.hero h1 {
  font-size: clamp(44px, 6.4vw, 96px);
  letter-spacing: -0.035em; font-weight: 400;
}
.hero h1 em {
  font-style: italic;
  font-family: 'Fraunces', 'Geist', serif;
  font-weight: 400; color: var(--green);
}
.hero h1 .accent { color: var(--accent); font-style: italic; font-family: 'Fraunces', serif; font-weight: 400; }
.hero-sub { font-size: 18px; line-height: 1.5; color: var(--ink-2); max-width: 50ch; margin-top: 28px; }
.hero-ctas { display: flex; gap: 12px; align-items: center; margin-top: 32px; }
.hero-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 56px; border-top: 1px solid var(--line);
}
.hero-meta .cell {
  padding: 18px 0 0; border-right: 1px dashed var(--line-2); padding-right: 18px;
}
.hero-meta .cell:last-child { border-right: 0; }
.hero-meta .num {
  font-family: 'Geist'; font-size: 32px; font-weight: 400;
  letter-spacing: -0.025em; color: var(--ink); line-height: 1;
}
.hero-meta .num sup { font-size: 14px; font-weight: 500; color: var(--accent); margin-left: 2px; vertical-align: top; }
.hero-meta .lbl { font-size: 12px; color: var(--ink-3); margin-top: 8px; line-height: 1.35; max-width: 24ch; }

/* hero collage */
.collage { position: relative; aspect-ratio: 5 / 5.4; width: 100%; }
.frag {
  position: absolute;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 24px 60px -30px rgba(26,41,34,.25), 0 2px 6px rgba(26,41,34,.06);
  overflow: hidden;
}
.frag .fhd {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; border-bottom: 1px solid var(--line);
  font-size: 11px; color: var(--ink-3);
}
.frag .ftt { font-weight: 500; color: var(--ink); }

.frag-schedule { left: 0; top: 6%; width: 64%; }
.sched-row {
  display: grid; grid-template-columns: 56px 1fr auto;
  gap: 12px; align-items: center;
  padding: 10px 14px; border-bottom: 1px solid var(--line); font-size: 13px;
}
.sched-row:last-child { border-bottom: 0; }
.sched-time { font-family: 'Geist Mono'; font-size: 12px; color: var(--ink-2); }
.sched-name { font-weight: 500; }
.sched-meta { font-size: 11px; color: var(--ink-3); }
.sched-tag { font-family: 'Geist Mono'; font-size: 10px; padding: 3px 7px; border-radius: 999px; letter-spacing: .04em; }
.tag-confirmed { background: color-mix(in oklab, var(--pos) 14%, transparent); color: var(--pos); }
.tag-pending { background: #f5e6d3; color: #8a5a1f; }
.tag-checkin { background: var(--green-soft); color: var(--green); }
.sched-row.now { background: color-mix(in oklab, var(--accent) 7%, transparent); }
.sched-row.now::before {
  content: ''; width: 3px; align-self: stretch; background: var(--accent);
  border-radius: 2px; margin-left: -8px; margin-right: 5px;
}

.frag-rev { right: 2%; top: 0; width: 44%; }
.rev-body { padding: 14px 16px 16px; }
.rev-num { font-size: 38px; letter-spacing: -0.03em; font-weight: 500; line-height: 1; color: var(--ink); }
.rev-num .cur { font-size: 18px; color: var(--ink-3); margin-right: 2px; vertical-align: 4px; }
.rev-delta { font-family: 'Geist Mono'; font-size: 11px; color: var(--pos); margin-top: 6px; }
.rev-spark { margin-top: 14px; height: 38px; width: 100%; }

.frag-toast {
  right: 0; bottom: 22%; width: 50%;
  background: var(--green); color: var(--paper);
  border: 1px solid var(--green);
}
.frag-toast .fhd { color: rgba(245,241,234,.6); border-color: rgba(255,255,255,.1); }
.frag-toast .ftt { color: var(--paper); }
.toast-body { padding: 14px 16px 16px; }
.toast-msg { font-size: 13px; line-height: 1.45; color: rgba(245,241,234,.85); }
.toast-msg b { color: var(--paper); font-weight: 500; }
.toast-foot {
  display: flex; gap: 8px; margin-top: 12px;
  font-family: 'Geist Mono'; font-size: 10px; color: rgba(245,241,234,.55);
  letter-spacing: .04em; text-transform: uppercase;
}
.toast-foot .pip { color: var(--accent); }
.ml-auto { margin-left: auto; }

.frag-pill {
  right: 16%; top: 41%;
  background: var(--paper); border-radius: 999px;
  padding: 8px 12px 8px 8px; display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--ink); width: auto;
}
.frag-pill .av {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #e09870);
  display: grid; place-items: center;
  font-size: 10px; color: var(--paper); font-weight: 600;
}
.frag-pill b { font-weight: 500; }
.frag-pill .mono { color: var(--ink-3); font-size: 11px; }

/* ── logos / early access bar ───────────────────────────────────── */
.logos {
  padding: 36px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, color-mix(in oklab, var(--paper) 50%, transparent));
}
.logos-grid { display: grid; grid-template-columns: 240px 1fr; gap: 56px; align-items: center; }
.logos-line { font-size: 12px; color: var(--ink-3); line-height: 1.45; }
.logos-line b { color: var(--ink); font-weight: 500; display: block; margin-bottom: 4px; }
.logos-row {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 32px; align-items: center;
  color: var(--ink-2); font-weight: 600; font-size: 16px;
}
.logos-row--3 { grid-template-columns: repeat(3, 1fr); gap: 32px; }

.logo { display: flex; align-items: center; gap: 8px; opacity: .75; transition: opacity .15s; letter-spacing: -0.01em; }
.logo:hover { opacity: 1; }
.logo i { font-style: normal; width: 20px; height: 20px; display: inline-grid; place-items: center; border: 1px solid currentColor; border-radius: 4px; font-size: 11px; }

.logo-feature { opacity: 1; flex-direction: column; align-items: flex-start; gap: 4px; }
.logo-feature__label {
  font-family: 'Geist Mono', ui-monospace, monospace; font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3);
}
.logo-feature__text { font-size: 14px; font-weight: 500; color: var(--ink); }

/* ── section header ─────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section.tight { padding: 72px 0; }
.section--alt { background: var(--bg-2); }

.sec-head { display: grid; grid-template-columns: 220px 1fr; gap: 56px; align-items: end; margin-bottom: 48px; }
.sec-head h2 { font-size: clamp(32px, 4.2vw, 56px); letter-spacing: -0.028em; font-weight: 400; max-width: 22ch; }
.sec-head h2 em { font-style: italic; font-family: 'Fraunces', serif; color: var(--accent); }
.sec-head .lead { color: var(--ink-2); font-size: 16px; max-width: 56ch; margin-top: 16px; }
.sec-tag {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Geist Mono'; font-size: 11px;
  text-transform: uppercase; letter-spacing: .12em; color: var(--ink-3);
}
.sec-tag .num { color: var(--ink); }
.sec-tag::before { content: ''; width: 24px; height: 1px; background: var(--ink); display: inline-block; }

/* ── how it works ───────────────────────────────────────────────── */
.how-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
.how-step {
  border-right: 1px solid var(--line); padding: 28px 28px 32px;
  display: flex; flex-direction: column; min-height: 460px;
}
.how-step:last-child { border-right: 0; }
.how-step .step-no {
  font-family: 'Geist Mono'; font-size: 11px; letter-spacing: .12em; color: var(--ink-3);
  text-transform: uppercase; display: flex; align-items: center; gap: 8px; margin-bottom: 18px;
}
.how-step .step-no .marker {
  width: 22px; height: 22px; border-radius: 50%; background: var(--ink); color: var(--paper);
  display: grid; place-items: center; font-size: 10px;
}
.how-step h3 { font-size: 26px; letter-spacing: -0.022em; font-weight: 400; line-height: 1.1; }
.how-step p, .how-step .step-desc { color: var(--ink-2); font-size: 14px; line-height: 1.55; margin-top: 14px; max-width: 36ch; }
.how-mock { margin-top: auto; padding-top: 28px; }

.mock-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.mock-card .mhd {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; border-bottom: 1px solid var(--line); font-size: 11px; color: var(--ink-3);
}
.mock-card .mhd b { color: var(--ink); font-weight: 500; }
.check-row {
  display: grid; grid-template-columns: 18px 1fr auto;
  gap: 10px; align-items: center;
  padding: 10px 14px; border-bottom: 1px solid var(--line); font-size: 13px;
}
.check-row:last-child { border-bottom: 0; }
.chk { width: 16px; height: 16px; border-radius: 50%; border: 1px solid var(--line-2); position: relative; }
.chk.done { background: var(--green); border-color: var(--green); }
.chk.done::after {
  content: ''; position: absolute; left: 4px; top: 2px;
  width: 5px; height: 9px; border: solid var(--paper); border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.check-row .t { font-size: 11px; color: var(--ink-3); font-family: 'Geist Mono'; }

.role-stack { display: flex; flex-direction: column; gap: 8px; padding: 14px; }
.role {
  display: grid; grid-template-columns: 28px 1fr auto;
  gap: 10px; align-items: center;
  padding: 9px 12px; border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--paper); font-size: 13px;
}
.role-av { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; color: var(--paper); font-weight: 500; }
.role-av.a { background: #2f6b4a; }
.role-av.b { background: var(--accent); }
.role-av.c { background: #4a5a8a; }
.role-av.d { background: #6c7a72; }
.role-name { font-weight: 500; }
.role-meta { font-size: 11px; color: var(--ink-3); }
.role-perm { font-family: 'Geist Mono'; font-size: 10px; padding: 3px 7px; border-radius: 4px; background: var(--bg-2); color: var(--ink-2); text-transform: uppercase; letter-spacing: .04em; }

.booking-grid { display: grid; grid-template-columns: repeat(7, 1fr); border-top: 1px solid var(--line); }
.bk-cell {
  aspect-ratio: 1; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 4px; font-family: 'Geist Mono'; font-size: 9px; color: var(--ink-3);
  position: relative; background: var(--paper);
}
.bk-cell:nth-child(7n) { border-right: 0; }
.bk-cell.has::after { content: ''; position: absolute; left: 4px; right: 4px; bottom: 4px; height: 4px; border-radius: 2px; background: var(--green); }
.bk-cell.has.busy::after { background: var(--accent); }
.bk-cell.today { background: var(--green-soft); color: var(--green); font-weight: 500; }
.bk-cell.muted { color: var(--line-2); }

/* ── feature grid ───────────────────────────────────────────────── */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feat {
  padding: 32px 28px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: transparent; transition: background .2s;
  min-height: 240px; display: flex; flex-direction: column;
}
.feat:hover { background: color-mix(in oklab, var(--paper) 70%, transparent); }
.feat .top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.feat .fno { font-family: 'Geist Mono'; font-size: 11px; color: var(--ink-3); letter-spacing: .12em; }
.feat .icon { width: 28px; height: 28px; color: var(--ink); }
.feat h3 { font-size: 19px; letter-spacing: -0.018em; font-weight: 500; }
.feat p { color: var(--ink-2); font-size: 14px; line-height: 1.55; margin-top: 8px; max-width: 32ch; }
.feat .stat { margin-top: auto; padding-top: 18px; font-family: 'Geist Mono'; font-size: 11px; color: var(--ink-3); display: flex; justify-content: space-between; gap: 12px; }
.feat .stat b { color: var(--accent); font-weight: 500; }

/* ── multi-location ─────────────────────────────────────────────── */
.multi { background: var(--green); color: var(--paper); }
.multi .wrap { padding-top: 96px; padding-bottom: 96px; }
.multi .sec-head h2 { color: var(--paper); }
.multi .sec-head h2 em { color: #e6a574; }
.multi .sec-head .lead { color: rgba(245,241,234,.7); }
.multi .sec-tag { color: rgba(245,241,234,.55); }
.multi .sec-tag .num { color: var(--paper); }
.multi .sec-tag::before { background: rgba(245,241,234,.5); }
.multi-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: stretch; }

.multi-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid rgba(245,241,234,.15); }
.multi-stats .cell { padding: 32px 0; border-bottom: 1px solid rgba(245,241,234,.15); border-right: 1px dashed rgba(245,241,234,.15); padding-right: 24px; }
.multi-stats .cell:nth-child(2n) { border-right: 0; padding-left: 24px; padding-right: 0; }
.multi-stats .num { font-size: 56px; letter-spacing: -0.03em; line-height: 1; font-weight: 400; }
.multi-stats .num sup { font-size: 22px; vertical-align: 22px; color: #e6a574; font-weight: 500; }
.multi-stats .lbl { font-size: 13px; color: rgba(245,241,234,.6); margin-top: 12px; max-width: 28ch; }

.multi-mock {
  background: rgba(245,241,234,.04); border: 1px solid rgba(245,241,234,.12);
  border-radius: var(--r-lg); padding: 24px; display: flex; flex-direction: column;
}
.multi-mock h4 { font-family: 'Geist Mono'; font-size: 11px; color: rgba(245,241,234,.55); text-transform: uppercase; letter-spacing: .12em; font-weight: 500; margin-bottom: 18px; }
.loc { display: grid; grid-template-columns: 1fr auto auto auto; gap: 16px; align-items: center; padding: 14px 0; border-top: 1px solid rgba(245,241,234,.1); font-size: 14px; }
.loc:first-of-type { border-top: 0; }
.loc .name { font-weight: 500; }
.loc .city { color: rgba(245,241,234,.55); font-size: 12px; margin-top: 2px; }
.loc .pat { font-family: 'Geist Mono'; font-size: 12px; color: rgba(245,241,234,.7); }
.loc-bar { width: 80px; height: 4px; border-radius: 2px; background: rgba(245,241,234,.12); position: relative; overflow: hidden; }
.loc-bar i { position: absolute; left: 0; top: 0; bottom: 0; background: #e6a574; font-style: normal; }
.loc-status { width: 8px; height: 8px; border-radius: 50%; background: #7dd3a8; }
.loc-status.warn { background: #e6a574; }

/* ── pricing ────────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.price {
  padding: 32px 28px; border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px; min-height: 540px;
}
.price:last-child { border-right: 0; }
.price.featured { background: var(--paper); position: relative; }
.price.featured::before {
  content: attr(data-featured-label);
  position: absolute; top: -1px; left: 50%; transform: translate(-50%, -50%);
  background: var(--accent); color: var(--paper);
  font-family: 'Geist Mono'; font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; white-space: nowrap;
}
.price-tier { display: flex; align-items: baseline; justify-content: space-between; }
.price-tier h3 { font-size: 20px; font-weight: 500; letter-spacing: -0.015em; }
.price-tier .for { font-family: 'Geist Mono'; font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .08em; }
.price-amt { font-size: 56px; letter-spacing: -0.03em; font-weight: 400; line-height: 1; display: flex; align-items: flex-start; gap: 4px; }
.price-amt .cur { font-size: 22px; color: var(--ink-3); margin-top: 8px; }
.price-amt .per { font-size: 14px; color: var(--ink-3); align-self: flex-end; padding-bottom: 8px; }
.price-amt--custom { font-family: 'Geist', ui-sans-serif, sans-serif; font-size: 40px; padding-top: 12px; display: block; }
.price-line { color: var(--ink-2); font-size: 14px; line-height: 1.5; }
.price ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.price li { font-size: 14px; color: var(--ink-2); display: grid; grid-template-columns: 16px 1fr; gap: 10px; align-items: start; }
.price li::before { content: ''; width: 12px; height: 1px; background: var(--ink); margin-top: 9px; }
.price-cta { margin-top: auto; }
.pricing-footnote { margin-top: 24px; font-size: 11px; color: var(--ink-3); letter-spacing: .04em; }

/* ── faq ────────────────────────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  display: grid; grid-template-columns: 60px 1fr 24px;
  gap: 24px; align-items: center; width: 100%;
  padding: 24px 4px; cursor: pointer; background: transparent; border: 0; text-align: left;
  font: inherit; font-size: 20px; letter-spacing: -0.015em; color: var(--ink);
  transition: padding .2s;
}
.faq-q .qno { font-family: 'Geist Mono'; font-size: 11px; color: var(--ink-3); letter-spacing: .12em; }
.faq-q .pl { font-size: 22px; color: var(--ink-3); transition: transform .2s; line-height: 1; }
.faq-item.open .faq-q .pl { transform: rotate(45deg); color: var(--accent); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; color: var(--ink-2); font-size: 15px; line-height: 1.6; padding-left: 84px; max-width: 76ch; }
.faq-item.open .faq-a > div { padding-bottom: 24px; }

/* ── cta / contact ──────────────────────────────────────────────── */
.cta { padding: 96px 0; }
.cta-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: grid; grid-template-columns: 1.05fr 1fr;
}
.cta-left { padding: 48px; display: flex; flex-direction: column; gap: 24px; }
.cta-left h2 { font-size: clamp(36px, 3.6vw, 52px); letter-spacing: -0.028em; font-weight: 400; }
.cta-left h2 em { font-family: 'Fraunces', serif; font-style: italic; color: var(--accent); }
.cta-left p { color: var(--ink-2); font-size: 15px; max-width: 44ch; }
.cta-meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: auto; padding-top: 28px; border-top: 1px solid var(--line);
}
.cta-meta .k { font-family: 'Geist Mono'; font-size: 11px; letter-spacing: .12em; color: var(--ink-3); text-transform: uppercase; margin-bottom: 6px; }
.cta-meta .v { font-size: 14px; }
.cta-right { background: var(--green); color: var(--paper); padding: 48px; }
.cta-right h3 { font-family: 'Geist Mono'; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(245,241,234,.55); font-weight: 500; margin-bottom: 28px; }

/* ── CF7 form styling (inside .cta-right) ───────────────────────── */
.cta-right .wpcf7-form,
.cta-right form { margin: 0; }

.cta-right .wpcf7-form-control-wrap,
.cta-right .form-row { display: block; margin-bottom: 18px; }

.cta-right label,
.cta-right .wpcf7 label { display: block; font-size: 12px; color: rgba(245,241,234,.55); margin-bottom: 6px; }

.cta-right input[type="text"],
.cta-right input[type="email"],
.cta-right input[type="tel"],
.cta-right input[type="url"],
.cta-right select,
.cta-right textarea {
  background: transparent; border: 0; border-bottom: 1px solid rgba(245,241,234,.2);
  color: var(--paper); font: inherit; font-size: 15px;
  padding: 8px 0; outline: none; width: 100%;
  transition: border-color .15s;
}
.cta-right input:focus,
.cta-right select:focus,
.cta-right textarea:focus { border-color: var(--accent); }
.cta-right textarea { resize: vertical; min-height: 60px; }
.cta-right select option { background: var(--green); color: var(--paper); }

.cta-right .wpcf7-submit,
.cta-right input[type="submit"],
.cta-right button[type="submit"] {
  background: var(--accent); color: var(--paper);
  font: inherit; font-size: 14px; font-weight: 500;
  padding: 10px 20px; border-radius: 999px; border: none;
  cursor: pointer; transition: background .15s;
}
.cta-right .wpcf7-submit:hover,
.cta-right input[type="submit"]:hover { background: var(--accent-2); }

.cta-right .wpcf7-response-output {
  margin-top: 16px; font-size: 13px; padding: 10px 16px; border-radius: var(--r-sm);
  border-color: rgba(245,241,234,.3) !important;
}
.cta-right .wpcf7-mail-sent-ok { background: rgba(45,107,74,.3); color: var(--paper); }
.cta-right .wpcf7-validation-errors { background: rgba(196,98,45,.3); color: var(--paper); }
.cta-right .wpcf7-not-valid-tip { color: #e6a574; font-size: 12px; }

.form-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.submit-row { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; gap: 16px; }
.submit-row .small { font-family: 'Geist Mono'; font-size: 11px; color: rgba(245,241,234,.5); letter-spacing: .04em; }

.cf7-missing {
  color: rgba(245,241,234,.7); font-size: 14px; line-height: 1.5;
  border: 1px dashed rgba(245,241,234,.2); border-radius: var(--r-md);
  text-align: center; padding: 24px;
}
.cf7-missing strong { color: var(--paper); }

/* ── footer ─────────────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--line); padding: 56px 0 32px; color: var(--ink-2); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.foot-col h4 { font-family: 'Geist Mono'; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 16px; font-weight: 500; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.foot-col li a:hover { color: var(--ink); }

.foot-brand { margin-bottom: 16px; }
.foot-brand .custom-logo { height: 28px; width: auto; }
.foot-brand .custom-logo-link { display: inline-flex; align-items: center; }

.foot-tagline { font-size: 14px; max-width: 32ch; color: var(--ink-2); line-height: 1.5; }
.foot-brand-big {
  font-size: clamp(80px, 14vw, 200px); line-height: .85; letter-spacing: -0.05em;
  color: var(--ink); font-weight: 400; margin-top: 56px; margin-bottom: -10px;
  font-family: 'Fraunces', 'Geist', serif; font-style: italic; user-select: none;
}
.foot-bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--line);
  font-family: 'Geist Mono'; font-size: 11px; color: var(--ink-3); letter-spacing: .04em;
}
.foot-bot .left { display: flex; gap: 16px; }

/* ── blog / journal ─────────────────────────────────────────────── */
.blog-hero { padding: 64px 0 48px; border-bottom: 1px solid var(--line); margin-bottom: 56px; }
.blog-title { font-size: clamp(36px, 5vw, 72px); font-weight: 400; letter-spacing: -0.03em; margin-top: 16px; }
.blog-archive-desc { color: var(--ink-2); font-size: 16px; max-width: 52ch; margin-top: 16px; }

.post-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; padding-bottom: 72px;
}
.post-card { display: flex; flex-direction: column; }
.post-card-thumb { display: block; overflow: hidden; border-radius: var(--r-md); margin-bottom: 20px; aspect-ratio: 16/9; }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.post-card-thumb:hover img { transform: scale(1.03); }
.post-card-body { display: flex; flex-direction: column; flex: 1; }
.post-card-cats { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.post-cat { font-family: 'Geist Mono'; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); padding: 3px 8px; border: 1px solid var(--line); border-radius: 999px; }
.post-cat:hover { color: var(--ink); border-color: var(--ink-2); }
.post-card-title { font-size: 20px; font-weight: 500; letter-spacing: -0.015em; line-height: 1.15; margin-bottom: 10px; }
.post-card-title a:hover { color: var(--accent); }
.post-card-excerpt { font-size: 14px; color: var(--ink-2); line-height: 1.55; margin-bottom: 16px; flex: 1; }
.post-card-meta { font-size: 12px; color: var(--ink-3); margin-top: auto; display: flex; gap: 8px; }

/* ── single post ────────────────────────────────────────────────── */
.post-hero { padding: 56px 0 40px; border-bottom: 1px solid var(--line); margin-bottom: 48px; }
.post-meta-top { margin-bottom: 18px; }
.post-title { font-size: clamp(32px, 4.5vw, 64px); font-weight: 400; letter-spacing: -0.03em; line-height: 1.05; }
.post-byline { display: flex; align-items: center; gap: 10px; margin-top: 20px; font-size: 14px; color: var(--ink-2); flex-wrap: wrap; }
.post-author-avatar { border-radius: 50%; vertical-align: middle; }
.post-author { font-weight: 500; }
.post-sep { color: var(--line-2); }
.post-thumbnail-wrap { margin-bottom: 48px; }
.post-featured-image { width: 100%; height: auto; border-radius: var(--r-lg); display: block; }

/* ── entry content (Gutenberg) ──────────────────────────────────── */
.entry-content { padding: 56px 0; }
.entry-content > * { max-width: 65ch; margin-left: auto; margin-right: auto; margin-bottom: 1.5rem; }
.entry-content > h1, .entry-content > h2, .entry-content > h3, .entry-content > h4 { margin-top: 2.5rem; }
.entry-content p { font-size: 17px; line-height: 1.65; color: var(--ink-2); }
.entry-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.entry-content a:hover { color: var(--accent-2); }
.entry-content h1 { font-size: clamp(28px, 3.5vw, 48px); }
.entry-content h2 { font-size: clamp(24px, 2.8vw, 36px); }
.entry-content h3 { font-size: 24px; }
.entry-content h4 { font-size: 20px; }
.entry-content ul, .entry-content ol { padding-left: 1.5em; color: var(--ink-2); font-size: 17px; line-height: 1.65; }
.entry-content li + li { margin-top: .5em; }
.entry-content blockquote {
  border-left: 3px solid var(--accent); margin-left: 0; padding-left: 24px;
  color: var(--ink-2); font-style: italic; font-family: 'Fraunces', serif;
}
.entry-content code { font-family: 'Geist Mono', monospace; font-size: .9em; background: var(--bg-2); padding: 2px 6px; border-radius: var(--r-sm); }
.entry-content pre { background: var(--green); color: var(--paper); padding: 24px; border-radius: var(--r-md); overflow-x: auto; }
.entry-content pre code { background: none; padding: 0; }
.entry-content img { max-width: 100%; height: auto; border-radius: var(--r-md); }
.entry-content hr { border: 0; border-top: 1px solid var(--line); margin: 3rem auto; }
.entry-content figure { margin: 0; }
.entry-content figcaption { font-size: 13px; color: var(--ink-3); text-align: center; margin-top: 10px; }

/* Gutenberg wide / full alignments */
.entry-content .alignwide { max-width: min(calc(100vw - 2 * var(--pad-x)), 1080px); }
.entry-content .alignfull { max-width: 100vw; margin-left: calc(-1 * var(--pad-x)); margin-right: calc(-1 * var(--pad-x)); }
.entry-content .alignleft { float: left; margin-right: 1.5rem; }
.entry-content .alignright { float: right; margin-left: 1.5rem; }
.entry-content .aligncenter { text-align: center; }

/* ── page templates ─────────────────────────────────────────────── */
.page-hero { padding: 64px 0 48px; border-bottom: 1px solid var(--line); }
.page-hero-inner { display: flex; flex-direction: column; gap: 24px; }
.page-hero-image { width: 100%; max-height: 480px; object-fit: cover; border-radius: var(--r-lg); }
.page-title { font-size: clamp(36px, 5vw, 72px); font-weight: 400; letter-spacing: -0.03em; }

/* ── post footer & navigation ───────────────────────────────────── */
.post-footer { padding: 48px 0 56px; border-top: 1px solid var(--line); margin-top: 48px; }
.post-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 32px; }
.post-tag { font-family: 'Geist Mono'; font-size: 11px; padding: 4px 10px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--ink-2); }
.post-tag:hover { border-color: var(--ink); color: var(--ink); }

.post-navigation .nav-links { display: flex; flex-direction: column; gap: 16px; }
.nav-previous, .nav-next { margin-bottom: 4px; }
.nav-direction { display: block; font-family: 'Geist Mono'; font-size: 11px; color: var(--ink-3); letter-spacing: .08em; margin-bottom: 4px; }
.nav-title { font-size: 16px; font-weight: 500; color: var(--ink); }
.nav-title:hover { color: var(--accent); }

/* ── pagination ─────────────────────────────────────────────────── */
.pagination-wrap { padding-bottom: 72px; }
.pagination .nav-links { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.page-numbers {
  font-family: 'Geist Mono'; font-size: 13px;
  padding: 8px 14px; border-radius: var(--r-sm);
  border: 1px solid var(--line); color: var(--ink-2); background: transparent;
  transition: background .15s, color .15s;
}
.page-numbers:hover { background: var(--paper); color: var(--ink); }
.page-numbers.current { background: var(--green); color: var(--paper); border-color: var(--green); }
.page-numbers.dots { border: 0; padding: 8px 4px; }

/* ── 404 page ───────────────────────────────────────────────────── */
.error-404 { padding: 96px 0; }
.error-404-inner { max-width: 560px; }
.error-title { font-size: clamp(40px, 6vw, 80px); font-weight: 400; letter-spacing: -0.035em; margin-top: 20px; }
.error-desc { font-size: 18px; color: var(--ink-2); line-height: 1.5; margin-top: 20px; max-width: 44ch; }
.error-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.error-404 .search-form { margin-top: 40px; display: flex; gap: 0; max-width: 400px; }
.error-404 .search-field { flex: 1; background: var(--paper); border: 1px solid var(--line); border-right: 0; padding: 10px 16px; border-radius: var(--r-sm) 0 0 var(--r-sm); font: inherit; font-size: 15px; outline: none; color: var(--ink); }
.error-404 .search-submit { background: var(--green); color: var(--paper); border: 0; padding: 10px 18px; border-radius: 0 var(--r-sm) var(--r-sm) 0; cursor: pointer; font: inherit; font-size: 14px; }

/* ── no posts ───────────────────────────────────────────────────── */
.no-posts { padding: 72px 0; text-align: center; color: var(--ink-2); }
.no-posts p { font-size: 18px; margin-bottom: 24px; }

/* ── page links ─────────────────────────────────────────────────── */
.page-links { font-size: 14px; margin-top: 24px; }
.page-links .page-number { padding: 4px 10px; border: 1px solid var(--line); border-radius: var(--r-sm); margin: 0 2px; }

/* ── animations ─────────────────────────────────────────────────── */

/* Dot pulse (CSS-only, no GSAP needed) */
@keyframes ec-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .55; transform: scale(.82); }
}
.eyebrow .dot { animation: ec-pulse-dot 3s ease-in-out infinite; }

/* Nav link underline slide (CSS hover, no GSAP needed) */
.nav-link-anim { position: relative; }
.nav-link-anim::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--ink);
  transition: width .25s cubic-bezier(.16,1,.3,1);
}
.nav-link-anim:hover::after { width: 100%; }

/* Respect user motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ── responsive ─────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .collage { aspect-ratio: 16/13; max-width: 720px; }
  .sec-head { grid-template-columns: 1fr; gap: 16px; }
  .how-grid { grid-template-columns: 1fr; }
  .how-step { border-right: 0; border-bottom: 1px solid var(--line); }
  .how-step:last-child { border-bottom: 0; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .multi-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price { border-right: 0; border-bottom: 1px solid var(--line); }
  .cta-card { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; }
  .nav-outer .nav-links { display: none; }
  .wrap.nav { display: flex; justify-content: space-between; align-items: center; }
  .nav-outer .nav-links.nav-open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 64px; left: 0; right: 0;
    background: color-mix(in oklab, var(--bg) 96%, transparent);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    z-index: 40; padding: 16px var(--pad-x);
  }
  .nav-outer .nav-links.nav-open a { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .logos-grid { grid-template-columns: 1fr; }
  .logos-row--3 { grid-template-columns: 1fr; gap: 16px; }
  .hero-meta { grid-template-columns: 1fr; gap: 16px; }
  .hero-meta .cell { border-right: 0; border-bottom: 1px dashed var(--line-2); padding-bottom: 14px; }
  .post-grid { grid-template-columns: 1fr 1fr; }
  .post-hero { padding: 40px 0 32px; }
}

@media (max-width: 640px) {
  .feat-grid { grid-template-columns: 1fr; }
  .form-grid2 { grid-template-columns: 1fr; }
  .submit-row { flex-direction: column; align-items: flex-start; }
  .cta-right { padding: 32px; }
  .cta-left { padding: 32px; }
  .cta-meta { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .logos-row--3 { grid-template-columns: 1fr; }
  .faq-q { font-size: 16px; grid-template-columns: 48px 1fr 20px; gap: 12px; }
  .faq-a > div { padding-left: 60px; }
}
