/* BAID — shared styles for index, privacy and terms */

:root {
  --bg: #14130f;
  --bg-2: #1b1a15;
  --bg-3: #23211b;
  --line: #2e2c26;
  --ink: #f6f3ec;
  --muted: #a39f93;
  --faint: #77736a;
  --accent: #ff5a1f;
  --accent-2: #ff7a47;
  --on-accent: #14130f;
  --error: #ff8a65;
  --radius: 14px;
  --maxw: 1120px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--ink);
  font: 400 16px/1.65 var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; }
svg { display: block; flex: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

.skip { position: absolute; left: -9999px; top: 12px; }
.skip:focus { left: 16px; background: var(--ink); color: var(--bg); padding: 8px 12px; border-radius: 8px; z-index: 100; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(20, 19, 15, .88);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.logo {
  font-family: var(--font-display); font-weight: 600; font-size: 26px;
  letter-spacing: -.04em; line-height: 1; text-decoration: none; color: var(--ink);
}
.logo em { font-style: italic; color: var(--accent); padding-right: .04em; }
.nav-links { display: none; gap: 28px; font-size: 14px; color: var(--muted); }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--ink); }
@media (min-width: 880px) { .nav-links { display: flex; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 22px; border-radius: 999px;
  font: 600 15px/1.2 var(--font-body); text-decoration: none; white-space: nowrap;
  border: 1px solid transparent; cursor: pointer;
  transition: background-color .15s, border-color .15s, color .15s;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover { background: var(--accent-2); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--muted); }
.btn-sm { min-height: 40px; padding: 8px 16px; font-size: 14px; }
.btn[disabled] { opacity: .6; cursor: progress; }
/* When there's no demo line yet, the booking button becomes the main call to action */
.no-demo .js-book { background: var(--accent); color: var(--on-accent); border-color: transparent; }

/* ---------- Hero ---------- */
.hero { padding: 48px 0 72px; }
@media (min-width: 960px) { .hero { padding: 88px 0 112px; } }
.hero-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.08fr .92fr; gap: 64px; } }
.hero-copy { animation: rise 1s cubic-bezier(.2, .7, .2, 1) both; }

.eyebrow {
  display: inline-flex; align-items: flex-start; gap: 10px;
  font-size: 12px; font-weight: 600; line-height: 1.6; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}
.eyebrow::before { content: ""; flex: none; width: 6px; height: 6px; margin-top: .55em; border-radius: 50%; background: var(--accent); }
@media (max-width: 420px) { .eyebrow { letter-spacing: .13em; } }
.nowrap { white-space: nowrap; }

.display {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(40px, 7.2vw, 74px); line-height: 1.02; letter-spacing: -.03em;
  margin: 18px 0 22px;
}
.display em { font-style: italic; color: var(--accent); }
.lede { font-size: clamp(17px, 2vw, 19px); color: var(--muted); max-width: 56ch; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
@media (max-width: 519px) { .cta-row .btn { width: 100%; } }
.fineprint { font-size: 13px; color: var(--faint); margin-top: 16px; max-width: 54ch; }

/* ---------- Example call card ---------- */
.call-card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 22px; padding: 20px;
  box-shadow: 0 40px 90px -50px rgba(0, 0, 0, .9);
  animation: rise 1s .15s cubic-bezier(.2, .7, .2, 1) both;
}
@media (min-width: 768px) { .call-card { padding: 24px; } }
.call-head { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.pulse { width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 90, 31, .14); display: grid; place-items: center; }
.pulse::after {
  content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--accent);
  animation: pulse 2.2s infinite;
}
.call-title { font-weight: 600; font-size: 14px; line-height: 1.3; }
.call-sub { font-size: 12px; color: var(--faint); }
.transcript { list-style: none; display: grid; gap: 12px; padding: 18px 0; }
.line { display: grid; gap: 4px; max-width: 90%; }
.line .who { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }
.line p { background: var(--bg-3); border: 1px solid var(--line); padding: 10px 12px; border-radius: 12px; font-size: 14px; line-height: 1.5; }
.line.caller { justify-self: end; text-align: right; }
.line.caller p { background: transparent; text-align: left; }
.sms { border-top: 1px dashed var(--line); padding-top: 16px; }
.sms .label { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--faint); margin-bottom: 10px; }
.sms .label svg { width: 14px; height: 14px; color: var(--accent); }
.bubble {
  background: var(--accent); color: var(--on-accent);
  border-radius: 16px 16px 4px 16px; padding: 11px 14px;
  font-size: 14px; font-weight: 500; line-height: 1.45; max-width: 92%;
}
.call-card figcaption { font-size: 12px; color: var(--faint); margin-top: 14px; }

/* ---------- Sections ---------- */
.section { padding: 72px 0; border-top: 1px solid var(--line); }
@media (min-width: 960px) { .section { padding: 104px 0; } }
.section-head { max-width: 660px; margin-bottom: 40px; }
.kicker { font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(30px, 4.6vw, 48px); line-height: 1.08; letter-spacing: -.02em;
}
.title em { font-style: italic; color: var(--accent); }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 17px; }

.grid-3 { display: grid; gap: 16px; list-style: none; }
@media (min-width: 880px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-2 { display: grid; gap: 16px; list-style: none; }
@media (min-width: 760px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

.card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
@media (min-width: 960px) { .card { padding: 28px; } }
.card h3 { font-size: 18px; font-weight: 600; line-height: 1.35; margin: 14px 0 8px; }
.card p { color: var(--muted); font-size: 15px; }
.step-num { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 30px; line-height: 1; color: var(--accent); }
.icon-chip { width: 40px; height: 40px; border-radius: 12px; background: rgba(255, 90, 31, .12); color: var(--accent); display: grid; place-items: center; }
.icon-chip svg { width: 20px; height: 20px; }

/* ---------- Demo band ---------- */
.demo-band {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 24px;
  padding: 32px 22px; display: grid; gap: 24px; align-items: center;
  position: relative; overflow: hidden;
}
.demo-band::after {
  content: ""; position: absolute; right: -120px; top: -120px; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 31, .22), rgba(255, 90, 31, 0) 70%);
  pointer-events: none;
}
@media (min-width: 880px) { .demo-band { grid-template-columns: 1.25fr .75fr; padding: 48px; } }
.demo-band p { color: var(--muted); margin-top: 12px; max-width: 54ch; }
.demo-side { position: relative; z-index: 1; display: grid; gap: 12px; justify-items: start; }
@media (min-width: 880px) { .demo-side { justify-items: end; text-align: right; } }
.big-number {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(32px, 5.6vw, 52px); letter-spacing: -.02em; line-height: 1.05;
  color: var(--ink); text-decoration: none; white-space: nowrap;
}
.big-number:hover { color: var(--accent); }
.demo-side small { color: var(--faint); font-size: 13px; }

/* ---------- Honest-by-design list ---------- */
.checks { list-style: none; display: grid; gap: 18px; }
@media (min-width: 760px) { .checks { grid-template-columns: repeat(2, 1fr); gap: 22px 40px; } }
.checks li { display: grid; grid-template-columns: 24px 1fr; gap: 14px; color: var(--muted); }
.checks svg { width: 22px; height: 22px; color: var(--accent); margin-top: 2px; }
.checks strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 2px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; max-width: 840px; }
.faq details { background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: 0 20px; }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 0; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 24px; font-weight: 400; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { color: var(--muted); padding: 0 0 18px; max-width: 70ch; }

/* ---------- Contact + form ---------- */
.contact-grid { display: grid; gap: 36px; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: start; } }
.contact-copy p { color: var(--muted); margin-top: 14px; }
.contact-copy .alt { display: grid; gap: 12px; margin-top: 28px; justify-items: start; }
.contact-copy .alt a { color: var(--ink); }

.form-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 20px; padding: 22px; }
@media (min-width: 760px) { .form-card { padding: 32px; } }
.row-2 { display: grid; gap: 0 16px; }
@media (min-width: 620px) { .row-2 { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 14px; font-weight: 600; }
.field .opt { font-weight: 400; color: var(--faint); }
.input {
  width: 100%; background: var(--bg); color: var(--ink);
  border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px;
  font: 400 16px/1.4 var(--font-body);
}
textarea.input { min-height: 96px; resize: vertical; }
.input::placeholder { color: var(--faint); }
.input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255, 90, 31, .2); }

.consent {
  display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start;
  background: var(--bg); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px; margin: 4px 0 20px;
}
.consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--accent); cursor: pointer; }
.consent label { font-size: 13px; line-height: 1.6; color: var(--muted); cursor: pointer; }
.consent label strong { color: var(--ink); font-weight: 600; }
.consent a { color: var(--ink); }

.form-note { font-size: 12.5px; line-height: 1.55; color: var(--faint); margin-top: 14px; }
.form-note a { color: var(--muted); }
.form-status { margin-top: 12px; font-size: 14px; color: var(--muted); }
.form-status.error { color: var(--error); }
.form-card button[type="submit"] { width: 100%; }
@media (min-width: 620px) { .form-card button[type="submit"] { width: auto; } }

.hp { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.success h3 { font-family: var(--font-display); font-weight: 600; font-size: 28px; letter-spacing: -.02em; }
.success p { color: var(--muted); margin-top: 10px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 48px 0 40px; color: var(--faint); font-size: 14px; }
.footer-grid { display: grid; gap: 28px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer p { max-width: 42ch; }
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--ink); }
.site-footer .logo { color: var(--ink); }
.footer-links { display: grid; gap: 8px; list-style: none; }
.footer-title { color: var(--ink); font-weight: 600; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px; }
.copyright { margin-top: 36px; font-size: 12.5px; }

/* ---------- Legal pages ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: 40px 16px 96px; }
.legal h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(36px, 6vw, 54px); line-height: 1.06; letter-spacing: -.02em; margin: 8px 0 8px;
}
.legal .date { color: var(--faint); font-size: 14px; margin-bottom: 28px; }
.legal .toc {
  display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 14px;
  margin: 24px 0 8px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.legal .toc a { color: var(--muted); }
.legal h2 { font-size: 19px; font-weight: 600; line-height: 1.35; margin: 44px 0 10px; scroll-margin-top: 84px; }
.legal h3 { font-size: 16px; font-weight: 600; margin: 24px 0 6px; }
.legal p, .legal li { color: var(--muted); }
.legal p + p { margin-top: 12px; }
.legal ul { padding-left: 20px; margin-top: 8px; }
.legal li + li { margin-top: 8px; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal a { color: var(--ink); }
.callout { border-left: 2px solid var(--accent); padding: 6px 0 6px 16px; margin-top: 12px; }
.script {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; margin-top: 10px; color: var(--ink); font-style: italic;
}

/* ---------- Motion ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 90, 31, .55); }
  70% { box-shadow: 0 0 0 12px rgba(255, 90, 31, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 90, 31, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-copy, .call-card { animation: none; }
  .pulse::after { animation: none; }
}
