/*
 * styles.css — Cloud Smoke Shop
 * The Deal Board: a dark color-cell retail board. Board Black field, one Deal-Red
 * cell where the money moves, Cloud Blue as controlled sign-light, scarce icy
 * near-white plates. Glossy, never glowing. One gesture, then stillness.
 */

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --color-primary: #181818;      /* Board Black */
  --color-bg: #181818;           /* board field, every page */
  --color-surface: #22232A;      /* Panel Graphite */
  --color-riser: #2B2C34;        /* Graphite Riser (hover lift) */
  --color-seam: #0E0E12;         /* Seam Black (utility strip, mobile bar) */
  --color-accent: #A01020;       /* Deal Red — where money moves */
  --color-accent-ink: #E8F4FF;   /* text on red */
  --color-secondary: #0A6FA8;    /* Cloud Blue — sign-light */
  --color-blue-dark: #074D75;    /* darkened blue under small white text */
  --color-text: #E8F4FF;         /* Specular Ice */
  --color-text-secondary: #9FB0C2; /* Cool Slate */
  --color-border: #34363F;       /* Hairline seam */

  --font-primary: 'Familjen Grotesk', 'Segoe UI', sans-serif;   /* display / signage */
  --font-secondary: 'Hanken Grotesk', 'Segoe UI', sans-serif;   /* warm body */
  --font-accent: var(--font-primary);                            /* no script face */
  --font-size-base: 16px;
  --spacing-base: 8px;

  --motion-duration: 300ms;
  --motion-duration-slow: 560ms;
  --motion-ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --wrap: 1200px;
  --nav-upper-h: 64px;
}

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

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

body {
  font-family: var(--font-secondary, sans-serif);
  background-color: var(--color-bg, #181818);
  color: var(--color-text, #E8F4FF);
  line-height: 1.65;
  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-secondary); text-decoration: none; }
a:hover { color: var(--color-text); }
ul { list-style: none; }
strong { font-weight: 600; }

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

/* Skip navigation link — WCAG 2.4.1 */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--color-surface, #22232A);
  color: var(--color-text, #E8F4FF);
  font-weight: 600; text-decoration: none;
  border: 2px solid var(--color-accent, #A01020);
  border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Typography hierarchy
   ============================================================ */
.display, .h1, .h2, .h3, .h4 { font-family: var(--font-primary); }
.tnum { font-variant-numeric: tabular-nums; }

.display {
  font-weight: 700;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 0.92; letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.h1 { font-weight: 700; font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.02; letter-spacing: -0.005em; }
.h2 { font-weight: 600; font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.08; }
.h3 { font-weight: 600; font-size: 1.3rem; line-height: 1.15; }
.h4 { font-weight: 600; font-size: 1.05rem; line-height: 1.2; letter-spacing: 0.01em; }
.lead { font-family: var(--font-secondary); font-weight: 500; font-size: 1.2rem; line-height: 1.5; }
.body { font-family: var(--font-secondary); font-weight: 400; font-size: 1rem; line-height: 1.65; }
.small { font-family: var(--font-secondary); font-weight: 500; font-size: 0.875rem; line-height: 1.5; }
.caption {
  font-family: var(--font-secondary); font-weight: 600; font-size: 0.75rem;
  line-height: 1.4; letter-spacing: 0.14em; text-transform: uppercase;
}
.muted { color: var(--color-text-secondary); }
.ink-red { color: var(--color-accent); }
.ink-blue { color: var(--color-secondary); }

/* ============================================================
   Layout primitives
   ============================================================ */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2.5rem); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section-head { margin-bottom: clamp(1.5rem, 4vw, 3rem); }
.section-index {
  font-family: var(--font-primary); font-weight: 700; font-variant-numeric: tabular-nums;
  font-size: 0.9rem; letter-spacing: 0.18em; color: var(--color-text-secondary);
  display: inline-block; margin-bottom: 0.75rem;
}
.rule-red { width: 3rem; height: 3px; background: var(--color-accent); border: 0; margin-block: 1.25rem; }

/* ============================================================
   Buttons & pills — restrained, the design wins not the button
   ============================================================ */
.pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-secondary); font-weight: 600; font-size: 0.875rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.6rem 1.15rem; border: 1px solid transparent;
  transition: background var(--motion-duration) var(--motion-ease),
              color var(--motion-duration) var(--motion-ease),
              border-color var(--motion-duration) var(--motion-ease);
  cursor: pointer; white-space: nowrap;
}
.pill--deals { background: var(--color-accent); color: var(--color-accent-ink); }
.pill--deals:hover { background: #b8172a; color: #fff; }
.pill--rewards { background: transparent; color: var(--color-text); border-color: var(--color-border); }
.pill--rewards:hover { border-color: var(--color-secondary); color: var(--color-secondary); }
.btn-submit {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-secondary); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--color-accent); color: var(--color-accent-ink);
  border: 0; padding: 0.85rem 1.6rem; cursor: pointer;
  transition: background var(--motion-duration) var(--motion-ease);
}
.btn-submit:hover { background: #b8172a; }
.textlink {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--color-secondary); font-weight: 600;
  border-bottom: 1px solid transparent; transition: border-color var(--motion-duration) var(--motion-ease);
}
.textlink:hover { color: var(--color-text); border-bottom-color: var(--color-secondary); }

/* ============================================================
   Utility strip (above masthead)
   ============================================================ */
.utility { background: var(--color-seam); border-bottom: 1px solid var(--color-border); }
.utility__inner {
  max-width: var(--wrap); margin-inline: auto; padding: 0.4rem clamp(1rem, 4vw, 2.5rem);
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  font-family: var(--font-secondary); font-weight: 500; font-size: 0.875rem;
  color: var(--color-text);
}
.utility__item { display: inline-flex; align-items: center; gap: 0.5rem; }
.utility__item + .utility__item::before {
  content: "\2022"; color: var(--color-text-secondary); margin-right: 1.25rem;
  margin-left: -0.75rem;
}
.utility__state { display: inline-flex; align-items: center; gap: 0.55rem; font-weight: 600; }
.open-dot {
  width: 9px; height: 9px; border-radius: 50%; display: inline-block;
  background: var(--color-text-secondary);
}
.open-dot.is-open { background: var(--color-accent); box-shadow: 0 0 0 3px rgba(160,16,32,0.18); }
.utility__student { margin-left: auto; }
.utility__dismiss {
  background: none; border: 0; color: var(--color-text-secondary); cursor: pointer;
  font-size: 1rem; line-height: 1; padding: 0 0.25rem; margin-left: 0.4rem;
}
.utility__dismiss:hover { color: var(--color-text); }
.utility.is-dismissed .utility__student { display: none; }

/* ============================================================
   Masthead (two-tier)
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 100; }
.mast { background: var(--color-bg); }
.mast__upper {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem;
  max-width: var(--wrap); margin-inline: auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem); min-height: var(--nav-upper-h);
  border-bottom: 1px solid var(--color-border);
}
.mast__brand { display: inline-flex; align-items: center; }
.mast__brand img { height: 48px; width: auto; max-width: 200px; display: block; } /* client logo, standard, intact */
.mast__actions { grid-column: 3; display: inline-flex; align-items: center; gap: 0.6rem; }
.mast__toggle {
  display: none; grid-column: 3; background: none; border: 1px solid var(--color-border);
  color: var(--color-text); padding: 0.5rem 0.7rem; cursor: pointer; align-items: center; gap: 0.4rem;
  font-family: var(--font-secondary); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.mast__toggle i { font-size: 1.2rem; }

.mast__cats {
  background: var(--color-bg);
  transition: transform var(--motion-duration) var(--motion-ease), opacity var(--motion-duration) var(--motion-ease);
}
.mast__cats-inner {
  max-width: var(--wrap); margin-inline: auto; padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: flex; justify-content: center; gap: clamp(1rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--color-border);
}
.mast__cat {
  display: inline-block; padding: 0.85rem 0;
  font-family: var(--font-secondary); font-weight: 600; font-size: 0.875rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color var(--motion-duration) var(--motion-ease);
}
.mast__cat:hover { color: var(--color-secondary); }
.mast__cat--active { color: var(--color-text); border-bottom-color: var(--color-accent); }

/* condense-on-scroll: the taxonomy tier slides up-and-away */
.site-header.is-condensed .mast__cats {
  transform: translateY(-100%); opacity: 0; pointer-events: none;
  height: 0; overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .mast__cats { transition: none; }
}

/* ============================================================
   Mobile nav drawer
   ============================================================ */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200; background: var(--color-bg);
  display: flex; flex-direction: column; padding: 1.5rem clamp(1.25rem, 6vw, 2.5rem);
  transform: translateX(100%); transition: transform var(--motion-duration) var(--motion-ease);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.mobile-nav__top img { height: 44px; width: auto; }
.mobile-nav__close { background: none; border: 1px solid var(--color-border); color: var(--color-text); padding: 0.5rem 0.65rem; cursor: pointer; font-size: 1.2rem; line-height: 1; }
.mobile-nav a.mobile-nav__link {
  font-family: var(--font-primary); font-weight: 600; font-size: 1.6rem;
  color: var(--color-text); padding: 0.7rem 0; border-bottom: 1px solid var(--color-border);
  display: block;
}
.mobile-nav a.mobile-nav__link:hover { color: var(--color-secondary); }
.mobile-nav__actions { margin-top: 1.75rem; display: flex; gap: 0.75rem; }
@media (prefers-reduced-motion: reduce) { .mobile-nav { transition: none; } }

/* ============================================================
   Mobile bottom action bar (persistent, thumb-reachable)
   ============================================================ */
.action-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  background: var(--color-seam); border-top: 1px solid var(--color-secondary);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.action-bar__row { display: grid; grid-template-columns: repeat(4, 1fr); }
.action-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem;
  min-height: 56px; padding: 0.35rem 0.25rem; color: var(--color-text);
  font-family: var(--font-secondary); font-weight: 600; font-size: 0.68rem;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.action-bar a i { font-size: 1.3rem; }
.action-bar a.action-bar--deals { color: var(--color-accent); }
.action-bar a.action-bar--deals i { color: var(--color-accent); }
.action-bar a.action-bar--call i, .action-bar a.action-bar--dir i { color: var(--color-secondary); }

/* ============================================================
   Reveal-gating floor — content visible without JS
   ============================================================ */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--motion-ease), transform 0.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; }
}

/* ============================================================
   HOME — The Deal Board (hero)
   ============================================================ */
.deal-board {
  display: grid; gap: 1px; background: var(--color-border);
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto repeat(4, minmax(96px, 1fr));
  grid-template-areas:
    "brand brand brand brand brand brand"
    "deal  deal  deal  cat1  cat2  offA"
    "deal  deal  deal  cat3  cat4  offA"
    "deal  deal  deal  cat5  cat6  offB"
    "deal  deal  deal  cat5  cat6  offB";
  min-height: 82vh; position: relative;
}
.cell { background: var(--color-bg); padding: clamp(1.1rem, 2.4vw, 2rem); display: flex; min-width: 0; }
.cell--brand { grid-area: brand; align-items: center; }
.cell--brand h1 { font-family: var(--font-secondary); font-weight: 500; color: var(--color-text-secondary); font-size: 0.95rem; line-height: 1.5; }
.cell--brand strong { color: var(--color-text); font-weight: 600; }

/* the oversized red This-Week cell */
.cell--deal {
  grid-area: deal; background: var(--color-accent); color: var(--color-accent-ink);
  position: relative; overflow: hidden; flex-direction: column; justify-content: flex-end;
  padding: clamp(1.5rem, 3.2vw, 3rem);
}
.cell--deal .deal-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0.28; mix-blend-mode: screen; z-index: 0; pointer-events: none;
}
.cell--deal > * { position: relative; z-index: 1; }
.cell--deal .caption { color: rgba(232,244,255,0.85); margin-bottom: 0.75rem; }
.cell--deal .fig {
  font-family: var(--font-primary); font-weight: 700; letter-spacing: -0.01em;
  font-size: clamp(2.8rem, 7vw, 6.5rem); line-height: 0.9; font-variant-numeric: tabular-nums;
}
.cell--deal .deal-sub { font-family: var(--font-secondary); font-weight: 500; font-size: 1.05rem; max-width: 42ch; margin-top: 1rem; color: rgba(232,244,255,0.92); }
.cell--deal .deal-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; margin-top: 1.5rem; }
.deal-chip {
  font-family: var(--font-secondary); font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 0.7rem;
  border: 1px solid rgba(232,244,255,0.5); color: var(--color-accent-ink);
}
.cell--deal .deal-link { margin-top: 1.25rem; color: var(--color-accent-ink); border-bottom-color: rgba(232,244,255,0.6); }
.cell--deal .deal-link:hover { color: #fff; border-bottom-color: #fff; }

/* one-time controlled specular sweep — glossy, never glowing */
html.js .cell--deal::after {
  content: ""; position: absolute; inset: 0; z-index: 2; transform: translateX(-120%);
  background: linear-gradient(105deg, transparent 40%, rgba(232,244,255,0.30) 50%, transparent 60%);
  pointer-events: none;
}
html.js .deal-board.is-in .cell--deal::after {
  transition: transform var(--motion-duration-slow) var(--motion-ease); transform: translateX(120%);
}
@media (prefers-reduced-motion: reduce) { html.js .cell--deal::after { display: none; } }

/* blue category mini-index cells */
.cell--cat { background: var(--color-secondary); color: var(--color-text); flex-direction: column; justify-content: space-between; text-decoration: none; }
.cell--cat1 { grid-area: cat1; } .cell--cat2 { grid-area: cat2; }
.cell--cat3 { grid-area: cat3; } .cell--cat4 { grid-area: cat4; }
.cell--cat5 { grid-area: cat5; } .cell--cat6 { grid-area: cat6; }
.cell--cat .cat-name { font-family: var(--font-primary); font-weight: 600; font-size: 1.15rem; }
.cell--cat .cat-tag { font-family: var(--font-secondary); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(232,244,255,0.75); }
.cell--cat:hover { background: #0b7cbb; color: #fff; }

/* near-white offer plates */
.cell--offer { background: var(--color-text); color: var(--color-bg); flex-direction: column; justify-content: space-between; text-decoration: none; }
.cell--offA { grid-area: offA; } .cell--offB { grid-area: offB; }
.cell--offer .offer-k { font-family: var(--font-secondary); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-blue-dark); }
.cell--offer .offer-h { font-family: var(--font-primary); font-weight: 700; font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.05; color: var(--color-bg); }
.cell--offer .offer-s { font-family: var(--font-secondary); font-size: 0.85rem; color: #3a3d46; }
.cell--offer:hover { background: #fff; }

/* smoke-curl hairline threaded on a seam */
.board-curl {
  position: absolute; z-index: 3; width: clamp(70px, 8vw, 120px); height: auto;
  left: 50%; top: calc(20% ); transform: translate(-50%, -50%);
  opacity: 0.5; pointer-events: none; mix-blend-mode: screen;
}

/* ============================================================
   Deal ledger (home + /deals)
   ============================================================ */
.ledger { display: flex; flex-direction: column; }
.deal-row {
  display: grid; grid-template-columns: 1fr auto; gap: 1.5rem 2rem; align-items: start;
  padding: clamp(1.5rem, 3vw, 2.25rem) 0; border-top: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent); padding-left: clamp(1rem, 2.5vw, 1.75rem);
}
.deal-row:last-child { border-bottom: 1px solid var(--color-border); }
.deal-row__num { font-family: var(--font-primary); font-weight: 700; font-variant-numeric: tabular-nums; color: var(--color-text-secondary); font-size: 0.9rem; letter-spacing: 0.15em; margin-bottom: 0.5rem; }
.deal-row__title { font-family: var(--font-primary); font-weight: 600; font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.05; }
.deal-row__terms { color: var(--color-text-secondary); margin-top: 0.6rem; max-width: 56ch; }
.deal-row__side { display: flex; flex-direction: column; align-items: flex-start; gap: 0.6rem; min-width: 0; }
.deal-row__stores { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.store-chip {
  font-family: var(--font-secondary); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.3rem 0.65rem; border: 1px solid var(--color-border); color: var(--color-text-secondary);
}
.store-chip--active { background: var(--color-secondary); border-color: var(--color-secondary); color: var(--color-text); }
.deal-row__valid { font-family: var(--font-secondary); font-weight: 500; font-size: 0.8rem; font-variant-numeric: tabular-nums; color: var(--color-text-secondary); }
.deal-row__valid .thisweek { color: var(--color-accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.deal-row[hidden] { display: none; }

/* ============================================================
   Category ribbon (home) + category board (what-we-carry)
   ============================================================ */
.ribbon { overflow: hidden; position: relative; border-block: 1px solid var(--color-border); }
.ribbon__track {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(230px, 26vw);
  gap: 1px; background: var(--color-border); width: max-content;
}
html.js .ribbon.is-drift .ribbon__track { animation: drift 46s linear infinite; }
.ribbon.is-drift:hover .ribbon__track,
.ribbon__track:focus-within { animation-play-state: paused; }
@keyframes drift { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { html.js .ribbon.is-drift .ribbon__track { animation: none; } }

.cat-cell {
  background: var(--color-secondary); color: var(--color-text); text-decoration: none;
  padding: clamp(1.25rem, 2.5vw, 2rem); min-height: 220px; display: flex; flex-direction: column;
  justify-content: space-between; position: relative; overflow: hidden; min-width: 0;
}
.cat-cell:hover { background: var(--color-riser); }
.cat-cell:hover .cat-cell__label { border-bottom-color: var(--color-accent); }
.cat-cell__name { font-family: var(--font-primary); font-weight: 600; font-size: 1.4rem; z-index: 2; }
.cat-cell__items { font-family: var(--font-secondary); font-size: 0.85rem; color: rgba(232,244,255,0.85); z-index: 2; margin-top: 0.5rem; }
.cat-cell__label { display: inline-block; font-family: var(--font-secondary); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; border-bottom: 2px solid transparent; padding-bottom: 2px; z-index: 2; margin-top: 1rem; }
.cat-cell__21 { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(232,244,255,0.7); z-index: 2; }
.cat-cell--photo { background: var(--color-bg); }
.cat-cell--photo .cat-cell__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; transition: transform var(--motion-duration) var(--motion-ease); z-index: 0; }
.cat-cell--photo::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(24,24,24,0.35), rgba(24,24,24,0.82)); z-index: 1; }
.cat-cell--photo:hover .cat-cell__img { transform: scale(1.06); }
.cat-cell--ground .cat-cell__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; z-index: 0; }
.cat-cell--ground::before { content: ""; position: absolute; inset: 0; background: rgba(10,111,168,0.55); z-index: 1; }

/* static category board (what-we-carry) */
.cat-board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--color-border); border: 1px solid var(--color-border); }
.cat-board .cat-cell { min-height: 260px; }
.cat-board__note { font-family: var(--font-secondary); font-size: 0.82rem; color: rgba(232,244,255,0.82); z-index: 2; margin-top: 0.5rem; }

/* ============================================================
   Rewards member-card object
   ============================================================ */
.reward-wrap { display: flex; justify-content: flex-start; }
.reward-card {
  position: relative; background: var(--color-text); color: var(--color-bg);
  padding: clamp(1.75rem, 3.5vw, 2.75rem); max-width: 520px; width: 100%;
  border-left: 6px solid var(--color-secondary); overflow: hidden;
  transition: transform var(--motion-duration) var(--motion-ease);
}
.reward-card::after { content: ""; position: absolute; top: 0; right: 0; width: 45%; height: 100%; background: linear-gradient(110deg, transparent 55%, rgba(255,255,255,0.55) 72%, transparent 78%); pointer-events: none; }
.reward-card__mark { font-family: var(--font-primary); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1; color: var(--color-bg); }
.reward-card__sub { font-family: var(--font-secondary); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-blue-dark); margin-bottom: 0.75rem; }
.reward-card__benefit { font-family: var(--font-secondary); font-weight: 500; font-size: 1.1rem; color: #2a2d36; margin-top: 0.9rem; max-width: 40ch; }
.reward-card__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-top: 1.5rem; }
.reward-card .textlink { color: var(--color-blue-dark); }
.reward-card .textlink:hover { color: var(--color-accent); border-bottom-color: var(--color-accent); }
@media (prefers-reduced-motion: reduce) { .reward-card { transition: none; } }

/* steps (rewards detail) */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--color-border); border: 1px solid var(--color-border); }
.step { background: var(--color-bg); padding: clamp(1.25rem, 3vw, 2rem); }
.step__n { font-family: var(--font-primary); font-weight: 700; font-variant-numeric: tabular-nums; font-size: 2rem; color: var(--color-secondary); line-height: 1; }
.step__t { font-family: var(--font-primary); font-weight: 600; font-size: 1.1rem; margin-block: 0.6rem 0.4rem; }
.step__d { color: var(--color-text-secondary); font-size: 0.95rem; }

/* ============================================================
   Locations (four equal cards) + detail plaque
   ============================================================ */
.loc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--color-border); border: 1px solid var(--color-border); }
.loc-card {
  position: relative; background: var(--color-bg); padding: clamp(1.25rem, 2.5vw, 1.85rem);
  min-height: 260px; display: flex; flex-direction: column; overflow: hidden;
  transition: background var(--motion-duration) var(--motion-ease);
}
.loc-card:hover { background: var(--color-riser); }
.loc-card__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; opacity: 0.32; z-index: 0; }
.loc-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(24,24,24,0.55), rgba(24,24,24,0.9)); z-index: 1; }
.loc-card > * { position: relative; z-index: 2; }
.loc-card__city { font-family: var(--font-primary); font-weight: 600; font-size: 1.3rem; }
.loc-card__state { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-secondary); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-secondary); margin-top: 0.5rem; }
.loc-card__addr { font-family: var(--font-secondary); font-size: 0.9rem; color: var(--color-text-secondary); margin-top: auto; font-variant-numeric: tabular-nums; }
.loc-card__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; }
.loc-card__soon { font-family: var(--font-secondary); font-weight: 500; font-size: 0.95rem; color: var(--color-text-secondary); margin-top: auto; }

/* location detail */
.loc-header { position: relative; min-height: clamp(240px, 40vh, 420px); display: flex; align-items: flex-end; overflow: hidden; }
.loc-header__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 45%; z-index: 0; }
.loc-header::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(24,24,24,0.5), rgba(24,24,24,0.92)); z-index: 1; }
.loc-header__inner { position: relative; z-index: 2; width: 100%; }
.plaque { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
.plaque__table { border-top: 1px solid var(--color-border); }
.plaque__row { display: grid; grid-template-columns: 8rem 1fr; gap: 1rem; padding: 0.85rem 0; border-bottom: 1px solid var(--color-border); }
.plaque__row dt { font-family: var(--font-secondary); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-secondary); }
.plaque__row dd { font-family: var(--font-secondary); font-variant-numeric: tabular-nums; color: var(--color-text); }
.hours-list { display: grid; gap: 0.3rem; }
.hours-list div { display: flex; justify-content: space-between; gap: 1rem; font-variant-numeric: tabular-nums; }

/* ============================================================
   Quiet proof + About teaser
   ============================================================ */
.proof {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 8vw, 6rem); align-items: center;
  position: relative;
}
.proof__motif { position: absolute; top: -2rem; right: -1rem; width: clamp(180px, 30vw, 420px); opacity: 0.16; pointer-events: none; z-index: 0; }
.proof > * { position: relative; z-index: 1; }
.proof__line { font-family: var(--font-secondary); font-size: 0.95rem; color: var(--color-text-secondary); max-width: 34ch; }
.proof__teaser .sub { font-family: var(--font-primary); font-weight: 600; font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.1; margin-bottom: 0.75rem; }

/* ============================================================
   About / long-form reading page
   ============================================================ */
.prose { max-width: 62ch; }
.prose p { margin-bottom: 1.25rem; color: var(--color-text); }
.prose p.lead { color: var(--color-text); }
.prose .pull { font-family: var(--font-primary); font-weight: 700; font-size: clamp(1.6rem, 4vw, 2.6rem); line-height: 1.1; color: var(--color-text); margin-block: 2rem; }
.about-motif { display: block; width: 100%; max-width: 640px; margin: 2.5rem auto; opacity: 0.35; }
.legal h2 { margin-top: 2rem; margin-bottom: 0.6rem; }
.legal p { margin-bottom: 1rem; color: var(--color-text-secondary); max-width: 68ch; }
.legal .body { color: var(--color-text); }

/* ============================================================
   Contact / lead forms
   ============================================================ */
.find-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.find-plaque { position: relative; padding: clamp(1.5rem, 3vw, 2.5rem); overflow: hidden; border: 1px solid var(--color-border); }
.find-plaque__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 45%; opacity: 0.28; z-index: 0; }
.find-plaque::before { content: ""; position: absolute; inset: 0; background: rgba(24,24,24,0.72); z-index: 1; }
.find-plaque > * { position: relative; z-index: 2; }

.contact-form { display: grid; gap: 1.1rem; }
.contact-form.form--slim { grid-template-columns: 1fr auto; gap: 0.6rem; align-items: end; }
.field { display: grid; gap: 0.4rem; }
.field label { font-family: var(--font-secondary); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text); }
.field input, .field textarea {
  font-family: var(--font-secondary); font-size: 1rem; color: var(--color-text);
  background: var(--color-surface); border: 1px solid var(--color-border);
  padding: 0.75rem 0.85rem; width: 100%; transition: border-color var(--motion-duration) var(--motion-ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--color-secondary); }
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: #5c6675; }
.form-note { font-size: 0.8rem; color: var(--color-text-secondary); }

/* drag-drop resume file input */
.dropzone {
  position: relative; border: 1px dashed var(--color-border); background: var(--color-surface);
  padding: 1.5rem; text-align: center; color: var(--color-text-secondary);
  transition: border-color var(--motion-duration) var(--motion-ease), background var(--motion-duration) var(--motion-ease);
}
.dropzone.is-drag { border-color: var(--color-secondary); background: var(--color-riser); }
.dropzone i { font-size: 1.6rem; color: var(--color-secondary); }
.dropzone input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.dropzone__name { display: block; margin-top: 0.5rem; color: var(--color-text); font-weight: 600; font-size: 0.9rem; }

/* ============================================================
   Footer — mono multi-office contact directory
   ============================================================ */
.site-footer { background: var(--color-bg); border-top: 1px solid var(--color-border); }
.footer__upper {
  max-width: var(--wrap); margin-inline: auto; padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 2.5rem);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: end;
}
.footer__heading { font-family: var(--font-primary); font-weight: 800; font-size: clamp(2.5rem, 7vw, 5rem); line-height: 0.95; color: var(--color-accent); letter-spacing: -0.01em; }
.footer__nav { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.5rem; }
.footer__nav a { font-family: var(--font-primary); font-weight: 600; font-size: 1.15rem; color: var(--color-text); }
.footer__nav a:hover { color: var(--color-accent); }
.footer__alerts-label { font-family: var(--font-secondary); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-secondary); margin-bottom: 0.5rem; }

.footer__lower { background: var(--color-surface); border-top: 1px solid var(--color-border); }
.footer__lower-inner {
  max-width: var(--wrap); margin-inline: auto; padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 4vw, 2.5rem);
  display: grid; grid-template-columns: 1fr 2fr; gap: clamp(1.5rem, 5vw, 4rem);
}
.footer__brand img { height: 40px; width: auto; max-width: 160px; margin-bottom: 1rem; }
.footer__brand-name { font-family: var(--font-primary); font-weight: 600; font-size: 1.1rem; color: var(--color-text); }
.footer__social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid var(--color-border); color: var(--color-secondary); font-size: 1.3rem; }
.footer__social a:hover { color: var(--color-text); border-color: var(--color-secondary); }
.footer__student { font-family: var(--font-secondary); font-size: 0.85rem; color: var(--color-text-secondary); margin-top: 1.25rem; }
.footer__student strong { color: var(--color-text); }

.footer__dir { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 2rem; }
.office { border-top: 2px solid var(--color-border); padding-top: 0.85rem; }
.office h3 { font-family: var(--font-primary); font-weight: 600; font-size: 1.1rem; }
.office p, .office a { font-family: var(--font-secondary); font-size: 0.9rem; color: var(--color-text-secondary); font-variant-numeric: tabular-nums; display: block; margin-top: 0.35rem; }
.office a[href^="tel"] { color: var(--color-text); }
.office .soon { color: var(--color-text-secondary); font-style: normal; }

.footer__legal { border-top: 1px solid var(--color-border); }
.footer__legal-inner {
  max-width: var(--wrap); margin-inline: auto; padding: 1.25rem clamp(1rem, 4vw, 2.5rem);
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; align-items: center;
  font-family: var(--font-secondary); font-size: 0.78rem; color: var(--color-text-secondary);
}
.footer__legal-inner a { color: var(--color-text-secondary); }
.footer__legal-inner a:hover { color: var(--color-text); }
.footer__legal-inner .age { margin-left: auto; letter-spacing: 0.04em; }

/* ============================================================
   404
   ============================================================ */
.notfound { min-height: 60vh; display: flex; flex-direction: column; justify-content: center; }
.notfound .code { font-family: var(--font-primary); font-weight: 700; font-size: clamp(4rem, 16vw, 10rem); line-height: 0.9; color: var(--color-accent); font-variant-numeric: tabular-nums; }

/* ============================================================
   Lightbox chrome — restyled to the dark board (mechanism intact)
   ============================================================ */
.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: rgba(14,14,18,0.92); }
.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,0.7); }
.lightbox__caption { font-family: var(--font-secondary); font-size: 0.9rem; line-height: 1.5; color: var(--color-text); 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-text); }
.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: 1px solid var(--color-border); cursor: pointer; background: var(--color-surface); color: var(--color-text); 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; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .footer__upper { grid-template-columns: 1fr; align-items: start; gap: 2rem; }
  .footer__lower-inner { grid-template-columns: 1fr; }
  .cat-board { grid-template-columns: repeat(2, 1fr); }
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Masthead → hamburger; hide desktop category tier + action pills */
  .mast__cats { display: none; }
  .mast__actions { display: none; }
  .mast__toggle { display: inline-flex; }
  .mast__upper { grid-template-columns: auto 1fr auto; }

  /* Mobile bottom action bar appears */
  .action-bar { display: block; }
  .site-footer { padding-bottom: 76px; }

  /* The board reflows — it does NOT stack into boxes.
     Red deal cell stays full-width + largest; categories become full-bleed color bands. */
  .deal-board {
    grid-template-columns: 1fr; grid-template-rows: none;
    grid-template-areas: "brand" "deal" "offA" "offB" "cat1" "cat2" "cat3" "cat4" "cat5" "cat6";
    min-height: auto;
  }
  .cell--deal { min-height: 60vh; }
  .cell--deal .fig { font-size: clamp(3rem, 15vw, 5rem); } /* gains weight, does not shrink */
  .cell { min-height: 128px; }
  .board-curl { top: 12%; }

  .deal-row { grid-template-columns: 1fr; }
  .plaque { grid-template-columns: 1fr; }
  .find-grid { grid-template-columns: 1fr; }
  .proof { grid-template-columns: 1fr; gap: 2rem; }
  .cat-board { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .contact-form.form--slim { grid-template-columns: 1fr; }
  .footer__dir { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .utility__inner { font-size: 0.8rem; gap: 0.75rem; }
  .utility__item + .utility__item::before { margin-left: -0.5rem; margin-right: 0.75rem; }
  .footer__legal-inner .age { margin-left: 0; width: 100%; }
}

/* ============================================================
   Self-hosted Google Fonts (localized by 20_performance_sweep)
   ============================================================ */
/* vietnamese */
@font-face {
  font-family: 'Familjen Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/Qw3GZR9ZHiDnImG6-NEMQ41wby8WbHUEj7E49PCrfQ.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: 'Familjen Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/Qw3GZR9ZHiDnImG6-NEMQ41wby8WbHQEj7E49PCrfQ.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: 'Familjen Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/Qw3GZR9ZHiDnImG6-NEMQ41wby8WbHoEj7E49PA.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;
}
/* vietnamese */
@font-face {
  font-family: 'Familjen Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/Qw3GZR9ZHiDnImG6-NEMQ41wby8WbHUEj7E49PCrfQ.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: 'Familjen Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/Qw3GZR9ZHiDnImG6-NEMQ41wby8WbHQEj7E49PCrfQ.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: 'Familjen Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/Qw3GZR9ZHiDnImG6-NEMQ41wby8WbHoEj7E49PA.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;
}
/* vietnamese */
@font-face {
  font-family: 'Familjen Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/Qw3GZR9ZHiDnImG6-NEMQ41wby8WbHUEj7E49PCrfQ.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: 'Familjen Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/Qw3GZR9ZHiDnImG6-NEMQ41wby8WbHQEj7E49PCrfQ.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: 'Familjen Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/Qw3GZR9ZHiDnImG6-NEMQ41wby8WbHoEj7E49PA.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;
}
/* vietnamese */
@font-face {
  font-family: 'Familjen Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/Qw3GZR9ZHiDnImG6-NEMQ41wby8WbHUEj7E49PCrfQ.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: 'Familjen Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/Qw3GZR9ZHiDnImG6-NEMQ41wby8WbHQEj7E49PCrfQ.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: 'Familjen Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/Qw3GZR9ZHiDnImG6-NEMQ41wby8WbHoEj7E49PA.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: 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;
}
