:root {
  --paper: #f3efe6;
  --paper-2: #ebe5d8;
  --ink: #151412;
  --ink-2: #1f1d1a;
  --text: #2a2825;
  --muted: #6e6a62;
  --faint: #9a958b;
  --line: #d9d2c3;
  --accent: #ff4f2b;
  --mint: #cfe6d8;
  --radius: 14px;
  --ease: cubic-bezier(.2, .7, .1, 1);
  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;
  /* admin page compatibility */
  --bg-alt: var(--paper-2);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  margin: 0;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: #fff; }
h1, h2, h3, h4 { font-family: var(--display); color: var(--ink); line-height: 1.05; margin: 0 0 .5em; font-weight: 600; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.6rem, 5.6vw, 5rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); letter-spacing: -0.04em; }
h3 { font-size: 1.3rem; letter-spacing: -0.02em; line-height: 1.2; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
h1 em, h2 em { color: var(--accent); }
p { margin: 0 0 1em; }
a { color: inherit; }

.container { width: min(1200px, 100% - 40px); margin-inline: auto; }
.section { padding: 88px 0; position: relative; }
.section-alt { background: var(--paper-2); }
.section-dark { background: var(--ink); color: #cfc9bd; }
.section-dark h2, .section-dark h3 { color: var(--paper); }
.section-head { margin-bottom: 40px; }
.label { font-size: .82rem; font-weight: 500; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); margin-bottom: 18px; }
.section-dark .label { color: var(--faint); }
.muted { color: var(--muted); }
.faint { color: var(--faint); }
.small { font-size: .88rem; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 540px; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .95em 1.5em; border-radius: 999px; border: 1.5px solid var(--ink);
  background: var(--ink); color: var(--paper); font-weight: 500; text-decoration: none;
  cursor: pointer; font-size: .96rem; font-family: inherit; overflow: hidden; isolation: isolate;
  transition: color .35s var(--ease), border-color .35s, opacity .2s, transform .25s var(--ease);
}
.btn::before {
  content: ''; position: absolute; inset: 0; background: var(--accent); z-index: -1;
  transform: translateY(101%); border-radius: inherit; transition: transform .45s var(--ease);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { border-color: var(--accent); color: #fff; }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn:disabled { opacity: .3; cursor: not-allowed; }
.btn:disabled::before { display: none; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-sm { padding: .55em 1.1em; font-size: .88rem; }
.btn-block { width: 100%; }
.link-btn { background: none; border: 0; color: var(--muted); text-decoration: underline; cursor: pointer; font: inherit; font-size: .9rem; margin-top: 18px; padding: 0; }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--paper) 85%, transparent); backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color .3s; }
.nav.scrolled { border-color: var(--line); }
.nav-inner { display: flex; align-items: center; gap: 24px; height: 68px; }
.logo { font-family: var(--display); font-weight: 700; font-size: 1.2rem; text-decoration: none; color: var(--ink); letter-spacing: -0.03em; }
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo img { width: 32px; height: 32px; border-radius: 8px; flex: none; }
.nav-meta { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--muted); margin-right: auto; padding-left: 16px; border-left: 1px solid var(--line); }
.nav-meta b { font-weight: 500; color: var(--ink); font-variant-numeric: tabular-nums; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #2bb673; box-shadow: 0 0 0 0 rgba(43, 182, 115, .5); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(43, 182, 115, 0); } 100% { box-shadow: 0 0 0 0 rgba(43, 182, 115, 0); } }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a:not(.btn) { text-decoration: none; font-size: .93rem; position: relative; }
.nav-links a:not(.btn)::after { content: ''; position: absolute; left: 0; right: 0; bottom: -3px; height: 1.5px; background: var(--ink); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.nav-links a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle { display: none; background: none; border: 0; width: 36px; height: 36px; cursor: pointer; flex-direction: column; justify-content: center; gap: 6px; }
.nav-toggle span { display: block; height: 1.5px; background: var(--ink); transition: transform .3s; }

/* ---------- Hero ---------- */
.hero { padding: 56px 0 72px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.kicker { display: flex; align-items: center; gap: 12px; font-size: .92rem; color: var(--muted); margin-bottom: 28px; }
.pill { background: var(--ink); color: var(--paper); font-size: .75rem; font-weight: 500; padding: .35em .8em; border-radius: 999px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-points { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: .95rem; font-weight: 500; color: var(--ink); }
.hero-points li { display: flex; align-items: center; gap: 8px; }
.hero-points li::before { content: '✓'; width: 20px; height: 20px; border-radius: 50%; background: var(--accent); color: #fff; font-size: .7rem; display: grid; place-items: center; }

/* split headline animation */
.split .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }
.split .w > span { display: inline-block; transform: translateY(105%); transition: transform .9s var(--ease); transition-delay: calc(var(--i) * 45ms + .1s); }
.split.in .w > span { transform: none; }

/* demo window */
.demo { position: relative; }
.demo-window { background: #fff; border-radius: 16px; border: 1px solid var(--line); box-shadow: 0 30px 80px -30px rgba(21, 20, 18, .35), 0 2px 6px rgba(21, 20, 18, .05); overflow: hidden; transform: rotate(1.2deg); }
.demo-bar { display: flex; align-items: center; gap: 6px; padding: 12px 14px; background: #f7f4ee; border-bottom: 1px solid #ece6da; }
.demo-bar i { width: 10px; height: 10px; border-radius: 50%; background: #e0d9cc; }
.demo-url { flex: 1; margin-left: 12px; background: #fff; border: 1px solid #ece6da; border-radius: 999px; padding: 4px 12px; font-size: .78rem; color: var(--muted); min-height: 26px; display: flex; align-items: center; }
.caret { width: 1px; height: 13px; background: var(--ink); margin-left: 1px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.demo-body { --c: #ddd; --c2: #f4f4f4; padding: 18px 22px 24px; min-height: 360px; transition: background .6s; }
.demo-body > * { opacity: 0; transform: translateY(10px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.demo-body.s1 .d-nav, .demo-body.s2 .d-hero, .demo-body.s3 .d-cards { opacity: 1; transform: none; }
.demo-body.s2 .d-nav, .demo-body.s3 .d-nav, .demo-body.s3 .d-hero { opacity: 1; transform: none; }
.d-nav { display: flex; align-items: center; gap: 10px; margin-bottom: 26px; }
.d-logo { width: 54px; height: 14px; border-radius: 4px; background: var(--c); margin-right: auto; transition: background .6s; }
.d-nav span { width: 34px; height: 7px; border-radius: 4px; background: #e9e6e0; }
.d-hero { display: grid; grid-template-columns: 1.1fr 1fr; gap: 18px; align-items: center; margin-bottom: 22px; }
.d-tag { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--c); margin: 0 0 6px; font-weight: 600; min-height: 1em; transition: color .6s; }
.demo-body h4 { font-size: 1.45rem; line-height: 1.05; margin: 0 0 12px; min-height: 2.1em; letter-spacing: -0.03em; }
.d-line { height: 7px; border-radius: 4px; background: #eceae5; margin: 0 0 7px; }
.d-line.short { width: 65%; }
.d-btn { width: 92px; height: 26px; border-radius: 999px; background: var(--c); margin-top: 14px; transition: background .6s; }
.d-img { aspect-ratio: 1; border-radius: 12px; background: var(--c2); display: grid; place-items: center; transition: background .6s; position: relative; overflow: hidden; }
.d-img span { font-family: var(--serif); font-style: italic; font-size: 3.2rem; color: var(--c); transition: color .6s; }
.d-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.d-cards div { height: 58px; border-radius: 10px; background: var(--c2); transition: background .6s; }
.demo-note { position: absolute; left: -18px; bottom: -18px; background: var(--ink); color: var(--paper); font-size: .82rem; padding: .6em 1em; border-radius: 999px; display: flex; align-items: center; gap: 8px; box-shadow: 0 10px 30px rgba(0, 0, 0, .2); }
.demo-note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse-o 1.4s infinite; }
@keyframes pulse-o { 50% { opacity: .3; } }

/* ---------- Marquee ---------- */
.marquee { border-block: 1px solid var(--ink); background: var(--accent); color: #fff; overflow: hidden; padding: 16px 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee span { font-family: var(--display); font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; white-space: nowrap; padding: 0 28px; display: flex; align-items: center; gap: 56px; }
.marquee span::after { content: '✺'; font-size: 1rem; opacity: .8; margin-left: 28px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Work ---------- */
.case { display: grid; grid-template-columns: 1.35fr 1fr; gap: 64px; align-items: center; }
.case-media { position: relative; display: block; text-decoration: none; padding: 0 40px 40px 0; transform-style: preserve-3d; transition: transform .4s var(--ease); }
.browser { border-radius: 14px; overflow: hidden; background: var(--ink); box-shadow: 0 40px 80px -30px rgba(21, 20, 18, .45); border: 1px solid var(--ink); }
.browser-bar { display: flex; align-items: center; gap: 6px; padding: 11px 14px; background: var(--ink-2); }
.browser-bar i { width: 10px; height: 10px; border-radius: 50%; background: #3a3732; }
.browser-bar span { margin-left: 10px; font-size: .75rem; color: #8d877c; }
.browser-shot { aspect-ratio: 16 / 10; }
.live-frame { position: relative; overflow: hidden; background: #0b1a2a; }
.live-frame iframe { position: absolute; top: 0; left: 0; border: 0; transform-origin: 0 0; pointer-events: none; }
.phone { position: absolute; right: 0; bottom: 0; width: 26%; aspect-ratio: 390 / 844; border-radius: 26px; border: 6px solid var(--ink); background: var(--ink); overflow: hidden; box-shadow: 0 30px 60px -20px rgba(21, 20, 18, .5); transform: translateZ(40px); }
.phone .live-frame { width: 100%; height: 100%; border-radius: 20px; }
.case-cta { position: absolute; left: 20px; top: 60px; background: var(--paper); color: var(--ink); font-weight: 500; font-size: .88rem; padding: .6em 1.1em; border-radius: 999px; opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s var(--ease); box-shadow: 0 8px 24px rgba(0, 0, 0, .25); }
.case-media:hover .case-cta { opacity: 1; transform: none; }
.case-client { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--accent); margin-bottom: 6px; }
.case-info h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); letter-spacing: -0.035em; line-height: 1.1; }
.case-meta { display: grid; grid-template-columns: 1fr 1fr; margin: 28px 0; border-top: 1px solid var(--line); }
.case-meta div { padding: 14px 0; border-bottom: 1px solid var(--line); }
.case-meta dt { font-size: .78rem; color: var(--faint); text-transform: uppercase; letter-spacing: .1em; }
.case-meta dd { margin: 2px 0 0; font-weight: 500; color: var(--ink); }
.feature-tags { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.feature-tags li { font-size: .85rem; padding: .4em .9em; border: 1px solid var(--line); border-radius: 999px; }
.next-slot { margin-top: 48px; display: flex; align-items: center; gap: 24px; padding: 28px 32px; border: 1.5px dashed var(--line); border-radius: var(--radius); text-decoration: none; transition: border-color .3s, background .3s; }
.next-slot:hover { border-color: var(--ink); background: var(--paper-2); }
.next-plus { width: 56px; height: 56px; flex: none; border-radius: 50%; display: grid; place-items: center; font-size: 1.8rem; background: var(--ink); color: var(--paper); transition: transform .5s var(--ease), background .3s; }
.next-slot:hover .next-plus { transform: rotate(90deg); background: var(--accent); }
.next-slot b { font-family: var(--display); font-size: 1.25rem; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; }

/* ---------- Services ---------- */
.services { list-style: none; padding: 0; margin: 0; border-top: 1px solid #3a3732; }
.services li { position: relative; display: grid; grid-template-columns: 80px 1fr 1.3fr 40px; gap: 24px; align-items: center; padding: 20px 12px; border-bottom: 1px solid #3a3732; cursor: default; isolation: isolate; transition: color .4s var(--ease); }
.services li::before { content: ''; position: absolute; inset: 0; background: var(--paper); z-index: -1; transform: scaleY(0); transform-origin: bottom; transition: transform .5s var(--ease); }
.services li:hover::before { transform: scaleY(1); }
.services li:hover, .services li:hover h3 { color: var(--ink); }
.services h3 { margin: 0; font-size: clamp(1.4rem, 2.6vw, 2.2rem); letter-spacing: -0.04em; transition: color .4s, transform .5s var(--ease); }
.services li:hover h3 { transform: translateX(10px); }
.services p { margin: 0; font-size: .96rem; }
.s-num { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--faint); }
.s-arrow { font-size: 1.4rem; transition: transform .4s var(--ease), color .3s; text-align: right; }
.services li:hover .s-arrow { transform: rotate(45deg); color: var(--accent); }

/* ---------- Why ---------- */
.why { padding: 100px 0; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.why-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .4s var(--ease), box-shadow .4s; }
.why-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -20px rgba(21, 20, 18, .25); }
.why-card.accent { background: var(--mint); border-color: var(--mint); }
.why-card .big { font-family: var(--display); font-size: 4rem; font-weight: 600; color: var(--ink); letter-spacing: -0.05em; line-height: 1; margin-bottom: 18px; }
.why-card .big small { font-size: 1rem; letter-spacing: 0; margin-left: 6px; color: var(--muted); font-weight: 500; }
.why-card p:last-child { margin: 0; color: var(--muted); font-size: .95rem; }

/* ---------- Timeline ---------- */
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding-top: 36px; }
.timeline-line { position: absolute; top: 7px; left: 0; right: 0; height: 2px; background: var(--line); }
.timeline-line span { display: block; height: 100%; width: 100%; background: var(--ink); transform: scaleX(var(--p, 0)); transform-origin: left; }
.step { position: relative; }
.step-dot { position: absolute; top: -36px; left: 0; width: 16px; height: 16px; border-radius: 50%; background: var(--paper-2); border: 2px solid var(--ink); transition: background .3s; }
.step.lit .step-dot { background: var(--accent); border-color: var(--accent); }
.step-when { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--accent); margin-bottom: 6px; }
.step p:last-child { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Pricing menu ---------- */
.pricing-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; }
.menu { border-top: 2px solid var(--ink); }
.menu-item { border-bottom: 1px solid var(--line); }
.menu-item summary { list-style: none; display: flex; align-items: baseline; gap: 14px; padding: 26px 0; cursor: pointer; }
.menu-item summary::-webkit-details-marker { display: none; }
.menu-name { font-family: var(--display); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; color: var(--ink); letter-spacing: -0.035em; transition: color .3s; }
.menu-name em { font-size: .95rem; color: var(--accent); margin-left: 6px; letter-spacing: 0; }
.menu-dots { flex: 1; border-bottom: 2px dotted var(--faint); transform: translateY(-6px); min-width: 20px; }
.menu-price { font-family: var(--display); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; color: var(--ink); letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.menu-price small { font-size: .9rem; color: var(--muted); }
.menu-item summary:hover .menu-name { color: var(--accent); }
.menu-body { padding: 0 0 28px; animation: drop .5s var(--ease); }
@keyframes drop { from { opacity: 0; transform: translateY(-8px); } }
.menu-body p { color: var(--muted); max-width: 520px; }
.menu-body ul { list-style: none; padding: 0; margin: 0 0 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.menu-body li { font-size: .85rem; padding: .35em .85em; background: var(--paper-2); border-radius: 999px; }
.menu-link { font-weight: 500; text-decoration: none; border-bottom: 1.5px solid var(--ink); padding-bottom: 2px; transition: color .2s, border-color .2s; }
.ink { color: var(--ink); font-weight: 600; }
.menu-note { margin: 24px 0 0; font-size: .95rem; color: var(--muted); display: flex; gap: 12px; align-items: baseline; }
.menu-note span { flex: none; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: #fff; background: var(--accent); padding: .3em .7em; border-radius: 999px; }
.menu-link:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Booking ---------- */
.book-section { overflow: hidden; }
.book-section::before { content: 'hello'; position: absolute; right: -2vw; top: 40px; font-family: var(--serif); font-style: italic; font-size: 22vw; line-height: 1; color: rgba(243, 239, 230, .035); pointer-events: none; }
.book-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; position: relative; }
.book-grid > * { min-width: 0; }
.book-copy { position: sticky; top: 110px; }
.book-points { list-style: none; padding: 0; margin: 28px 0; }
.book-points li { padding: 12px 0; border-bottom: 1px solid #3a3732; display: flex; gap: 12px; align-items: center; color: var(--paper); }
.book-points li::before { content: '→'; color: var(--accent); }
.book-card { background: var(--paper); color: var(--text); border-radius: 20px; padding: 32px; box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .6); }
.book-step { font-size: .9rem; font-weight: 600; color: var(--ink); margin: 0 0 12px; display: flex; align-items: center; gap: 10px; }
.book-step span { width: 22px; height: 22px; border-radius: 50%; background: var(--ink); color: var(--paper); font-size: .72rem; display: grid; place-items: center; }
.book-step:not(:first-child) { margin-top: 26px; }
.days { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: thin; scroll-snap-type: x mandatory; }
.day {
  flex: 0 0 auto; min-width: 66px; padding: 10px 6px; border-radius: 12px; border: 1px solid var(--line); background: #fff;
  cursor: pointer; text-align: center; font-family: inherit; color: var(--muted); scroll-snap-align: start;
  transition: border-color .2s, background .25s, color .25s, transform .25s var(--ease);
}
.day b { display: block; font-family: var(--display); font-size: 1.3rem; font-weight: 600; color: var(--ink); line-height: 1.25; transition: color .25s; }
.day small { display: block; font-size: .72rem; }
.times { display: grid; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: 8px; }
.slot { padding: 10px; border-radius: 10px; border: 1px solid var(--line); background: #fff; cursor: pointer; font-family: inherit; font-size: .9rem; color: var(--ink); transition: border-color .2s, background .25s, color .25s, transform .25s var(--ease); animation: pop .4s var(--ease) both; animation-delay: calc(var(--i, 0) * 18ms); }
@keyframes pop { from { opacity: 0; transform: translateY(6px); } }
.day:hover, .slot:hover { border-color: var(--ink); transform: translateY(-2px); }
.day.active, .slot.active { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.day.active b { color: var(--paper); }
.day .open-count { display: block; font-family: inherit; font-style: normal; font-size: .66rem; margin-top: 4px; color: var(--faint); }
.day.active .open-count { color: #bdb7ab; }
.slot.taken { background: var(--paper-2); border-style: dashed; color: var(--faint); text-decoration: line-through; cursor: not-allowed; }
.slot.taken:hover { transform: none; border-color: var(--line); }
.book-form { margin-top: 8px; }
.book-form label { display: block; font-size: .85rem; font-weight: 500; color: var(--ink); margin-bottom: 14px; }
.optional { color: var(--faint); font-weight: 400; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
input, select, textarea {
  display: block; width: 100%; margin-top: 6px; padding: .75em .85em; border-radius: 10px; border: 1px solid var(--line);
  font: inherit; font-size: .95rem; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(21, 20, 18, .08); }
textarea { resize: vertical; }
.selected { padding: 12px 14px; border-radius: 10px; background: var(--paper-2); font-size: .92rem; color: var(--muted); transition: background .3s, color .3s; }
.selected.ok { background: var(--mint); color: var(--ink); }
.error { color: #c0362c; font-size: .9rem; min-height: 1em; margin: 0 0 .75em; }
.confirm { padding: 12px 0; }
.confirm h3 { font-size: 2rem; letter-spacing: -0.04em; }
.confirm #confirmWhen { font-weight: 600; color: var(--ink); }
.confirm-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.check svg { width: 56px; height: 56px; margin-bottom: 16px; }
.check circle { fill: none; stroke: var(--accent); stroke-width: 2.5; stroke-dasharray: 151; stroke-dashoffset: 151; animation: draw .7s var(--ease) forwards; }
.check path { fill: none; stroke: var(--ink); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 36; stroke-dashoffset: 36; animation: draw .4s .5s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; }
.faq { border-top: 2px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-family: var(--display); font-size: 1.2rem; font-weight: 500; color: var(--ink); letter-spacing: -0.02em; list-style: none; display: flex; justify-content: space-between; gap: 16px; padding: 24px 0; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.5rem; line-height: 1; transition: transform .4s var(--ease); color: var(--accent); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 24px; color: var(--muted); max-width: 60ch; animation: drop .5s var(--ease); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--paper); padding: 64px 0 28px; border-top: 1px solid #2a2824; }
.footer-big { display: block; font-family: var(--display); font-size: clamp(3rem, 10vw, 9rem); font-weight: 600; letter-spacing: -0.06em; line-height: .95; text-decoration: none; margin-bottom: 48px; transition: color .3s; }
.footer-big em { color: var(--accent); }
.footer-big .arrow { display: inline-block; transition: transform .5s var(--ease); }
.footer-big:hover .arrow { transform: translateX(20px) rotate(-45deg); }
.footer-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid #2f2d29; }
.footer .logo { color: var(--paper); }
.footer a.small { text-decoration: none; }

/* ---------- Scroll reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  .marquee-track { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .case, .pricing-grid, .faq-grid, .book-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; row-gap: 56px; }
  .timeline-line { display: none; }
  .services li { grid-template-columns: 50px 1fr 30px; }
  .services li p { grid-column: 2 / 3; }
  .services li .s-arrow { grid-row: 1; grid-column: 3; }
  .book-copy { position: static; }
  .demo-window { transform: none; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .hero { padding: 32px 0 56px; }
  .nav-meta { display: none; }
  .nav-inner { justify-content: space-between; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 8px 20px 20px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { padding: 12px 0; }
  .nav-links .btn { margin-top: 8px; }
  .demo-body { min-height: 300px; padding: 14px 16px 18px; }
  .demo-body h4 { font-size: 1.1rem; }
  .demo-note { left: 8px; }
  .why-grid, .timeline, .field-row, .case-meta { grid-template-columns: 1fr; }
  .case-media { padding: 0 24px 32px 0; }
  .next-slot { padding: 20px; }
  .book-card { padding: 20px; }
  .marquee span { font-size: 1.15rem; }
}

/* ---------- Team ---------- */
.team { padding-bottom: 0; }
.team-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: center; }
.people { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.person { margin: 0; }
.person:nth-child(2) { margin-top: 48px; }
.person-img { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); background: var(--paper-2); aspect-ratio: 1; }
.person-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s var(--ease); }
.person:hover .person-img img { transform: scale(1.05) rotate(-1deg); }
.person figcaption { padding-top: 14px; display: flex; flex-direction: column; }
.person b { font-family: var(--display); font-size: 1.3rem; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; }
.person span { font-size: .9rem; color: var(--muted); }
@media (max-width: 980px) {
  .team-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .people { gap: 12px; max-width: 420px; }
  .person:nth-child(2) { margin-top: 20px; }
  .person b { font-size: 1.1rem; }
  .person span { font-size: .8rem; }
}

/* ---------- Founders image in booking ---------- */
.duo { margin: 28px 0 8px; }
.duo img { width: 100%; display: block; border-radius: 16px; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .8s var(--ease); }
.duo:hover img { transform: scale(1.02); }
.duo figcaption { margin-top: 12px; font-size: .9rem; color: var(--faint); }
.duo figcaption b { color: var(--paper); font-weight: 500; }
.footer .logo img { box-shadow: 0 0 0 1px #3a3732; }
