:root {
  --bg: #faf9f5;
  --surface: #f0eee6;
  --elevated: #e8e6dc;
  --text: #141413;
  --muted: #5e5d59;
  --cloud: #b0aea5;
  --line: #d1cfc5;
  --clay: #d97757;
  --clay-soft: #ebcece;
  --olive: #788c5d;
  --sky: #6a9bcc;
  --primary: #141413;
  --primary-fg: #faf9f5;
  --primary-hover: #3d3d3a;
  --scrim: color-mix(in srgb, #141413 58%, transparent);
  --font-heading: "Source Serif 4", "Iowan Old Style", Georgia, serif;
  --font-body: "Source Sans 3", "Helvetica Neue", system-ui, sans-serif;
  --font-ui: "Source Sans 3", "Helvetica Neue", system-ui, sans-serif;
  --btn-radius: 8px;
  --btn-padding-y: 8px;
  --btn-padding-x: 16px;
  --btn-transform: none;
  --radius-card: 12px;
  --header-h: 76px;
  --follow-h: 68px;
  --gutter: clamp(16px, 3vw, 40px);
  --wrap: min(1180px, 100% - var(--gutter) * 2);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}
img, video { max-width: 100%; display: block; height: auto; }
a { color: var(--clay); }
a:hover { color: color-mix(in srgb, var(--clay) 80%, #000); }
:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
}

.skip-link {
  position: absolute; left: 12px; top: -44px; z-index: 120;
  background: var(--text); color: var(--bg); padding: 8px 12px;
  border-radius: var(--btn-radius);
}
.skip-link:focus { top: 12px; }

/* H5 split-brand */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-split {
  width: var(--wrap); margin: 0 auto;
  min-height: var(--header-h);
  padding: 12px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.header-brand {
  display: flex; align-items: center; gap: 14px; flex-shrink: 0;
}
.brand-lockup {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text);
}
.brand-lockup img { width: 34px; height: 32px; object-fit: contain; }
.brand-lockup span {
  font-family: var(--font-heading);
  font-weight: 600; font-size: 1.05rem; letter-spacing: -0.02em;
}
.header-cluster {
  display: flex; align-items: center; gap: 10px;
}
.nav {
  display: flex; flex-wrap: wrap; gap: 6px 18px; justify-content: flex-end;
}
.nav a {
  text-decoration: none; color: var(--muted);
  font-family: var(--font-ui); font-size: 0.95rem; font-weight: 500;
  padding: 10px 2px; min-height: 44px; display: inline-flex; align-items: center;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); }
.nav-toggle {
  display: none; border: 1px solid var(--line); background: var(--surface);
  border-radius: var(--btn-radius); min-width: 44px; min-height: 44px;
  font: inherit; cursor: pointer;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-ui); font-weight: 600; font-size: 0.95rem;
  text-decoration: none; border-radius: var(--btn-radius);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  text-transform: var(--btn-transform);
  border: 1.5px solid transparent; cursor: pointer;
  min-height: 40px; transition: background .15s, color .15s, border-color .15s;
}
.btn-primary { background: var(--primary); color: var(--primary-fg); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-hover); color: var(--primary-fg); }
.btn-secondary {
  background: transparent; color: var(--text); border-color: var(--text);
}
.btn-secondary:hover { background: var(--text); color: var(--bg); }
.btn-compact { min-height: 36px; padding: 8px 12px; }

main { padding-bottom: calc(var(--follow-h) + env(safe-area-inset-bottom, 0px) + 28px); }
.legal-main { padding-bottom: 48px; }

/* video-asymmetric hero */
.hero-asym {
  display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 0; min-height: calc(100svh - var(--header-h));
  background: var(--text); color: var(--bg);
}
.hero-asym__copy {
  padding: clamp(32px, 6vw, 72px) var(--gutter);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 1;
}
.hero-asym__copy .kicker {
  color: color-mix(in srgb, var(--clay) 80%, #fff);
  margin-bottom: 12px;
}
.hero-asym__copy h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 4.4vw, 3.15rem);
  line-height: 1.12; font-weight: 600; letter-spacing: -0.03em;
  margin: 0 0 16px;
}
.hero-asym__copy .lede { max-width: 46ch; margin: 0 0 18px; opacity: .92; }
.hero-asym__copy .byline { color: color-mix(in srgb, #fff 72%, transparent); }
.hero-asym__media {
  position: relative; min-height: 280px; overflow: hidden;
}
.hero-asym__media img.poster,
.hero-asym__media video {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
}
.hero-asym__media .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--text) 0%, transparent 42%, transparent 100%);
  pointer-events: none;
}
.kicker {
  font-family: var(--font-ui); font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 0 0 8px;
}
.byline {
  display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: .92rem; margin-bottom: 22px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

.section { padding: 64px 0; }
.section-tint { background: var(--surface); }
.section-ink { background: var(--text); color: var(--bg); }
.section-ink .kicker { color: var(--clay); }
.section-ink .section-lead { color: color-mix(in srgb, #fff 72%, transparent); }
.wrap { width: var(--wrap); margin: 0 auto; }
.section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.2; margin: 0 0 14px; letter-spacing: -0.02em;
}
.section-lead { color: var(--muted); max-width: 68ch; margin: 0 0 28px; }

/* asymmetric-blocks */
.asym-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 14px;
}
.asym-grid.reverse { grid-template-columns: 0.85fr 1.15fr; }
.stack { display: grid; gap: 14px; }
.card {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: 22px 22px 20px;
}
.section-tint .card { background: var(--bg); }
.card h3 {
  font-family: var(--font-heading); font-size: 1.2rem; margin: 0 0 8px;
}
.card p { margin: 0; color: var(--muted); }
.card a { font-weight: 600; }

.benefits {
  display: grid; grid-template-columns: 7fr 5fr; gap: 18px; align-items: start;
}
.benefit-list { display: grid; gap: 12px; }
.benefit {
  padding: 16px 18px; border-left: 3px solid var(--clay); background: var(--bg);
}
.benefit h3 { margin: 0 0 6px; font-size: 1.05rem; font-family: var(--font-heading); }
.benefit p { margin: 0; color: var(--muted); font-size: .98rem; }

.mid-cta {
  margin-top: 8px; padding: 28px 24px;
  background: var(--text); color: var(--bg); border-radius: var(--radius-card);
}
.mid-cta h2, .mid-cta p { color: inherit; }
.mid-cta p { opacity: .86; }

/* compact showcase */
.showcase-grid {
  display: grid; gap: 10px;
  grid-template-columns: 1fr;
}
.shot {
  border: 1px solid var(--line); border-radius: 8px; background: #fff;
  overflow: hidden; min-height: 0;
}
.shot header {
  display: flex; justify-content: space-between; gap: 8px;
  padding: 8px 12px; font-size: .78rem; color: var(--muted);
  border-bottom: 1px solid var(--line); background: var(--surface);
  position: static; backdrop-filter: none;
}
.shot pre, .shot .prose {
  margin: 0; padding: 12px; font-size: .82rem; line-height: 1.45;
  max-height: 180px; overflow: auto;
}
.shot pre { font-family: ui-monospace, "SFMono-Regular", Menlo, monospace; }
.shot .prose { color: var(--text); }
@media (min-width: 768px) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .shot pre, .shot .prose { max-height: 200px; }
}
@media (min-width: 1024px) {
  .showcase-grid { grid-template-columns: repeat(3, 1fr); }
  .shot pre, .shot .prose { max-height: 180px; }
}
@media (min-width: 1440px) {
  .showcase-grid { grid-template-columns: repeat(4, 1fr); }
}

.about-block { max-width: 72ch; }
.about-block p { margin: 0 0 1em; }
.disclaimer {
  margin-top: 20px; padding: 16px 18px; background: var(--elevated);
  border-radius: var(--radius-card); font-size: .95rem;
}

.model-grid, .cat-grid, .audience-grid {
  display: grid; gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .model-grid, .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid, .audience-grid { grid-template-columns: repeat(4, 1fr); }
}
.model-card {
  padding: 22px; border-radius: var(--radius-card);
  background: var(--bg); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
}
.model-card.featured { border-color: var(--clay); background: color-mix(in srgb, var(--clay) 8%, var(--bg)); }
.model-card h3 { margin: 0; font-family: var(--font-heading); }
.model-card p { margin: 0; color: var(--muted); flex: 1; }

.crumbs {
  font-size: .9rem; color: var(--muted); margin: 0 0 18px;
}
.crumbs a { color: var(--muted); }
.page-hero { padding: 36px 0 12px; }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin: 0 0 12px;
}

.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0;
  font-family: var(--font-heading); font-size: 1.08rem;
  padding: 16px 0; cursor: pointer; color: inherit;
  min-height: 44px;
}
.faq-a { padding: 0 0 16px; color: var(--muted); }
.faq-a p { margin: 0 0 .8em; }
.faq-a p:last-child { margin-bottom: 0; }

.rating {
  display: grid; gap: 8px; padding: 28px; border-radius: var(--radius-card);
  background: var(--surface); border: 1px solid var(--line);
}
.rating-score {
  font-family: var(--font-heading); font-size: 2.2rem; margin: 0;
}
.rating-note { color: var(--muted); margin: 0; max-width: 60ch; }

.reviews { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .reviews { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review {
  padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--bg);
}
.review strong { display: block; margin-bottom: 4px; }
.review .stars { color: var(--clay); font-size: .85rem; margin-bottom: 8px; }
.review p { margin: 0; color: var(--muted); }

.final-cta {
  text-align: left; padding: 48px var(--gutter);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--clay) 22%, var(--text)) 0%, var(--text) 55%);
  color: var(--bg); border-radius: 0;
}
.final-cta .wrap { display: grid; gap: 16px; }
.final-cta h2 { color: inherit; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 24px; font-size: .92rem; color: var(--muted);
}
.footer-grid {
  width: var(--wrap); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 18px; }
.footer-links a { color: var(--muted); }

.follow-cta {
  position: fixed; z-index: 40; right: 20px; bottom: 20px;
  display: flex; align-items: center; gap: 12px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--btn-radius); padding: 8px 8px 8px 14px;
  box-shadow: 0 8px 28px color-mix(in srgb, var(--text) 12%, transparent);
}
.follow-cta p { margin: 0; font-size: .88rem; color: var(--muted); }
.follow-cta.is-hidden { display: none; }

.cta-stub {
  border: 0; border-radius: var(--radius-card); padding: 0;
  max-width: min(460px, calc(100vw - 32px));
  background: var(--bg); color: var(--text);
}
.cta-stub::backdrop { background: color-mix(in srgb, #141413 55%, transparent); }
.cta-stub-inner { padding: 24px; }
.cta-stub h2 { font-family: var(--font-heading); margin: 0 0 10px; }
.cta-stub p { margin: 0 0 14px; color: var(--muted); }

@media (max-width: 1023px) {
  .hero-asym { grid-template-columns: 1fr; min-height: auto; }
  .hero-asym__media { min-height: 42svh; }
  .hero-asym__media .scrim {
    background: linear-gradient(180deg, transparent 30%, var(--text) 100%);
  }
  .benefits, .asym-grid, .asym-grid.reverse { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .header-split { flex-wrap: wrap; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav {
    display: none; width: 100%; flex-direction: column; gap: 0;
    background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-card);
    padding: 8px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px; }
  .follow-cta {
    left: 0; right: 0; bottom: 0; border-radius: 0; border-left: 0; border-right: 0;
    justify-content: space-between;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  }
  .hero-asym__copy { padding-top: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-asym__media video { display: none; }
  .hero-asym__media img.poster { position: relative; }
}
