/*
 * styles.css — Beauty and Wellness Brands
 * The Spectrum Board: an aubergine-plum + bone editorial system holding an
 * eleven-chip category color spectrum. Fields before accents; whitespace is a
 * chosen ground, not a default.
 */

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --color-primary: #3A1B3D;        /* Aubergine Plum — dominant field */
  --color-primary-dark: #29122B;   /* Deep Plum */
  --color-primary-light: #6E4473;  /* Orchid Plum */
  --color-secondary: #C15B37;      /* Terracotta — token/accent */
  --color-terracotta-field: #A6482A; /* Deep terracotta — text-bearing bands (AA with bone) */
  --color-accent: #E9A21C;         /* Amber Gold — single lit accent */
  --color-bg: #F4ECE1;             /* Bone Paper */
  --color-surface: #FBF6EE;        /* Warm Ivory */
  --color-text: #241019;           /* Plum Black */
  --color-text-secondary: #5E4C50; /* Warm Taupe */
  --color-on-primary: #F4ECE1;     /* Bone on Plum */
  --color-on-accent: #241019;      /* Plum-black on Amber */
  --color-border: #E3D6C6;         /* Sand Hairline */

  /* Category spectrum — 11 chips, each AA-verified with its label color */
  --chip-medspa: #8A2E52;      --chip-medspa-ink: #F4ECE1;
  --chip-massage: #A6482A;     --chip-massage-ink: #F4ECE1;
  --chip-skincare: #E7BCB0;    --chip-skincare-ink: #241019;
  --chip-bodysculpt: #7E4A34;  --chip-bodysculpt-ink: #F4ECE1;
  --chip-nails: #E7A2AE;       --chip-nails-ink: #241019;
  --chip-hair: #256E68;        --chip-hair-ink: #F4ECE1;
  --chip-lymphatic: #AEB98C;   --chip-lymphatic-ink: #241019;
  --chip-weightloss: #DBC559;  --chip-weightloss-ink: #241019;
  --chip-iv: #1E6B86;          --chip-iv-ink: #F4ECE1;
  --chip-fitness: #B4471F;     --chip-fitness-ink: #F4ECE1;
  --chip-pet: #6A5691;         --chip-pet-ink: #F4ECE1;

  --font-primary: 'Syne', sans-serif;
  --font-secondary: 'Hanken Grotesk', sans-serif;
  --font-size-base: 16px;
  --spacing-base: 8px;
  --shell: 1240px;
  --nav-h: 76px;
  --motion-duration: 240ms;
  --motion-duration-slow: 480ms;
  --motion-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ============================================================
   Base Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: var(--font-size-base, 16px); scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-secondary, sans-serif);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  padding-bottom: 42px; /* required */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--color-text); text-decoration: none; }
button { font: inherit; cursor: pointer; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  padding: 0.75rem 1.25rem; background: var(--color-surface);
  color: var(--color-primary); font-weight: 700; text-decoration: none;
  border: 2px solid var(--color-accent); border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Typography
   ============================================================ */
.display, h1, h2, h3 { font-family: var(--font-primary); }
.display {
  font-weight: 800; font-size: clamp(2.6rem, 7.4vw, 6.25rem);
  line-height: 0.98; letter-spacing: -0.01em;
}
h1 { font-weight: 700; font-size: clamp(2.25rem, 5vw, 3.5rem); line-height: 1.02; letter-spacing: -0.005em; }
h2 { font-weight: 700; font-size: clamp(1.75rem, 3.4vw, 2.6rem); line-height: 1.08; }
h3 { font-weight: 600; font-size: 1.375rem; line-height: 1.15; }
h4 { font-family: var(--font-secondary); font-weight: 700; font-size: 1.0625rem; line-height: 1.3; letter-spacing: 0.02em; }
p { font-size: 1.0625rem; line-height: 1.7; }
.lead { font-size: clamp(1.125rem, 1.6vw, 1.375rem); line-height: 1.5; font-weight: 400; }
.small { font-size: 0.9375rem; line-height: 1.5; font-weight: 500; }
.measure { max-width: 66ch; }

.eyebrow, .colon-label {
  font-family: var(--font-secondary); font-weight: 600; font-size: 0.75rem;
  line-height: 1.4; letter-spacing: 0.16em; text-transform: uppercase;
}
.colon-label { color: var(--color-secondary); }

.numeral {
  font-family: var(--font-primary); font-weight: 800; line-height: 0.9;
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
}

/* ============================================================
   Layout helpers
   ============================================================ */
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 3rem); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section-tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.ground-light { background: var(--color-bg); color: var(--color-text); }
.ground-surface { background: var(--color-surface); color: var(--color-text); }
.ground-dark { background: var(--color-primary); color: var(--color-on-primary); }
.ground-dark h1, .ground-dark h2, .ground-dark h3 { color: var(--color-on-primary); }
.ground-color { background: var(--color-primary); color: var(--color-on-primary); }
.ground-terracotta { background: var(--color-terracotta-field); color: var(--color-on-primary); }
.ground-terracotta h1, .ground-terracotta h2, .ground-terracotta h3 { color: var(--color-on-primary); }

/* Sprig divider motif */
.sprig-divider { display: flex; justify-content: center; padding-block: clamp(1.5rem, 4vw, 3rem); }
.sprig-divider img { width: clamp(56px, 8vw, 88px); height: auto; opacity: 0.7; }

/* ============================================================
   Buttons / CTA — restrained; the design wins, not the button
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-primary); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.01em; padding: 0.85rem 1.6rem; border: 1.5px solid transparent;
  transition: transform var(--motion-duration) var(--motion-ease),
              background-color var(--motion-duration) var(--motion-ease),
              color var(--motion-duration) var(--motion-ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-amber { background: var(--color-accent); color: var(--color-on-accent); }
.btn-amber:hover { background: #f3ae2e; }
.btn-ghost { background: transparent; color: var(--color-on-primary); border-color: color-mix(in srgb, var(--color-on-primary) 45%, transparent); }
.btn-ghost:hover { border-color: var(--color-accent); color: var(--color-accent); }
.btn-ghost-dark { background: transparent; color: var(--color-primary); border-color: color-mix(in srgb, var(--color-primary) 35%, transparent); }
.btn-ghost-dark:hover { border-color: var(--color-accent); }
.link-arrow {
  font-family: var(--font-secondary); font-weight: 600; color: var(--color-secondary);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.link-arrow::after { content: "\2192"; transition: transform var(--motion-duration) var(--motion-ease); }
.link-arrow:hover::after { transform: translateX(4px); }
.underline-grow { position: relative; }
.underline-grow::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--color-accent); transition: width var(--motion-duration) var(--motion-ease);
}
.underline-grow:hover::after, .underline-grow:focus-visible::after { width: 100%; }

/* Chip tag (small category label pill) */
.chip-tag {
  display: inline-flex; align-items: center; font-family: var(--font-secondary);
  font-weight: 700; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.7rem;
}

/* ============================================================
   Reveal gating (only under html.js) — content visible without JS
   ============================================================ */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--motion-ease), transform .6s var(--motion-ease); }
html.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Header / Nav — Tinted Masthead Band + scroll-away
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 200; background: var(--color-primary);
  overflow: visible; /* future-proofs a raised/breakout logo */
  transition: transform var(--motion-duration) var(--motion-ease);
}
.site-header.nav-hidden { transform: translateY(-110%); }
.nav-inner {
  min-height: var(--nav-h); display: flex; align-items: center; gap: 1.5rem;
  padding-inline: clamp(1.25rem, 4vw, 3rem); max-width: 1440px; margin-inline: auto;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { height: 44px; width: auto; max-width: 200px; }
.nav-drawer { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.75rem); flex: 1 1 auto; }
.nav-links {
  display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.75rem);
  margin-left: auto; list-style: none;
}
.nav-links a {
  font-family: var(--font-secondary); font-weight: 500; font-size: 15px;
  color: var(--color-on-primary); position: relative; padding-block: 0.4rem;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--color-accent); }
.nav-actions { display: flex; align-items: center; gap: 1rem; flex: 0 0 auto; }
.nav-find {
  font-family: var(--font-secondary); font-weight: 600; font-size: 15px;
  color: var(--color-on-primary);
}
.nav-find:hover { color: var(--color-accent); }
.nav-book {
  font-family: var(--font-primary); font-weight: 700; font-size: 14px;
  background: var(--color-accent); color: var(--color-on-accent);
  padding: 0.6rem 1.1rem;
}
.nav-book:hover { background: #f3ae2e; }
.nav-toggle { display: none; background: transparent; border: none; color: var(--color-on-primary); font-size: 1.6rem; padding: 0.3rem; }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav-drawer {
    position: fixed; inset: var(--nav-h) 0 auto 0; background: var(--color-primary-dark);
    flex-direction: column; align-items: flex-start; gap: 0.25rem; padding: 1.25rem clamp(1.25rem,4vw,3rem) 2rem;
    display: none; box-shadow: 0 18px 40px -12px rgba(0,0,0,.5);
  }
  .nav-drawer.is-open { display: flex; }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 0.25rem; margin-left: 0; width: 100%; }
  .nav-links a { font-size: 1.1rem; padding-block: 0.6rem; width: 100%; border-bottom: 1px solid color-mix(in srgb, var(--color-on-primary) 12%, transparent); }
  .nav-actions { flex-direction: column; align-items: stretch; gap: 0.6rem; width: 100%; margin-top: 0.75rem; }
  .nav-find { padding: 0.6rem 0; }
  .nav-book { text-align: center; }
}

/* ============================================================
   HERO — Swatch-Wall Crossbar (home)
   ============================================================ */
.hero-swatch { position: relative; background: var(--color-primary); }
.swatch-wall {
  display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: minmax(0, 1fr);
  height: min(78vh, 760px); min-height: 460px;
}
.swatch-tile { position: relative; overflow: hidden; display: block; min-width: 0; }
.swatch-tile img { width: 100%; height: 100%; object-fit: cover; }
.swatch-tile.is-chip { display: flex; align-items: flex-end; padding: 0.9rem; }
.swatch-tile .tile-name {
  font-family: var(--font-primary); font-weight: 700; font-size: 0.95rem; line-height: 1.05;
  z-index: 2;
}
.swatch-tile .tile-num {
  position: absolute; top: 0.5rem; right: 0.7rem; font-family: var(--font-primary);
  font-weight: 800; font-size: 1.1rem; opacity: 0.55; z-index: 2;
}
/* warm-under-attention hover */
.swatch-tile.is-photo::after {
  content: ""; position: absolute; inset: 0; background: var(--color-accent);
  mix-blend-mode: soft-light; opacity: 0; transition: opacity var(--motion-duration-slow) var(--motion-ease);
}
.swatch-tile:hover, .swatch-tile:focus-visible { transform: translateY(-3px); z-index: 3; }
.swatch-tile.is-photo:hover::after, .swatch-tile.is-photo:focus-visible::after { opacity: 0.5; }
.swatch-tile.is-chip:hover { filter: brightness(1.08); }
.swatch-tile { transition: transform var(--motion-duration-slow) var(--motion-ease), filter var(--motion-duration) var(--motion-ease); }

/* deal-in cascade */
html.js .swatch-tile { opacity: 0; transform: translateY(14px) scale(0.98); }
html.js .swatch-wall.dealt .swatch-tile { opacity: 1; transform: none; transition: opacity .5s var(--motion-ease), transform .5s var(--motion-ease); }
@media (prefers-reduced-motion: reduce) {
  html.js .swatch-tile { opacity: 1; transform: none; }
}

.hero-crossbar {
  position: absolute; left: 0; right: 0; top: clamp(1.5rem, 6vh, 4rem); z-index: 6;
  display: flex; justify-content: center; pointer-events: none;
}
.hero-crossbar-inner {
  background: color-mix(in srgb, var(--color-primary) 88%, transparent);
  padding: clamp(1.1rem, 3vw, 2rem) clamp(1.5rem, 4vw, 3rem); max-width: 1100px;
  pointer-events: auto; text-align: center;
}
.hero-crossbar h1.display { color: var(--color-on-primary); }
.hero-crossbar .hero-actions { display: flex; gap: 1rem; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 1.4rem; }
.hero-scroll-cue { font-family: var(--font-secondary); font-size: 0.9rem; color: color-mix(in srgb, var(--color-on-primary) 80%, transparent); }

@media (max-width: 720px) {
  .swatch-wall { grid-template-columns: repeat(2, 1fr); height: auto; }
  .swatch-tile { aspect-ratio: 1 / 1; }
  .hero-crossbar { position: static; padding: 2rem 1rem 0; }
  .hero-crossbar-inner { background: transparent; }
  .hero-swatch .hero-crossbar h1.display { font-size: clamp(2.4rem, 11vw, 3.4rem); }
}

/* ============================================================
   Category interest selector (rows-as-fields)
   ============================================================ */
.cat-selector { display: grid; gap: 0.75rem; }
.cat-row {
  display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 1.25rem;
  padding: clamp(1rem, 2.4vw, 1.7rem) clamp(1.25rem, 3vw, 2.2rem);
  color: var(--row-ink, #fff); background: var(--row-bg, #444); position: relative; overflow: hidden;
  transition: filter var(--motion-duration) var(--motion-ease);
}
.cat-row:hover { filter: brightness(1.06); }
.cat-row .cat-num { font-family: var(--font-primary); font-weight: 800; font-size: 1.4rem; opacity: 0.65; }
.cat-row .cat-body h3 { color: inherit; }
.cat-row .cat-body p { font-size: 0.95rem; margin-top: 0.2rem; opacity: 0.92; }
.cat-row .cat-inset { width: 120px; height: 72px; object-fit: cover; flex: 0 0 auto;
  object-position: 35% 55%;
}
.cat-row .cat-chevron {
  width: 2.4rem; height: 2.4rem; border-radius: 50%; background: var(--color-accent); color: var(--color-on-accent);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex: 0 0 auto;
  transition: transform var(--motion-duration) var(--motion-ease);
}
.cat-row:hover .cat-chevron { transform: translateX(5px); }
@media (max-width: 720px) {
  .cat-row { grid-template-columns: auto 1fr auto; }
  .cat-row .cat-inset { display: none; }
}

/* ============================================================
   Investment range selector (typographic bands)
   ============================================================ */
.invest-bands { display: flex; flex-wrap: wrap; gap: clamp(1rem, 4vw, 3rem); align-items: baseline; }
.invest-band { display: inline-flex; flex-direction: column; gap: 0.2rem; }
.invest-band .invest-fig { font-family: var(--font-primary); font-weight: 800; font-size: clamp(1.6rem, 3.4vw, 2.6rem); color: var(--color-primary); position: relative; }
.invest-band .invest-fig::after { content: ""; position: absolute; left: 0; bottom: -4px; height: 3px; width: 0; background: var(--color-accent); transition: width var(--motion-duration) var(--motion-ease); }
.invest-band:hover .invest-fig::after, .invest-band:focus-visible .invest-fig::after { width: 100%; }
.invest-band .invest-label { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-secondary); font-weight: 600; }
.invest-note { margin-top: 1.75rem; color: var(--color-text-secondary); }

/* ============================================================
   Featured / listing rows (editorial)
   ============================================================ */
.fav-lead { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.fav-figure { overflow: hidden; }
.fav-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--motion-duration-slow) var(--motion-ease); }
.hover-zoom { overflow: hidden; }
.hover-zoom img { transition: transform var(--motion-duration-slow) var(--motion-ease); }
.hover-zoom:hover img { transform: scale(1.05); }
.fav-body h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.particulars { font-family: var(--font-secondary); font-size: 0.9rem; color: var(--color-text-secondary); font-weight: 500; margin-top: 0.9rem; display: flex; flex-wrap: wrap; gap: 0.5rem 0.9rem; align-items: center; }
.particulars .sep { color: var(--color-border); }
.fav-secondary { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 3vw, 2rem); margin-top: clamp(2rem, 5vw, 3.5rem); }
.fav-card .fav-figure { aspect-ratio: 4 / 3; margin-bottom: 0.9rem; }
.fav-card h4 { font-family: var(--font-primary); font-weight: 600; font-size: 1.25rem; }
@media (max-width: 820px) { .fav-lead { grid-template-columns: 1fr; } .fav-secondary { grid-template-columns: 1fr; } }

/* ============================================================
   Quiz CTA (numbered index on plum)
   ============================================================ */
.quiz-cta { background: var(--color-primary); color: var(--color-on-primary); text-align: center; }
.quiz-index { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(0.6rem, 2vw, 1.4rem); margin-bottom: 1.75rem; }
.quiz-index span { font-family: var(--font-primary); font-weight: 800; font-size: clamp(2.2rem, 7vw, 5rem); color: color-mix(in srgb, var(--color-primary-light) 70%, var(--color-on-primary)); line-height: 1; }
html.js .quiz-index span { opacity: 0.25; }
html.js .quiz-index.lit span { opacity: 1; transition: opacity .4s var(--motion-ease); }
.quiz-index span.amber { color: var(--color-accent); }
.quiz-cta h2 { color: var(--color-on-primary); max-width: 20ch; margin-inline: auto; }
.quiz-cta .btn { margin-top: 1.75rem; }

/* ============================================================
   Money band (deep terracotta) + How It Works
   ============================================================ */
.money-band { background: var(--color-terracotta-field); color: var(--color-on-primary); }
.money-figure { font-family: var(--font-primary); font-weight: 800; font-size: clamp(2.2rem, 6vw, 4.2rem); line-height: 1.02; letter-spacing: -0.01em; max-width: 16ch; }
.money-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; margin-top: clamp(2rem, 4vw, 3rem); }
.money-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.25rem, 3vw, 2.5rem); }
.money-cols h3 { color: var(--color-on-primary); font-size: 1.15rem; margin-bottom: 0.6rem; }
.money-cols p { font-size: 1rem; }
.money-aside img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.money-aside figcaption { font-size: 0.8rem; opacity: 0.8; margin-top: 0.5rem; }
.formula { margin-top: clamp(2rem, 4vw, 3rem); display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.25rem; }
.formula-step { display: flex; gap: 0.75rem; align-items: baseline; }
.formula-step .fnum { font-family: var(--font-primary); font-weight: 800; font-size: 1.5rem; color: var(--color-accent); }
.formula-step h4 { color: var(--color-on-primary); }
.formula-step p { font-size: 0.9rem; opacity: 0.9; margin-top: 0.15rem; }
@media (max-width: 820px) { .money-grid { grid-template-columns: 1fr; } .money-cols { grid-template-columns: 1fr; } }

/* ============================================================
   Education teaser (texture ground)
   ============================================================ */
.texture-band { position: relative; color: var(--color-on-primary); }
.texture-band .tex-bg { position: absolute; inset: 0; z-index: 0; }
.texture-band .tex-bg img { width: 100%; height: 100%; object-fit: cover; }
.texture-band .tex-scrim { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-primary) 72%, transparent); z-index: 1; }
.texture-band .shell { position: relative; z-index: 2; }
.edu-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(1.5rem, 4vw, 3rem); margin-top: 2rem; }
.edu-item .kicker { color: var(--color-accent); }
.edu-item h3 { color: var(--color-on-primary); margin-block: 0.5rem 0.9rem; }
.edu-item a { color: var(--color-accent); font-weight: 600; }

/* ============================================================
   Testimonials (review stream + pinned amber rail)
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: 1fr 320px; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.review-stream { display: grid; gap: 0; }
.review { padding-block: clamp(1.5rem, 3vw, 2.25rem); border-bottom: 1px solid var(--color-border); }
.review:first-child { padding-top: 0; }
.review .stars { color: var(--color-accent); letter-spacing: 0.15em; font-size: 0.95rem; }
.review h3 { font-size: 1.25rem; margin-block: 0.5rem 0.5rem; }
.review p { color: var(--color-text-secondary); max-width: 62ch; }
.review .attrib { margin-top: 0.7rem; font-weight: 600; font-size: 0.9rem; }
.pinned-rail {
  position: sticky; top: calc(var(--nav-h) + 1.5rem); background: var(--color-accent);
  color: var(--color-on-accent); padding: clamp(1.75rem, 3vw, 2.5rem);
}
.pinned-rail .rail-quote { font-family: var(--font-primary); font-weight: 700; font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.15; }
.pinned-rail .rail-attrib { margin-top: 1rem; font-weight: 600; font-size: 0.9rem; }
@media (max-width: 820px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .pinned-rail { position: static; order: -1; }
}

/* ============================================================
   Final CTA (plum + photo sliver)
   ============================================================ */
.final-cta { background: var(--color-primary); color: var(--color-on-primary); text-align: center; position: relative; }
.final-cta h2 { color: var(--color-on-primary); max-width: 20ch; margin-inline: auto; }
.final-cta .btn { margin-top: 1.75rem; }
.final-sliver { height: clamp(90px, 14vh, 150px); overflow: hidden; }
.final-sliver img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--color-primary); color: var(--color-on-primary); }
.footer-upper { padding-block: clamp(2.5rem, 6vw, 4.5rem); border-bottom: 1px solid color-mix(in srgb, var(--color-on-primary) 14%, transparent); }
.footer-upper .foot-head { font-family: var(--font-primary); font-weight: 800; font-size: clamp(2rem, 5vw, 3.6rem); color: var(--color-accent); line-height: 1; }
.footer-upper .foot-links { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 1.5rem; }
.footer-upper .foot-links a { color: var(--color-accent); font-family: var(--font-primary); font-weight: 600; }
.footer-upper .foot-links a:hover { color: var(--color-on-primary); }
.footer-lower { padding-block: clamp(2.5rem, 5vw, 3.5rem); display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
.footer-lower .foot-brand img { height: 40px; width: auto; max-width: 160px; margin-bottom: 1.1rem; }
.footer-lower p, .footer-lower a, .footer-lower li { color: color-mix(in srgb, var(--color-on-primary) 88%, transparent); }
.foot-col h4 { color: var(--color-accent); font-family: var(--font-primary); font-weight: 700; margin-bottom: 0.9rem; letter-spacing: 0; }
.foot-contact { list-style: none; display: grid; gap: 0.65rem; font-family: var(--font-secondary); font-variant-numeric: tabular-nums; }
.foot-contact li { display: flex; gap: 0.6rem; align-items: flex-start; }
.foot-contact i { color: var(--color-accent); margin-top: 0.15rem; }
.foot-contact a:hover { color: var(--color-accent); }
.foot-sitemap { list-style: none; display: grid; gap: 0.55rem; }
.foot-sitemap a:hover { color: var(--color-accent); }
.social-row { display: flex; gap: 0.9rem; margin-top: 1.1rem; }
.social-row a { width: 2.3rem; height: 2.3rem; border: 1px solid color-mix(in srgb, var(--color-on-primary) 30%, transparent); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; color: var(--color-on-primary); transition: color var(--motion-duration), border-color var(--motion-duration); }
.social-row a:hover { color: var(--color-accent); border-color: var(--color-accent); }
.footer-disclaimer { padding-block: clamp(1.5rem, 3vw, 2rem); border-top: 1px solid color-mix(in srgb, var(--color-on-primary) 14%, transparent); font-size: 0.8rem; line-height: 1.6; color: color-mix(in srgb, var(--color-on-primary) 72%, transparent); }
@media (max-width: 820px) { .footer-lower { grid-template-columns: 1fr; } }

/* ============================================================
   Forms (.contact-form and lead captures)
   ============================================================ */
.contact-form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-family: var(--font-secondary); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.04em; }
.field input, .field textarea, .field select {
  font-family: var(--font-secondary); font-size: 1rem; padding: 0.8rem 0.9rem;
  background: var(--color-surface); color: var(--color-text);
  border: 1.5px solid var(--color-border); width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--color-accent); outline: none; }
.field textarea { min-height: 130px; resize: vertical; }
.contact-form button[type="submit"] { justify-self: start; }
.inline-form { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: stretch; }
.inline-form .field { flex: 1 1 200px; }
.inline-form input { background: var(--color-surface); }

/* Newsletter band (plum) */
.newsletter-band { background: var(--color-primary); color: var(--color-on-primary); }
.newsletter-band h2 { color: var(--color-on-primary); }
.newsletter-form { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; max-width: 560px; }
.newsletter-form input { flex: 1 1 260px; padding: 0.85rem 1rem; border: 1.5px solid color-mix(in srgb, var(--color-on-primary) 30%, transparent); background: var(--color-surface); color: var(--color-text); }
.newsletter-form input:focus { border-color: var(--color-accent); outline: none; }

/* ============================================================
   Page hero (interior masthead over photo)
   ============================================================ */
.page-hero { position: relative; color: var(--color-on-primary); display: flex; align-items: flex-end; min-height: clamp(320px, 46vh, 520px); }
.page-hero .ph-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero .ph-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.page-hero .ph-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, color-mix(in srgb, var(--color-primary) 80%, transparent) 0%, color-mix(in srgb, var(--color-primary) 40%, transparent) 60%, transparent 100%); }
.page-hero .shell { position: relative; z-index: 2; padding-block: clamp(2rem, 6vw, 4rem); }
.page-hero .eyebrow { color: var(--color-accent); }
.page-hero h1 { color: var(--color-on-primary); max-width: 18ch; }
.page-hero p { color: color-mix(in srgb, var(--color-on-primary) 92%, transparent); max-width: 52ch; margin-top: 0.9rem; }

/* Full-bleed welcome photo band (contact) */
.welcome-band { position: relative; min-height: clamp(340px, 52vh, 560px); display: flex; align-items: center; color: var(--color-on-primary); }
.welcome-band .wb-bg { position: absolute; inset: 0; z-index: 0; }
.welcome-band .wb-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.welcome-band .wb-panel { position: relative; z-index: 2; background: color-mix(in srgb, var(--color-primary) 82%, transparent); padding: clamp(1.5rem, 4vw, 2.75rem); max-width: 560px; }
.welcome-band .wb-panel p { color: var(--color-on-primary); font-family: var(--font-primary); font-weight: 700; font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.2; letter-spacing: -0.01em; }
.welcome-band .wb-cue { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.1rem; color: var(--color-accent); font-family: var(--font-secondary); font-weight: 600; }

/* ============================================================
   Opportunities index — filter bar + listing rows
   ============================================================ */
.filter-bar { display: grid; gap: 1.25rem; }
.filter-group { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.filter-group > .filter-label { font-family: var(--font-secondary); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-secondary); margin-right: 0.5rem; }
.filter-chip {
  font-family: var(--font-secondary); font-weight: 600; font-size: 0.85rem; padding: 0.45rem 0.9rem;
  border: 1.5px solid var(--chip-bg, var(--color-border)); background: transparent; color: var(--color-text);
  transition: background var(--motion-duration), color var(--motion-duration);
}
.filter-chip[aria-pressed="true"] { background: var(--chip-bg, var(--color-accent)); color: var(--chip-ink, #fff); border-color: var(--chip-bg, var(--color-accent)); }
.filter-city { padding: 0.6rem 0.9rem; border: 1.5px solid var(--color-border); background: var(--color-surface); min-width: 220px; }
.listing-rows { display: grid; gap: 0; margin-top: 1rem; }
.listing-row { display: grid; grid-template-columns: 240px 1fr auto; gap: clamp(1rem, 3vw, 2rem); align-items: center; padding-block: clamp(1.25rem, 3vw, 2rem); border-bottom: 1px solid var(--color-border); }
.listing-row .lr-figure { aspect-ratio: 5 / 3; overflow: hidden; }
.listing-row .lr-figure img { width: 100%; height: 100%; object-fit: cover; }
.listing-row h3 { font-size: 1.4rem; }
.tier-band { padding: 0.6rem clamp(1.25rem, 3vw, 2rem); color: var(--tier-ink, #fff); background: var(--tier-bg, var(--color-primary)); font-family: var(--font-primary); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.85rem; margin-top: 1.5rem; }
.listing-row.is-hidden { display: none; }
.no-results { padding: 2rem 0; color: var(--color-text-secondary); }
@media (max-width: 720px) { .listing-row { grid-template-columns: 1fr; } .listing-row .lr-cta { justify-self: start; } }

/* ============================================================
   Categories board (eleven chips)
   ============================================================ */
.spectrum-board { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.board-tile { position: relative; aspect-ratio: 1 / 1; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; color: var(--tile-ink, #fff); }
.board-tile.is-photo { padding: 0; }
.board-tile.is-photo img { width: 100%; height: 100%; object-fit: cover; }
.board-tile.is-chip { background: var(--tile-bg); padding: 1.1rem; }
.board-tile .bt-num { font-family: var(--font-primary); font-weight: 800; font-size: 1.5rem; opacity: 0.6; }
.board-tile .bt-name { font-family: var(--font-primary); font-weight: 700; font-size: clamp(1.1rem, 2vw, 1.6rem); line-height: 1.05; }
.board-tile.is-photo .bt-overlay { position: absolute; inset: auto 0 0 0; padding: 1rem; background: linear-gradient(0deg, color-mix(in srgb, var(--color-text) 78%, transparent), transparent); color: #fff; z-index: 2; }
.board-tile.is-photo::after { content: ""; position: absolute; inset: 0; background: var(--color-accent); mix-blend-mode: soft-light; opacity: 0; transition: opacity var(--motion-duration-slow); z-index: 1; }
.board-tile.is-photo:hover::after { opacity: 0.5; }
.board-tile.is-chip:hover { filter: brightness(1.08); }
.board-tile { transition: filter var(--motion-duration); }
@media (max-width: 900px) { .spectrum-board { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   Compare table (non-ranked)
   ============================================================ */
.compare-scroll { overflow-x: auto; }
.compare-table { border-collapse: collapse; width: 100%; min-width: 640px; }
.compare-table th, .compare-table td { text-align: left; padding: 0.9rem 1.1rem; border-bottom: 1px solid var(--color-border); vertical-align: top; font-size: 0.95rem; }
.compare-table thead th { font-family: var(--font-primary); font-weight: 700; font-size: 1.05rem; background: var(--color-surface); position: sticky; top: 0; }
.compare-table tbody th { font-family: var(--font-secondary); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-secondary); background: var(--color-surface); position: sticky; left: 0; z-index: 1; min-width: 150px; }
.compare-table .chip-tag { margin-bottom: 0.4rem; }
.how-to-read { background: var(--color-primary); color: var(--color-on-primary); }
.how-to-read h2 { color: var(--color-on-primary); }

/* ============================================================
   Quiz page (one question at a time)
   ============================================================ */
.quiz-stage { background: var(--color-primary); color: var(--color-on-primary); min-height: 60vh; }
.quiz-progress { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.quiz-progress span { font-family: var(--font-primary); font-weight: 800; font-size: 1.3rem; opacity: 0.3; }
.quiz-progress span.done, .quiz-progress span.active { opacity: 1; color: var(--color-accent); }
.quiz-q { margin-bottom: 2.5rem; }
html.js .quiz-q { display: none; }
html.js .quiz-q.active { display: block; }
.quiz-q h2 { color: var(--color-on-primary); }
.quiz-q .q-num { color: var(--color-accent); font-family: var(--font-primary); font-weight: 800; font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }
.quiz-options { display: grid; gap: 0.75rem; margin-top: 1.5rem; max-width: 640px; }
.quiz-option { display: block; text-align: left; padding: 1rem 1.25rem; background: color-mix(in srgb, var(--color-on-primary) 8%, transparent); border: 1.5px solid color-mix(in srgb, var(--color-on-primary) 25%, transparent); color: var(--color-on-primary); font-family: var(--font-secondary); font-size: 1.05rem; }
.quiz-option:hover, .quiz-option.selected { border-color: var(--color-accent); background: color-mix(in srgb, var(--color-accent) 18%, transparent); }
.quiz-nav { display: flex; gap: 1rem; margin-top: 1.5rem; }
.quiz-gate { background: var(--color-bg); color: var(--color-text); }
html.js .quiz-gate.hidden-step { display: none; }
.quiz-gate .contact-form { max-width: 520px; }
.quiz-result { }
html.js .quiz-result.hidden-step { display: none; }
.result-preview { padding: clamp(2rem, 5vw, 3.5rem); color: var(--rp-ink, #fff); background: var(--rp-bg, var(--color-primary)); }
.result-preview h2 { color: inherit; }
.js-only { display: none; }
html.js .js-only { display: block; }
html.js .no-js-only { display: none; }

/* ============================================================
   Colon-label index (about / category what-it-is)
   ============================================================ */
.colon-pair { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; padding-block: clamp(2rem, 4vw, 3rem); border-bottom: 1px solid var(--color-border); }
.colon-pair:nth-child(even) .cp-figure { order: 2; }
.colon-pair .cp-figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.colon-pair .colon-label { display: block; margin-bottom: 0.9rem; }
.colon-pair .colon-label:hover { color: var(--color-accent); }
.colon-pair h2 { margin-bottom: 0.75rem; }
@media (max-width: 760px) { .colon-pair { grid-template-columns: 1fr; } .colon-pair:nth-child(even) .cp-figure { order: 0; } }

/* Inside-the-space photo strip (category detail, lightbox) */
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.photo-strip figure { margin: 0; overflow: hidden; aspect-ratio: 4 / 3; cursor: zoom-in; }
.photo-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--motion-duration-slow) var(--motion-ease); }
.photo-strip figure:hover img { transform: scale(1.05); }
@media (max-width: 720px) { .photo-strip { grid-template-columns: 1fr 1fr; } }

/* Category detail header field */
.cat-header { color: var(--ch-ink, #fff); background: var(--ch-bg, var(--color-primary)); position: relative; overflow: hidden; }
.cat-header .cat-watermark { position: absolute; top: -2rem; right: 1rem; font-family: var(--font-primary); font-weight: 800; font-size: clamp(9rem, 26vw, 20rem); opacity: 0.14; line-height: 1; pointer-events: none; }
.cat-header h1 { color: inherit; position: relative; z-index: 1; }
.cat-header .cat-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; position: relative; z-index: 1; }

/* Video embed (lazy iframe) */
.video-embed { position: relative; aspect-ratio: 16 / 9; width: 100%; background: var(--color-primary-dark); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.brands-in-lane { list-style: none; display: grid; gap: 0.5rem; margin-top: 1.5rem; }
.brands-in-lane a { font-family: var(--font-primary); font-weight: 600; }

/* Opportunity detail particulars bar */
.opp-hero { position: relative; }
.opp-hero .oh-bg { aspect-ratio: 21 / 9; max-height: 60vh; overflow: hidden; }
.opp-hero .oh-bg img { width: 100%; height: 100%; object-fit: cover; }
.particulars-bar { background: var(--color-surface); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.particulars-bar .pb-inner { display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; padding-block: 1.25rem; justify-content: space-between; }
.particulars-bar h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.provisional { font-size: 0.78rem; color: var(--color-text-secondary); font-style: italic; }

/* Two-up generic split */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.split-2 img { width: 100%; object-fit: cover; }
@media (max-width: 760px) { .split-2 { grid-template-columns: 1fr; } }

.stack-narrow { max-width: 820px; }
.section-head { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.section-head .eyebrow { color: var(--color-secondary); display: block; margin-bottom: 0.6rem; }

/* 404 */
.err-page { min-height: 60vh; display: flex; align-items: center; text-align: center; background: var(--color-primary); color: var(--color-on-primary); }
.err-page h1 { color: var(--color-on-primary); font-size: clamp(3rem, 12vw, 7rem); }

/* ============================================================
   Gallery lightbox chrome (scaffolded mechanism — restyled)
   ============================================================ */
.lightbox-zoomable { cursor: zoom-in; }
.lightbox { position: fixed; inset: 0; z-index: 320; display: none; align-items: center; justify-content: center; padding: clamp(1rem, 3vw, 2.5rem); }
.lightbox.is-open { display: flex; animation: lightbox-in var(--motion-duration) var(--motion-ease); }
@keyframes lightbox-in { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .lightbox.is-open { animation: none; } }
.lightbox__scrim { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-primary) 90%, transparent); }
.lightbox__frame { position: relative; z-index: 1; margin: 0; max-width: min(1200px, 92vw); max-height: 86vh; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.lightbox__img { max-width: 100%; max-height: 80vh; width: auto; height: auto; object-fit: contain; box-shadow: 0 24px 80px -16px rgba(0,0,0,.6); }
.lightbox__caption { font-family: var(--font-secondary); font-size: 0.9rem; line-height: 1.5; color: var(--color-bg); text-align: center; max-width: 60ch; }
.lightbox__counter { position: absolute; bottom: 1.1rem; left: 50%; transform: translateX(-50%); z-index: 1; font-family: var(--font-secondary); font-size: 0.8rem; letter-spacing: 0.08em; color: var(--color-bg); }
.lightbox__close, .lightbox__prev, .lightbox__next { position: absolute; z-index: 2; width: 2.6rem; height: 2.6rem; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; background: var(--color-bg); color: var(--color-text); box-shadow: 0 2px 10px rgba(0,0,0,.25); font-size: 1.15rem; line-height: 1; }
.lightbox__close:hover, .lightbox__close:focus-visible, .lightbox__prev:hover, .lightbox__prev:focus-visible, .lightbox__next:hover, .lightbox__next:focus-visible { color: var(--color-accent); }
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__caption[hidden], .lightbox__counter[hidden], .lightbox__prev[hidden], .lightbox__next[hidden] { display: none; }

/* ============================================================
   Self-hosted Google Fonts (localized by 20_performance_sweep)
   ============================================================ */
/* cyrillic-ext */
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpQ59CxCis4UvI.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* vietnamese */
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpS59CxCis4UvI.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpT59CxCis4UvI.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpd59CxCis4.woff2') format('woff2');
  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;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpQ59CxCis4UvI.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* vietnamese */
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpS59CxCis4UvI.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpT59CxCis4UvI.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpd59CxCis4.woff2') format('woff2');
  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;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpQ59CxCis4UvI.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* vietnamese */
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpS59CxCis4UvI.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpT59CxCis4UvI.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpd59CxCis4.woff2') format('woff2');
  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;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpQ59CxCis4UvI.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* vietnamese */
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpS59CxCis4UvI.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpT59CxCis4UvI.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpd59CxCis4.woff2') format('woff2');
  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;
}
/* greek */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/8vIH7w4qzmVxm2NL9G78HEZnMg.woff2') format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* latin-ext */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/8vIH7w4qzmVxm25L9G78HEZnMg.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/8vIH7w4qzmVxm2BL9G78HEY.woff2') format('woff2');
  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;
}
/* greek */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/8vIH7w4qzmVxm2NL9G78HEZnMg.woff2') format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* latin-ext */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/8vIH7w4qzmVxm25L9G78HEZnMg.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/8vIH7w4qzmVxm2BL9G78HEY.woff2') format('woff2');
  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;
}
/* greek */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/8vIH7w4qzmVxm2NL9G78HEZnMg.woff2') format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* latin-ext */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/8vIH7w4qzmVxm25L9G78HEZnMg.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/8vIH7w4qzmVxm2BL9G78HEY.woff2') format('woff2');
  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;
}
