/* ============================================================================
   Datura Holdings LLC — landing page
   Design system: "Modernist" — flat, zero radius, 2px rules, flush-left,
   grayscale photography. Tokens derive from the client's logo.
   Rebuilt from docs/handoff/README.md. Do not introduce radii, shadows,
   gradients, centred text, or financial figures.
   ========================================================================== */

@font-face {
  font-family: 'Archivo';
  src: url('/assets/fonts/archivo-latin.woff2') format('woff2');
  font-weight: 100 900;          /* variable axis — one file covers 400/500/800 */
  font-stretch: 100%;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --navy:        #0a1728;
  --cream:       #f4f2ed;
  --surface:     #eae5da;
  --ink:         #101c2b;
  --gold:        #c19a4b;
  --gold-hover:  #d8b365;
  /* Two accent golds are darkened from the handoff's #a9812f / #8a6a24. At the
     original values the card numerals sat at 3.20:1 and the section kickers at
     4.42:1 on cream — under WCAG AA for small text, and the stated audience is
     owner-operators typically 50+. Hue is unchanged; only lightness moved. */
  --gold-dark:   #896826;   /* was #a9812f — 3.20:1, now 4.61:1 */
  --gold-link:   #7d5f1d;   /* was #8a6a24 — 4.42:1, now 5.32:1 */
  --divider:     rgba(16, 28, 43, 0.40);

  /* copy tints, taken verbatim from the handoff — do not re-derive */
  --on-navy-82:  rgba(244, 242, 237, 0.82);
  --on-navy-70:  rgba(244, 242, 237, 0.70);
  --on-navy-45:  rgba(244, 242, 237, 0.45);
  --on-navy-22:  rgba(244, 242, 237, 0.22);
  --ink-82:      rgba(16, 28, 43, 0.82);
  --ink-78:      rgba(16, 28, 43, 0.78);
  --ink-72:      rgba(16, 28, 43, 0.72);
  --ink-63:      rgba(16, 28, 43, 0.63);   /* was 0.60 — 4.36:1, now 4.63:1 */
  --gold-rule:   rgba(193, 154, 75, 0.45);
  --gold-rule-40:rgba(193, 154, 75, 0.40);

  --pad: 48px;               /* section horizontal padding */
  --font: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

/* An author `display` rule beats the UA stylesheet's [hidden] { display: none },
   so anything hidden with the attribute still paints unless this is stated. */
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
}

img, video { max-width: 100%; display: block; }
h1, h2, h3, p { margin: 0; }
a { color: var(--gold-link); }
a:hover { color: var(--ink); }
::selection { background: rgba(193, 154, 75, 0.35); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--navy); color: var(--cream);
  padding: 12px 20px; text-decoration: none;
  font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
}
.skip-link:focus { left: 0; color: var(--cream); }

/* ── Type roles ───────────────────────────────────────────────────────────── */

h1 {
  font-size: clamp(40px, 5.4vw, 66px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin: 0 0 28px;
}

.h2 {
  font-size: clamp(28px, 3.1vw, 38px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: 22ch;
}
.h2--lg { font-size: clamp(30px, 3.7vw, 46px); line-height: 1.04; max-width: 20ch; }
.h2--xl { font-size: clamp(32px, 4.2vw, 52px); line-height: 1.03; max-width: 18ch; }

.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-link);
  margin: 0 0 18px;
}
.eyebrow--gold   { color: var(--gold); letter-spacing: .28em; }
.eyebrow--onGold { color: rgba(10, 23, 40, 0.78); }
.eyebrow--dashed {
  display: flex; align-items: center; gap: 14px;
  letter-spacing: .32em; color: var(--gold);
  margin-bottom: 36px; max-width: none;
}
.dash { width: 44px; height: 2px; background: var(--gold); flex: none; }

.lead { font-size: clamp(17px, 1.4vw, 19px); line-height: 1.55; max-width: 52ch; }
.lead--ink { max-width: 64ch; color: var(--ink); }
.lead--ink + .lead--ink { margin-top: 16px; }

.body-muted { color: var(--ink-82); max-width: 42ch; }
.body-muted + .body-muted { margin-top: 14px; }
.body-muted--narrow { max-width: 34ch; color: var(--ink-72); }

.statement {
  font-weight: 800;
  font-size: clamp(21px, 2.1vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 26ch;
}
.statement--sm { font-size: clamp(20px, 1.9vw, 23px); line-height: 1.2; }
.statement--md { font-size: clamp(21px, 2vw, 24px); line-height: 1.4; margin-bottom: 18px; }

.note { font-size: 14px; max-width: 34ch; color: var(--ink-72); }

/* ── Buttons ──────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 17px 26px;
  font-family: var(--font);
  font-weight: 800; font-size: 13px;
  letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none;
  border: 0; border-radius: 0;
  cursor: pointer;
  transition: background-color 120ms ease, color 120ms ease, border-color 120ms ease;
}
.btn--gold  { background: var(--gold); color: var(--navy); }
.btn--gold:hover  { background: var(--gold-hover); color: var(--navy); }
.btn--navy  { background: var(--navy); color: var(--cream); padding: 16px 24px; }
.btn--navy:hover  { background: var(--ink); color: var(--cream); }
.btn--sm { padding: 11px 18px; font-size: 12px; }
.btn--lg { padding: 19px 30px; font-size: 14px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ── Header ───────────────────────────────────────────────────────────────── */

.site-header {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 14px var(--pad);
  background: var(--navy); color: var(--cream);
  border-bottom: 2px solid var(--gold);
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: inherit; }
.brand:hover { color: inherit; }
.brand__mark { width: 44px; height: 44px; object-fit: cover; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-weight: 800; font-size: 15px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--cream);
}
.brand__name--sm { font-size: 12px; }
.brand__tag {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
}
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav > a:not(.btn) {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cream); text-decoration: none;
}
.site-nav > a:not(.btn):hover { color: var(--gold); }

/* ── Hero ─────────────────────────────────────────────────────────────────── */

.hero {
  display: grid; grid-template-columns: 1.35fr 1fr;
  background: var(--navy); color: var(--cream);
}
.hero__copy { padding: 88px var(--pad) 72px; border-right: 2px solid var(--gold-rule); }
.hero .lead { color: var(--on-navy-82); margin-bottom: 36px; }
.hero__mark { display: flex; align-items: center; justify-content: center; padding: 48px; }
.hero__mark img { width: 100%; max-width: 380px; height: auto; }

/* ── Rule system ──────────────────────────────────────────────────────────────
   Cell rules are drawn by a 1px grid gap over a divider-coloured ground, so they
   stay correct at every column count instead of leaving dangling right-borders
   when the grid reflows. */

.ruled { background: var(--divider); gap: 1px; border-bottom: 2px solid var(--divider); }
.ruled--top { border-top: 2px solid var(--divider); }
.ruled > * { background: var(--cream); }

.grid { display: grid; }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* ── Credibility bar ──────────────────────────────────────────────────────── */

/* Compacted: the four claims read as one tight band under the hero rather than
   a full-height section of their own. */
.statbar { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stat { padding: 18px 24px 20px; }
.stat__figure { font-weight: 800; font-size: clamp(16px, 1.45vw, 19px); line-height: 1.15; letter-spacing: -0.02em; }
.stat__caption {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-63); margin-top: 5px;
}

/* ── Split sections ───────────────────────────────────────────────────────── */

.split { display: grid; border-bottom: 2px solid var(--divider); }
.split--about { grid-template-columns: 0.62fr 1.38fr; }
.split--vsl   { grid-template-columns: 0.8fr 1.2fr; }
.split--faq   { grid-template-columns: 1fr 1fr; }

.split__aside { padding: 64px 40px 64px var(--pad); border-right: 1px solid var(--divider); }
.split__body  { padding: 64px var(--pad) 64px 40px; }
.split--vsl .split__aside { padding-top: 72px; padding-bottom: 72px; }
.split--vsl .split__body  { padding: 56px var(--pad) 56px 40px; display: flex; flex-direction: column; gap: 14px; }
.split--faq .split__aside { padding: 72px var(--pad); background: var(--surface); }
.split--faq .split__body  { padding: 56px var(--pad); }
.split__aside--surface { background: var(--surface); }


/* ── Video sales letter ───────────────────────────────────────────────────── */

.vsl__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: var(--navy);
  border: 1px solid rgba(16, 28, 43, 0.55);
  overflow: hidden;
}
.vsl__video { width: 100%; height: 100%; object-fit: cover; background: var(--navy); }

.vsl__play {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  background: rgba(10, 23, 40, 0.72);
  border: 0; cursor: pointer;
  font-family: var(--font);
}
.vsl__play[hidden] { display: none; }
.vsl__play-mark {
  width: 76px; height: 76px; flex: none;
  border: 2px solid var(--gold);
  background: rgba(10, 23, 40, 0.55);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 120ms ease;
}
.vsl__play-mark::after {
  content: ""; width: 0; height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 21px solid var(--gold);
  margin-left: 5px;
}
.vsl__play:hover .vsl__play-mark { background: rgba(193, 154, 75, 0.18); }
.vsl__play-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--cream); background: var(--navy); padding: 7px 12px;
}
.vsl__fallback { color: var(--cream); padding: 24px; }

.vsl__cta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 20px;
  margin-top: 10px; padding-top: 20px; border-top: 2px solid var(--divider);
}

/* ── Generic section + card grids ─────────────────────────────────────────── */

.section { border-bottom: 2px solid var(--divider); }
.section--flush { border-bottom: 2px solid var(--divider); }

.section__head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 32px;
  padding: 72px var(--pad) 32px;
}
/* Funding is a list of eight, so it is compacted: a tighter intro and shallower
   cells keep all eight readable as one block instead of a long scroll. */
.section__head--funding {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px;
  align-items: start; padding: 52px var(--pad) 26px;
}
.section__head--funding .h2 { font-size: clamp(26px, 2.7vw, 34px); }
.section__head--funding .body-muted {
  max-width: none; color: var(--ink-78); padding-top: 6px; font-size: 15px;
}

.cell { min-width: 0; padding: 18px 24px 20px; }
.cell__title { font-weight: 800; font-size: 16px; line-height: 1.25; }
.cell__note  { font-size: 13px; margin-top: 4px; color: rgba(16, 28, 43, 0.68); }

.card { min-width: 0; padding: 38px 32px 42px; }
.card__num {
  font-weight: 800; font-size: 12px; letter-spacing: 0.2em;
  color: var(--gold-dark); margin-bottom: 22px;
}
/* Acquisition criteria use a gold rule instead of a numeral — the list is a set
   of qualities, not an ordered sequence, and the rule matches the hero's dash. */
.card__rule {
  display: block; width: 34px; height: 2px;
  background: var(--gold-dark); margin-bottom: 22px;
}
.card__title { font-size: clamp(18px, 1.6vw, 20px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }
.card__body  { font-size: 15px; color: var(--ink-72); }

/* ── Navy band (why sell to us) ───────────────────────────────────────────── */

.band {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--navy); color: var(--cream);
}
.band__copy { min-width: 0; padding: 80px var(--pad); border-right: 2px solid var(--gold-rule-40); }
.band__copy .h2 { margin-bottom: 24px; }
.band__para { max-width: 46ch; font-size: 18px; color: var(--on-navy-82); }
.band__para + .band__para { margin-top: 16px; }
/* No aspect-ratio here — it stops the cell filling the row and leaves a void. */
.band__photo { position: relative; min-width: 0; min-height: 420px; overflow: hidden; }
.band__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1);   /* contrast is baked into the asset; guards future colour swaps */
}

.closer {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  padding: 56px var(--pad);
}
.closer__note { align-self: end; max-width: 46ch; color: rgba(16, 28, 43, 0.75); }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */

.faq__row { padding: 18px 0; border-bottom: 1px solid var(--divider); }
.faq__q { font-weight: 800; font-size: 16px; margin-bottom: 6px; }
.faq__a { font-size: 15px; color: var(--ink-72); }

/* ── Booking ──────────────────────────────────────────────────────────────── */

/* One column until a real booking calendar exists — an empty bordered panel
   labelled "live availability" promises something that is not there. */
.book {
  display: grid; grid-template-columns: 1fr; align-items: stretch;
  background: var(--gold); color: var(--navy);
}
.book--with-calendar { grid-template-columns: 1.1fr 1fr; }
.book__copy { padding: 80px var(--pad); }
.book__copy .h2 { margin-bottom: 22px; }
.book__para {
  max-width: 44ch; font-size: 18px; margin-bottom: 34px;
  color: rgba(10, 23, 40, 0.82);
}
.book__panel {
  border-left: 2px solid var(--navy);
  padding: 48px;
  display: flex; flex-direction: column; gap: 16px;
  background: var(--cream);
}
.book__slot {
  flex: 1; min-height: 340px;
  border: 1px solid rgba(16, 28, 43, 0.45);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.book__slot iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

/* ── Footer ───────────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--navy); color: var(--on-navy-70);
  padding: 40px var(--pad);
  display: flex; flex-wrap: wrap; gap: 24px;
  align-items: center; justify-content: space-between;
  border-top: 2px solid var(--gold);
}
.site-footer__meta {
  display: flex; flex-wrap: wrap; gap: 28px; align-items: center;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
}
.site-footer__meta a { color: inherit; text-decoration: none; }
.site-footer__meta a:hover { color: var(--gold); }

/* ==========================================================================
   Responsive. The handoff did not design this; breakpoints follow its
   stated intent: >=1200px as drawn; 768-1199px collapse 3-4 col grids to 2 and
   two-column bands to stacked (photo above copy, 16:9); <768px single column.
   Every rule and the flush-left alignment are kept at all sizes.
   ========================================================================== */

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1.15fr 0.85fr; }
  .split--vsl { grid-template-columns: 1fr 1fr; }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section__head--funding { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 900px) {
  :root { --pad: 32px; }

  .site-nav { gap: 20px; }
  .site-nav > a:not(.btn) { display: none; }   /* one-page scroll: the CTA is what matters */

  .hero { grid-template-columns: 1fr; }
  .hero__copy { border-right: 0; border-bottom: 2px solid var(--gold-rule); padding: 56px var(--pad) 48px; }
  .hero__mark { padding: 40px var(--pad); }
  .hero__mark img { max-width: 260px; }

  .statbar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .split { grid-template-columns: 1fr !important; }
  .split__aside {
    border-right: 0; border-bottom: 1px solid var(--divider);
    padding: 48px var(--pad);
  }
  .split__body { padding: 48px var(--pad); }
  .split--vsl .split__aside,
  .split--vsl .split__body,
  .split--faq .split__aside,
  .split--faq .split__body { padding: 48px var(--pad); }

  .section__head { flex-direction: column; align-items: flex-start; gap: 20px; padding: 56px var(--pad) 28px; }

  /* Photo above copy, 16:9 — per the handoff's stated stacking intent. */
  .band { grid-template-columns: 1fr; }
  .band__photo { order: -1; min-height: 0; aspect-ratio: 16 / 9; }
  .band__copy { border-right: 0; padding: 56px var(--pad); }

  .closer { grid-template-columns: 1fr; gap: 24px; padding: 48px var(--pad); }

  .book, .book--with-calendar { grid-template-columns: 1fr; }
  .book__copy { padding: 56px var(--pad); }
  .book__panel { border-left: 0; border-top: 2px solid var(--navy); padding: 32px var(--pad); }
}

@media (max-width: 560px) {
  :root { --pad: 24px; }

  /* The wordmark and the CTA cannot share a phone-width row without the
     wordmark wrapping into a cramped block. The header CTA is the one to go:
     the header is not sticky, so it is only ever on screen at the very top —
     where the hero's own "Book a confidential call" button already sits a
     few centimetres below. Brand identity stays, the duplicate ask goes. */
  .site-nav { display: none; }
  .brand__name { font-size: 13px; letter-spacing: .18em; }
  .brand__tag  { font-size: 9px; letter-spacing: .24em; }
  .brand__mark { width: 38px; height: 38px; }

  .statbar { grid-template-columns: 1fr; }
  .grid--3, .grid--4 { grid-template-columns: 1fr; }

  .btn { width: 100%; justify-content: space-between; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .site-nav .btn { width: auto; justify-content: center; }

  .vsl__play-label { letter-spacing: .18em; text-align: center; }
  .vsl__play-mark { width: 60px; height: 60px; }
  
  .card { padding: 32px 24px 36px; }
  .cell { padding: 24px 24px 26px; }
  .stat { padding: 24px; }

  .site-footer { flex-direction: column; align-items: flex-start; gap: 20px; }
  .site-footer__meta { flex-direction: column; gap: 10px; align-items: flex-start; }
}

@media print {
  .vsl__play, .site-nav, .book__slot { display: none; }
  body { background: #fff; color: #000; }
}
