/*
  Global stylesheet : single source of truth for the site.

  Structure:
    1) Reset and base
    2) Design tokens (:root) : palette and typography are owned by the
       `brand-guidelines` skill. Spacing, radii, shadows, motion, and layout
       tokens are owned here.
    3) Layout primitives
    4) Components (site-wide reusable primitives only : page-specific
       styles live with their page builds, not here)
    5) Utilities
*/

/* ===== 1) Reset and base ===== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== 2) Design tokens ===== */
/* Palette and typography are written by the `brand-guidelines` skill from
   `build-assets/0-the-brand/tokens.json`. Spacing, radii, shadows, and
   transitions are owned here. */
:root {
  /* Palette : Lesbian Flings. Ink sampled from the logo artwork (#1A1818).
     Every grey is tinted off that hue so neutrals read warm, never clinical. */
  --color-bg: #ffffff;
  --color-surface: #ffffff;
  --color-surface-soft: #f7f5f3;
  --color-text: #1a1818;
  --color-text-soft: #6e6867;
  --color-black: #000000;

  --color-primary: #1a1818;        /* primary buttons, strong UI */
  --color-primary-dark: #000000;
  --color-primary-light: #edeae8;

  --color-accent: #c0a06c;         /* gold : the ONLY decorative accent */
  --color-accent-ink: #6e5730;     /* gold at text contrast (5.9:1 on white) */
  --color-accent-soft: #f3ede1;

  --color-focus: #6e5730;

  /* State colours : lifted from the platform. Only ever used to report
     something real (live, verified, liked). Never decoration. */
  --color-live: #009e32;
  --color-live-ink: #007a26;
  --color-verify: #278afa;
  --color-like: #b61f2a;

  /* Warm grey ramp */
  --grey-900: #2b2828;
  --grey-700: #4a4544;
  --grey-500: #6e6867;
  --grey-300: #a5a09e;
  --grey-200: #d6d2d0;
  --grey-100: #edeae8;

  /* Typography : serif carries H1/H2 and pull quotes only. Sans does the rest. */
  --font-heading: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Spacing : 8pt */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* Radii : 8 / 12 / 16 / 20. Softly rounded, never pill. */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-pill: 999px;

  /* Shadows : restrained. Photography carries the depth, not drop shadows. */
  --shadow-sm: 0 1px 2px rgba(26, 24, 24, 0.06);
  --shadow-md: 0 4px 14px rgba(26, 24, 24, 0.07);
  --shadow-lg: 0 12px 32px rgba(26, 24, 24, 0.10);

  /* Motion */
  --transition-fast: 180ms ease;
  --transition-base: 260ms ease;

  /* Layout */
  --container-max: 78rem;   /* 1248px */
  --reading-max: 44rem;     /* ~65ch */

  /* Aesthetic dials */
  --logo-height: 2.75rem;
  --logo-max-width: 22rem;
  --header-bg: var(--color-surface);
  --header-fg: var(--color-text);
  --btn-radius: var(--radius-sm);
  --card-radius: var(--radius-lg);
  --card-shadow: none;
  --card-border: 1px solid var(--grey-200);
  --chip-radius: var(--radius-pill);
}

@media (min-width: 1024px) {
  :root { --logo-height: 3.25rem; }
}

/* ===== 3) Layout primitives ===== */
.container {
  width: min(100% - 2rem, var(--container-max));
  margin-inline: auto;
}

.section {
  padding: var(--space-10) 0;
}

.grid {
  display: grid;
  gap: var(--space-4);
}

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

@media (min-width: 600px) {
  .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ===== 4) Components ===== */

/* Site header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--header-bg);
  color: var(--header-fg);
  border-bottom: 1px solid color-mix(in srgb, var(--color-text) 8%, transparent);
}

.site-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-3) 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

/* The header logo is an <img src="{{logo.src}}"> whose REAL file is injected by the CMS
   at upload : its aspect ratio is unknown at build time. HEIGHT is the primary driver
   (a generous --logo-height), so every logo renders at a consistent, prominent height
   regardless of ratio; --logo-max-width is a generous, viewport-relative safety cap that
   only clamps a very wide logo on small screens (it then scales down proportionally, never
   distorts). Never pin width AND height. Tune the dials per brand : never a per-page size. */
.site-logo img {
  height: auto;
  width: auto;
  max-height: var(--logo-height);
  max-width: min(var(--logo-max-width, 22rem), 55vw);
  object-fit: contain;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
}

.site-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

/* CMS-rendered menus : `{{menu.navigation}}` and `{{menu.footer}}` expand to
   <ul class="canvas-navigation-menu"> / <ul class="canvas-footer-menu"> with
   <li><a> children. Style the generated classes directly. */

.canvas-navigation-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-5);
  margin: 0;
  padding: 0;
  list-style: none;
}

.canvas-navigation-menu > li {
  margin: 0;
}

.canvas-navigation-menu a {
  color: var(--header-fg);
  font-weight: 600;
  font-size: 0.95rem;
  padding: var(--space-2) 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.canvas-navigation-menu a:hover,
.canvas-navigation-menu a:focus-visible {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.canvas-footer-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4) var(--space-6);
  margin: 0 0 var(--space-4);
  padding: 0;
  list-style: none;
}

/* Footers can carry many links. With 8+ items, flow them into responsive columns
   (auto-fill grid) instead of one long, sprawling wrapping row : multi-column on wide
   screens, collapsing toward a single column on mobile. Short footer menus keep the
   inline row above. Where :has() is unsupported it harmlessly stays the flex row. */
.canvas-footer-menu:has(> li:nth-child(8)) {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 9rem), 1fr));
  align-items: start;
  gap: var(--space-2) var(--space-5);
}

.canvas-footer-menu > li {
  margin: 0;
}

.canvas-footer-menu a {
  color: var(--color-text-soft);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.canvas-footer-menu a:hover,
.canvas-footer-menu a:focus-visible {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) 0;
  color: var(--color-text-soft);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--color-primary);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb-separator {
  color: var(--color-text-soft);
  opacity: 0.6;
}

.breadcrumb [aria-current="page"] {
  color: var(--color-text);
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--btn-radius);
  min-height: 2.75rem;
  padding: 0.78rem 1.4rem;
  font-size: 0.98rem;
  line-height: 1;
  letter-spacing: 0.01em;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline-offset: 3px; }

.btn[disabled],
.btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.55;
  pointer-events: none;
  box-shadow: none;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--color-primary) 28%, transparent);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 6px 16px color-mix(in srgb, var(--color-primary) 40%, transparent);
}

.btn-secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid color-mix(in srgb, var(--color-text) 16%, transparent);
}

.btn-secondary:hover {
  background: color-mix(in srgb, var(--color-surface-soft) 75%, #fff);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid color-mix(in srgb, var(--color-text) 20%, transparent);
}

.btn-ghost:hover {
  background: color-mix(in srgb, var(--color-surface-soft) 65%, transparent);
}

/* Header CTAs follow the header foreground so they stay legible on a coloured band
   (no-op on the neutral default where --header-fg == --color-text). */
.site-header .btn-ghost {
  color: var(--header-fg);
  border-color: color-mix(in srgb, var(--header-fg) 20%, transparent);
}

.btn-sm {
  min-height: 2.2rem;
  padding: 0.55rem 1rem;
  font-size: 0.87rem;
}

.btn-lg {
  min-height: 3rem;
  padding: 0.9rem 1.7rem;
  font-size: 1.04rem;
}

.btn-block { width: 100%; }

.btn-icon {
  width: 2.75rem;
  min-width: 2.75rem;
  padding: 0;
  border-radius: 50%;
}

/* Card */
.card {
  background: var(--color-surface);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  border: var(--card-border);
  padding: var(--space-5);
}

.card-title {
  margin: 0 0 var(--space-2);
  font-size: 1.08rem;
}

.card-text {
  margin: 0;
  color: var(--color-text-soft);
}

/* Chip : pill-shaped tag */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.95rem;
  border-radius: var(--chip-radius);
  background: var(--color-surface);
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent);
}

.chip-row {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

/* Site footer */
.site-footer {
  padding: var(--space-10) 0;
  color: var(--color-text-soft);
  font-size: 0.9rem;
  border-top: 1px solid color-mix(in srgb, var(--color-text) 8%, transparent);
}

/* Member profile */
.profile-head {
  display: flex;
  gap: var(--space-5);
  align-items: center;
  margin-bottom: var(--space-6);
}
.profile-avatar {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: var(--radius-pill);
  object-fit: cover;
}
.profile-id {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.profile-headline {
  font-size: 1.15rem;
  font-weight: 600;
}
.profile-bio {
  color: var(--color-text-soft);
  max-width: 60ch;
}
.profile-interests {
  margin-top: var(--space-3);
}

/* ===== 5) Utilities ===== */
.text-center { text-align: center; }
.muted { color: var(--color-text-soft); }

.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ===== 6) Lesbian Flings : brand layer =====================================
   Loaded last so it wins over the baseline above. Page-specific styles do NOT
   belong here; they live in the page build. Only site-wide brand rules.
   ========================================================================== */

/* Serif is reserved for H1/H2 and pull quotes. Everything else is Archivo. */
h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1, h2 {
  letter-spacing: -0.015em;
  text-wrap: balance;
  font-weight: 600;
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 0, "WONK" 0;
}

.prose p, .lede { max-width: var(--reading-max); }

/* --- Buttons --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1;
  padding: 1rem 1.75rem;
  min-height: 48px;               /* thumb target */
  border-radius: var(--btn-radius);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast),
              border-color var(--transition-fast);
}
.btn-primary { background: var(--color-accent); border-color: var(--color-accent); color: #231c0c; box-shadow: none; }
.btn-primary:hover, .btn-primary:focus-visible { background: #ad8d59; border-color: #ad8d59; }
.btn-dark { background: var(--color-text); border-color: var(--color-text); color: #fff; }
.btn-dark:hover, .btn-dark:focus-visible { background: #000; border-color: #000; }
.btn-ghost { background: transparent; border-color: var(--color-text); color: var(--color-text); box-shadow: none; }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--color-text); color: #fff; }
.btn-sm { padding: 0.6875rem 1.125rem; min-height: 40px; font-size: 0.875rem; }

/* --- Eyebrow / labels ------------------------------------------------------ */
.eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-ink);
  margin: 0 0 var(--space-4);
}

/* --- Chips ----------------------------------------------------------------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 0.9375rem;
  border: 1px solid var(--grey-200);
  border-radius: var(--chip-radius);
  color: var(--color-text);
}

/* --- Icons ----------------------------------------------------------------- */
.icon { width: 28px; height: 28px; flex: none; color: var(--color-text); }
.icon-sm { width: 18px; height: 18px; }

/* --- Header ---------------------------------------------------------------- */
.site-header-row { gap: var(--space-6); }
.site-header-row .site-logo { flex: none; }
.site-header-row .hs-canvas-nav { flex: 1 1 auto; min-width: 0; }
.site-header-row .site-cta { flex: none; }
.site-cta { gap: var(--space-3); }

/* The CMS drawer handles login/join below 1024px. Hide the header pair there
   so mobile users don't see them twice. */
@media (max-width: 1023px) {
  .desktop-only { display: none; }
}

/* --- CMS nav overrides ------------------------------------------------------
   The snippet ships its own <style> INSIDE <body>, which loads after this file.
   Equal-specificity variable overrides silently fail, so target the consuming
   property with higher specificity instead. See references/placeholders/
   menu.navigation.default.md ("CSS cascade warning").                          */
.hs-canvas-nav .hs-canvas-nav__link {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--header-fg);
}
.hs-canvas-nav .hs-canvas-nav__link:hover,
.hs-canvas-nav .hs-canvas-nav__link:focus-visible {
  color: var(--color-accent-ink);
}
.hs-canvas-nav .hs-canvas-nav__drawer { background: var(--color-surface); }
.hs-canvas-nav .hs-canvas-nav__overlay { background: rgba(26, 24, 24, 0.45); }
/* Drawer Join is hardcoded black in the snippet. Bring it back to brand gold. */
.hs-canvas-nav .hs-canvas-nav__cta--primary {
  background: var(--color-accent);
  color: #231c0c;
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-weight: 700;
}
.hs-canvas-nav .hs-canvas-nav__cta--secondary {
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-weight: 700;
}
.hs-canvas-nav .hs-canvas-nav__logo { max-width: 175px; }

/* --- Footer menu ----------------------------------------------------------- */
.canvas-footer-menu a { color: inherit; font-size: 0.9375rem; }
.canvas-footer-menu a:hover, .canvas-footer-menu a:focus-visible { color: var(--color-accent); }

/* --- Announcement bar ------------------------------------------------------ */
.announce {
  background: var(--color-black);
  color: #fff;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 0.6875rem var(--space-4);
}
.announce b { color: var(--color-accent); font-weight: 700; }

/* --- Trust strip ----------------------------------------------------------- */
.trust-strip { border-top: 1px solid var(--grey-200); border-bottom: 1px solid var(--grey-200); }
.trust-strip ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
}
.trust-strip li {
  display: flex; align-items: center; justify-content: center; gap: var(--space-3);
  padding: var(--space-5) var(--space-4);
  font-size: 0.875rem; font-weight: 600; text-align: center;
}
.trust-strip li + li { border-left: 1px solid var(--grey-200); }
.trust-strip li:nth-child(3) { border-left: 0; }
.trust-strip li:nth-child(n + 3) { border-top: 1px solid var(--grey-200); }
@media (min-width: 768px) {
  .trust-strip ul { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .trust-strip li:nth-child(3) { border-left: 1px solid var(--grey-200); }
  .trust-strip li:nth-child(n + 3) { border-top: 0; }
}

/* --- Member card ----------------------------------------------------------- */
.member-card {
  border: var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface);
}
.member-card__media { position: relative; aspect-ratio: 3 / 4; background: var(--grey-100); }
.member-card__media img { width: 100%; height: 100%; object-fit: cover; }
.member-card__fallback {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--space-3); color: var(--grey-300);
}
.member-card__flag {
  position: absolute; left: 0.4375rem; top: 0.4375rem;
  background: rgba(255, 255, 255, 0.94); color: var(--color-text);
  font-size: 0.625rem; font-weight: 700;
  padding: 0.25rem 0.5rem; border-radius: var(--radius-pill);
  display: inline-flex; align-items: center; gap: 0.375rem;
}
.member-card__flag i { width: 6px; height: 6px; border-radius: 50%; background: var(--color-live); }
.member-card__body { padding: 0.625rem 0.75rem 0.8125rem; }
.member-card__name {
  font-weight: 700; font-size: 0.8125rem; margin: 0;
  display: flex; align-items: center; gap: 0.3125rem;
  white-space: nowrap; overflow: hidden;
}
.member-card__name span:not(.visually-hidden) { overflow: hidden; text-overflow: ellipsis; }
.member-card__meta { font-size: 0.75rem; color: var(--color-text-soft); margin: 0.125rem 0 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tick { width: 13px; height: 13px; flex: none; color: var(--color-verify); }

/* --- Cards / articles ------------------------------------------------------ */
.card {
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: var(--color-surface);
  box-shadow: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card__media { aspect-ratio: 16 / 9; background: var(--grey-100); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.card__cat {
  font-size: 0.625rem; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--color-accent-ink);
}
.card__title { font-family: var(--font-heading); font-weight: 600; font-size: 1.3125rem; line-height: 1.2; margin: 0; letter-spacing: -0.01em; }
.card__byline { margin-top: auto; padding-top: var(--space-3); border-top: 1px solid var(--grey-200); font-size: 0.75rem; color: var(--color-text-soft); }

/* --- FAQ ------------------------------------------------------------------- */
.faq-item { border-top: 1px solid var(--grey-200); padding: var(--space-6) 0; }
.faq-item:last-child { border-bottom: 1px solid var(--grey-200); }
.faq-item h3 { margin: 0 0 var(--space-3); font-size: 1.125rem; }
.faq-item p { margin: 0; color: var(--color-text-soft); }

/* --- Footer ---------------------------------------------------------------- */
.site-footer { background: var(--color-text); color: #fff; padding: var(--space-12) 0 var(--space-10); }
.site-footer a { color: #fff; }
.site-footer .legal { font-size: 0.8125rem; color: var(--grey-300); }
.site-footer .legal a { color: var(--grey-300); text-decoration: underline; }
.site-footer .legal a:hover { color: var(--color-accent); }

/* Dark bands need the light gold. --color-accent-ink is tuned for contrast on
   white and renders about 2.5:1 on the dark ink, which fails AA. This catches
   any link written without an inline colour; inline colours still have to use
   var(--color-accent) by hand. */
.band--dark a:not(.btn):not(.odda__link):not([style*="color"]) { color: var(--color-accent); }
/* Tier bar. Lived only in the safety page's inline <style> until 2026-08-25,
   so it rendered unstyled on every other page that used it. Shared furniture
   belongs here. */
.tierbar { display: grid; gap: 1px; background: var(--grey-200); border: 1px solid var(--grey-200); margin-top: var(--space-8); }
@media (min-width: 800px) { .tierbar { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.tierbar div { background: var(--color-surface); padding: var(--space-6) var(--space-5); }
.tierbar b { display: block; font-size: 0.625rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-accent-ink); margin-bottom: var(--space-3); }
.tierbar p { margin: 0; font-size: 0.9375rem; line-height: 1.6; color: var(--color-text-soft); }
.tierbar p strong { color: var(--color-text); font-weight: 700; }
.tierbar--dark { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.16); }
.tierbar--dark div { background: var(--color-text); }
.tierbar--dark b { color: var(--color-accent); }
.tierbar--dark p { color: var(--grey-300); }
.tierbar--dark p strong { color: #fff; }
.tierbar--dark a:not([style*="color"]) { color: var(--color-accent); }

/* Footer layout. Lived in the homepage's inline <style> until 2026-08-25, which
   meant the other 19 pages rendered an unstyled footer. Shared furniture goes
   here, never in one page's <style>. */
.footer__top { display: grid; gap: var(--space-8); padding-bottom: var(--space-8); border-bottom: 1px solid rgba(255,255,255,0.16); }
@media (min-width: 800px) { .footer__top { grid-template-columns: 1.2fr 1fr; align-items: start; } }
.footer__odda { display: grid; gap: var(--space-4); max-width: 34rem; }
.footer__odda p { margin: 0; font-size: 0.875rem; color: var(--grey-300); line-height: 1.6; }
.footer__odda b { color: #fff; }
/* The ODDA mark is supplied in its own colours and must not be recoloured, so it
   sits on a white plaque rather than being knocked out on the dark footer. */
.odda-mark { display: inline-block; background: #fff; border-radius: var(--radius-sm); padding: 0.625rem 0.875rem; line-height: 0; width: max-content; }
.odda-mark img { display: block; width: 168px; height: auto; }
.footer__bottom { padding-top: var(--space-6); display: grid; gap: var(--space-4); }
.footer__legal-links { display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-5); }

/* --- Skip link ------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--color-text);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
}

/* ===== 7) Shared page furniture ============================================
   Used by every page except the homepage, which has its own hero. Lives here
   so four pages share one set of components instead of inventing four.
   ========================================================================== */

/* --- Compact page hero ----------------------------------------------------- */
.page-hero { border-bottom: 1px solid var(--grey-200); padding: var(--space-12) 0 var(--space-16); }
.page-hero__grid { display: grid; gap: var(--space-6); }
@media (min-width: 900px) {
  .page-hero__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: var(--space-16); align-items: end; }
}
.page-hero__title {
  font-size: clamp(2.25rem, 5.2vw, 3.75rem);
  line-height: 1.03; margin: var(--space-4) 0 0;
}
.page-hero__lede { font-size: 1.0625rem; line-height: 1.6; color: var(--color-text-soft); margin: 0; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-8); }

/* --- Breadcrumb ------------------------------------------------------------ */
.crumb { padding: var(--space-4) 0 0; font-size: 0.8125rem; color: var(--color-text-soft); }
.crumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.crumb li::after { content: "/"; margin-left: 0.5rem; color: var(--grey-300); }
.crumb li:last-child::after { content: ""; }
.crumb a { text-decoration: none; border-bottom: 1px solid var(--grey-200); }
.crumb a:hover, .crumb a:focus-visible { border-bottom-color: var(--color-accent); }

/* --- Prose ----------------------------------------------------------------- */
.prose h2 { font-size: clamp(1.625rem, 3.2vw, 2.25rem); line-height: 1.12; margin: var(--space-12) 0 var(--space-4); }
.prose h3 { font-size: 1.125rem; margin: var(--space-8) 0 var(--space-3); }
.prose > :first-child { margin-top: 0; }
.prose p { margin: 0 0 var(--space-4); line-height: 1.7; color: var(--color-text-soft); }
.prose p.stand { font-size: 1.125rem; color: var(--color-text); }
.prose a { color: var(--color-accent-ink); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--grey-200); }
.prose a:hover, .prose a:focus-visible { border-bottom-color: var(--color-accent); }

/* --- Definition rows: the workhorse for feature and safety lists ----------- */
.rows { border-top: 1px solid var(--grey-200); }
.row {
  display: grid; gap: var(--space-2) var(--space-6);
  padding: var(--space-6) 0; border-bottom: 1px solid var(--grey-200);
}
@media (min-width: 800px) {
  .row { grid-template-columns: minmax(0, 15rem) minmax(0, 1fr) minmax(0, 1fr); align-items: start; }
}
.row__name { font-weight: 700; font-size: 1rem; margin: 0; display: flex; gap: var(--space-3); align-items: baseline; }
.row__what { margin: 0; font-size: 0.9375rem; line-height: 1.6; color: var(--color-text); }
.row__why { margin: 0; font-size: 0.9375rem; line-height: 1.6; color: var(--color-text-soft); }
.row__why b { color: var(--color-accent-ink); font-weight: 700; font-size: 0.625rem; letter-spacing: 0.16em; text-transform: uppercase; display: block; margin-bottom: 0.25rem; }

/* --- Group heading inside a rows list -------------------------------------- */
.group-head { margin: var(--space-12) 0 var(--space-2); display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: baseline; justify-content: space-between; }
.group-head h3 { margin: 0; font-size: 1.25rem; }
.group-head p { margin: 0; font-size: 0.875rem; color: var(--color-text-soft); }

/* --- Comparison table ------------------------------------------------------ */
.compare-wrap { overflow-x: auto; max-width: 100%; border: 1px solid var(--grey-200); border-radius: var(--radius-md); }
.compare { width: 100%; border-collapse: collapse; font-size: 0.9375rem; min-width: 34rem; }
.compare th, .compare td { padding: 0.875rem 1rem; text-align: left; border-bottom: 1px solid var(--grey-200); }
.compare thead th { background: var(--color-surface-soft); font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 800; }
.compare td:not(:first-child), .compare th:not(:first-child) { text-align: center; width: 7.5rem; }
.compare tbody tr:last-child td { border-bottom: 0; }
.compare .yes { color: var(--color-live-ink); font-weight: 700; }
.compare .no { color: var(--grey-500); }
.compare caption { caption-side: bottom; padding: var(--space-4) 1rem; font-size: 0.8125rem; color: var(--color-text-soft); text-align: left; }

/* --- Tier cards ------------------------------------------------------------ */
.tiers { display: grid; gap: var(--space-4); }
@media (min-width: 800px) { .tiers { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.tier-card {
  border: 1px solid var(--grey-200); border-radius: var(--radius-lg);
  padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-4);
  background: var(--color-surface);
}
.tier-card--lead { border-color: var(--color-accent); border-width: 2px; }
.tier-card__flag { font-size: 0.625rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-accent-ink); }
.tier-card__name { font-family: var(--font-heading); font-weight: 600; font-size: 1.75rem; margin: 0; line-height: 1; }
.tier-card__price { font-size: 0.9375rem; color: var(--color-text-soft); margin: 0; }
.tier-card__price b { font-family: var(--font-heading); font-weight: 600; font-size: 1.75rem; color: var(--color-text); display: block; line-height: 1.1; }
.tier-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-3); font-size: 0.9375rem; line-height: 1.5; }
.tier-card li { position: relative; padding-left: 1.125rem; }
.tier-card li::before { content: ""; position: absolute; left: 0; top: 0.45rem; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--color-accent); }
.tier-card .btn { margin-top: auto; }

/* --- Callout --------------------------------------------------------------- */
.callout {
  border-left: 2px solid var(--color-accent);
  padding: var(--space-2) 0 var(--space-2) var(--space-5);
  margin: var(--space-8) 0;
}
.callout p { margin: 0; font-size: 1rem; line-height: 1.6; }
.callout p b { font-weight: 700; }

/* --- Next steps ------------------------------------------------------------ */
.next { display: grid; gap: 1px; background: var(--grey-200); border: 1px solid var(--grey-200); }
@media (min-width: 700px) { .next { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.next a { background: var(--color-surface); padding: var(--space-6) var(--space-5); text-decoration: none; display: block; transition: background var(--transition-fast); }
.next a:hover, .next a:focus-visible { background: var(--color-surface-soft); }
.next b { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 1.25rem; margin-bottom: var(--space-2); }
.next span { font-size: 0.875rem; color: var(--color-text-soft); line-height: 1.5; }

/* ===== 8) Section rhythm =================================================
   Moved out of the homepage's inline style so every page shares one set.
   ====================================================================== */
.answer__head { display: grid; gap: var(--space-5); align-items: baseline; }
@media (min-width: 900px) {
  .answer__head { grid-template-columns: minmax(0, 20rem) minmax(0, 1fr); gap: var(--space-10); }
}
.answer__lead {
  font-family: var(--font-heading); font-weight: 600;
  font-size: clamp(1.375rem, 2.4vw, 1.75rem); line-height: 1.3;
  margin: 0; max-width: 34ch;
}
.answer__body { margin-top: var(--space-8); display: grid; gap: var(--space-6); }
@media (min-width: 700px) { .answer__body { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-10); } }
.answer__body p { margin: 0; color: var(--color-text-soft); line-height: 1.65; }
.answer__facts {
  margin-top: var(--space-10); padding-top: var(--space-6);
  border-top: 1px solid var(--grey-200);
  display: grid; gap: var(--space-6);
}
@media (min-width: 700px) { .answer__facts { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-8); } }
.answer__fact dt {
  font-size: 0.625rem; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--color-accent-ink); margin: 0 0 var(--space-2);
}
.answer__fact dd { margin: 0; font-size: 0.9375rem; line-height: 1.55; }
.band { padding: var(--space-16) 0; }
.band--rule { border-top: 1px solid var(--grey-200); }
.band__head { display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: flex-end; justify-content: space-between; margin-bottom: var(--space-8); }
.band__title { font-size: clamp(1.75rem, 3.6vw, 2.5rem); line-height: 1.1; margin: 0; }
.band__note { font-size: 0.875rem; color: var(--color-text-soft); margin: 0; }
.band--dark {
  background: var(--color-text);
  color: #fff;
  border-top: 0;
}
.band--dark .band__title { color: #fff; }
.band--dark .band__note { color: var(--grey-300); }
.band--dark .diff__item p { color: var(--grey-300); }
.band--dark .icon { color: var(--color-accent); }
.odda {
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3) var(--space-4);
  align-items: start;
}
.odda p { margin: 0; color: var(--grey-300); font-size: 1rem; line-height: 1.6; max-width: 60ch; }
.odda p b { color: #fff; font-weight: 600; }
.odda__link {
  grid-column: 2;
  justify-self: start;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-accent); text-decoration: none;
  border-bottom: 1px solid rgba(192, 160, 108, 0.5); padding-bottom: 0.1875rem;
}
.odda__link:hover, .odda__link:focus-visible { border-bottom-color: var(--color-accent); }
@media (max-width: 600px) {
  .odda { grid-template-columns: 1fr; }
  .odda__link { grid-column: 1; }
}
.diff { display: grid; gap: var(--space-8); }
@media (min-width: 700px) { .diff { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-10); } }
.diff__item { display: grid; grid-template-columns: auto 1fr; gap: var(--space-4); align-items: start; }
.diff__item h3 { margin: 0 0 var(--space-2); font-size: 1.0625rem; }
.diff__item p { margin: 0; font-size: 0.9375rem; color: var(--color-text-soft); line-height: 1.6; }
.faq { padding: var(--space-16) 0; }
.faq__head { display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: baseline; justify-content: space-between; margin-bottom: var(--space-8); }
.faq__list { display: grid; gap: 0; }
@media (min-width: 800px) {
  .faq__list { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: var(--space-12); }
  .faq__list .faq-item:nth-child(2) { border-top: 1px solid var(--grey-200); }
  .faq__list .faq-item:nth-last-child(2) { border-bottom: 1px solid var(--grey-200); }
}
.closer { background: var(--color-text); color: #fff; padding: var(--space-20) 0; text-align: center; }
.closer h2 { font-size: clamp(2rem, 5.5vw, 3.25rem); line-height: 1.05; margin: 0 0 var(--space-5); color: #fff; }
.closer p { color: var(--grey-300); font-size: 1.0625rem; margin: 0 auto var(--space-8); max-width: 40ch; }
.closer .btn-ghost { border-color: #fff; color: #fff; }
.closer .btn-ghost:hover, .closer .btn-ghost:focus-visible { background: #fff; color: var(--color-text); }
.closer__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; }

/* ===== 9) Page hero with media, accordions, stat strip ====================
   Added so Safety and About can breathe instead of running as walls of text.
   ====================================================================== */

.page-hero--media .page-hero__grid { align-items: center; }
.page-hero--media .page-hero__media { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 6 / 5; }
.page-hero--media .page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 900px) {
  .page-hero--media .page-hero__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
}

/* --- Stat strip ------------------------------------------------------------ */
.stats {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px; background: var(--grey-200);
  border-top: 1px solid var(--grey-200); border-bottom: 1px solid var(--grey-200);
}
@media (min-width: 800px) { .stats { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.stats > div { background: var(--color-bg); padding: var(--space-6) var(--space-5); }
.stats dt {
  font-size: 0.5625rem; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--color-text-soft); margin: 0 0 var(--space-2);
}
.stats dd {
  font-family: var(--font-heading); font-weight: 600; font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1; margin: 0 0 var(--space-2); font-variant-numeric: tabular-nums;
}
.stats p { margin: 0; font-size: 0.8125rem; line-height: 1.5; color: var(--color-text-soft); }
.band--dark .stats { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.18); }
.band--dark .stats > div { background: var(--color-text); }
.band--dark .stats dd { color: var(--color-accent); }
.band--dark .stats p, .band--dark .stats dt { color: var(--grey-300); }

/* --- Accordion: native <details>, no JavaScript ---------------------------- */
.acc { border-top: 1px solid var(--grey-200); }
.acc details { border-bottom: 1px solid var(--grey-200); }
.acc summary {
  list-style: none; cursor: pointer;
  display: grid; grid-template-columns: 1fr auto; gap: var(--space-4);
  align-items: baseline; padding: var(--space-5) 0;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover .acc__label, .acc details[open] .acc__label { color: var(--color-accent-ink); }
.acc__label { font-family: var(--font-body); font-weight: 700; font-size: 1.125rem; letter-spacing: -0.02em; margin: 0; }
.acc__sub { display: block; font-weight: 400; font-size: 0.875rem; color: var(--color-text-soft); margin-top: 0.25rem; letter-spacing: 0; }
.acc__count {
  font-size: 0.625rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-accent-ink); white-space: nowrap; display: flex; align-items: center; gap: 0.625rem;
}
.acc__count::after {
  content: ""; width: 9px; height: 9px; flex: none;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px); transition: transform var(--transition-fast);
}
.acc details[open] .acc__count::after { transform: rotate(-135deg) translate(-2px, -2px); }
.acc__body { padding: 0 0 var(--space-5); display: grid; gap: var(--space-4); }
@media (min-width: 700px) { .acc__body { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-5) var(--space-8); } }
.acc__item { border-left: 2px solid var(--color-accent); padding-left: var(--space-4); }
.acc__item h4 { margin: 0 0 0.375rem; font-size: 0.9375rem; }
.acc__item p { margin: 0; font-size: 0.875rem; line-height: 1.55; color: var(--color-text-soft); }
.acc__item p.why { margin-top: 0.375rem; color: var(--color-text); }

/* --- Pull quote ------------------------------------------------------------ */
.pull { margin: var(--space-10) 0 0; padding: var(--space-5) 0 0; border-top: 2px solid var(--color-accent); max-width: 46rem; }
.pull p span { display: block; }
.pull p {
  font-family: var(--font-heading); font-weight: 600;
  font-size: clamp(1.5rem, 3.2vw, 2.125rem); line-height: 1.12;
  margin: 0 0 var(--space-3); letter-spacing: -0.015em; color: var(--color-text);
}
.pull cite { font-style: normal; font-size: 0.8125rem; letter-spacing: 0.06em; color: var(--color-text-soft); }
