/*
 * Cloud Smoke Shop — styles.css
 * A night register: black shopfront with the cyan-and-red channel sign lit.
 * Built on the epoxy-floor seam partition. Numbers read like signage.
 * Tokens per the Kai Directive; art direction per design-direction.md.
 */

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  /* Directive palette (§3.1) */
  --bg: #181818;
  --seam: #0E0E12;
  --card: #1E1E1E;
  --raised: #242424;
  --overlay: #2A2A2A;
  --surface: #22232A;
  --accent: #A01020;
  --accent-hover: #B8162A;
  --sign-red: #F01830;
  --primary: #00A8F0;
  --secondary: #0A6FA8;
  --blue-dark: #074D75;
  --ice: #E8F4FF;
  --text: #C7D2D9;
  --text-2: #8E99A1;
  --heading: #F2F5F7;
  --border: #34363F;

  /* Aliases the scaffold's chrome (skip-link, focus, lightbox) expects */
  --color-primary: var(--primary);
  --color-secondary: var(--secondary);
  --color-accent: var(--accent);
  --color-bg: var(--bg);
  --color-surface: var(--card);
  --color-text: var(--text);
  --color-text-secondary: var(--text-2);

  --font-primary: 'Familjen Grotesk', 'Segoe UI', system-ui, sans-serif;   /* display */
  --font-secondary: 'Hanken Grotesk', 'Segoe UI', system-ui, sans-serif;   /* body */

  --font-size-base: 16px;
  --spacing-base: 8px;

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

  --wrap: 1200px;
  --nav-upper-h: 80px;
  --nav-cat-h: 52px;
}

/* ============================================================
   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%;
}

body {
  font-family: var(--font-secondary, sans-serif);
  background-color: var(--bg);
  color: var(--text);
  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(--primary); text-decoration: none; }
a:hover { color: var(--ice); }

h1, h2, h3, h4 {
  font-family: var(--font-primary);
  color: var(--heading);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.01em;
}

strong { color: var(--heading); font-weight: 700; }

::selection { background: var(--primary); color: #04121b; }

/* Numbers read like a plaque */
.num {
  font-family: var(--font-primary);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

/* Focus states — WCAG AA */
:focus-visible {
  outline: 2px solid var(--ice);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Skip navigation link — WCAG 2.4.1 (do not remove) */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--card); color: var(--primary);
  font-weight: 700; text-decoration: none;
  border: 2px solid var(--primary); border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Layout helpers
   ============================================================ */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.wrap--narrow { max-width: 820px; }
.section { padding-block: clamp(3.5rem, 9vw, 7rem); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4.5rem); }

.eyebrow {
  font-family: var(--font-secondary);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-2);
  display: inline-block; margin-bottom: 1.1rem;
}
.eyebrow::after {
  content: ""; display: block; width: 42px; height: 2px;
  background: var(--primary); margin-top: 0.7rem;
}

.lede { font-size: clamp(1.1rem, 2vw, 1.35rem); line-height: 1.6; color: var(--text); max-width: 60ch; }
.measure { max-width: 66ch; }

/* Seam divider used between sections */
.seam-rule { height: 1px; background: var(--border); border: 0; }

/* Anchor targets clear the sticky masthead */
[id] { scroll-margin-top: 120px; }

/* ============================================================
   Buttons & links (§3.2 material system)
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  min-height: 48px; padding: 0.75rem 1.5rem;
  font-family: var(--font-secondary); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.01em; border-radius: 4px; border: 2px solid transparent;
  cursor: pointer; text-align: center; line-height: 1.1;
  transition: background var(--motion-duration) var(--motion-ease),
              color var(--motion-duration) var(--motion-ease),
              border-color var(--motion-duration) var(--motion-ease),
              transform var(--motion-duration) var(--motion-ease);
  position: relative; overflow: hidden;
}
.btn:focus-visible { outline-offset: 3px; }

/* The one filled button per viewport */
.btn--fill { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--fill:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: #fff; }

.btn--outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn--outline:hover { background: var(--heading); color: var(--bg); border-color: var(--heading); }

/* Secondary action — underlined text link with trailing arrow */
.link-arrow {
  display: inline-flex; align-items: baseline; gap: 0.4rem;
  font-family: var(--font-secondary); font-weight: 600; color: var(--primary);
  text-decoration: underline; text-underline-offset: 4px;
  text-decoration-thickness: 1px; text-decoration-color: color-mix(in srgb, var(--primary) 55%, transparent);
}
.link-arrow::after { content: "\2192"; font-family: var(--font-primary); transition: transform var(--motion-duration) var(--motion-ease); }
.link-arrow:hover { color: var(--ice); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ============================================================
   Hover-sweep — the site's motion signature (§3.2)
   A diagonal specular gradient crossing tiles/buttons on hover.
   ============================================================ */
.sweep { position: relative; overflow: hidden; isolation: isolate; }
.sweep::after {
  content: ""; position: absolute; top: -60%; left: -75%;
  width: 55%; height: 220%;
  background: linear-gradient(100deg, transparent, color-mix(in srgb, var(--ice) 35%, transparent), color-mix(in srgb, var(--primary) 20%, transparent), transparent);
  transform: translateX(-30%) rotate(8deg); opacity: 0;
  pointer-events: none; z-index: 3;
  transition: transform 620ms var(--motion-ease), opacity 200ms linear;
}
.sweep:hover::after, .sweep:focus-visible::after { opacity: 1; transform: translateX(360%) rotate(8deg); }

/* ============================================================
   Masthead — two-tier utility + category, scroll-away
   ============================================================ */
.mast {
  position: sticky; top: 0; z-index: 200;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}
.mast__utility {
  height: var(--nav-upper-h);
  display: flex; align-items: center; gap: 1.25rem;
}
.mast__brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.mast__brand img { height: 52px; width: auto; max-width: 200px; }
.mast__spacer { flex: 1 1 auto; }

.mast__nav { display: flex; align-items: center; gap: clamp(0.8rem, 1.6vw, 1.4rem); list-style: none; }
.mast__nav a { font-family: var(--font-secondary); font-weight: 600; font-size: 0.9375rem; color: var(--text); white-space: nowrap; transition: color var(--motion-duration) var(--motion-ease); }
.mast__nav a:hover, .mast__nav a[aria-current="page"] { color: var(--primary); }

.mast__actions { display: flex; align-items: center; gap: 0.75rem; }
.mast__actions .btn { min-height: 44px; padding: 0.55rem 1.1rem; }

/* Open-status chip */
.ostat {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-primary); font-weight: 600;
  font-variant-numeric: tabular-nums;
  font-size: 0.9rem; color: var(--text);
  padding: 0.4rem 0.75rem; border: 1px solid var(--border); border-radius: 999px;
  background: var(--card);
}
.ostat__pip {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--text-2); flex: 0 0 auto;
  box-shadow: 0 0 0 0 transparent;
}
[data-open-status].is-open .ostat__pip {
  background: var(--sign-red);
  box-shadow: 0 0 10px 1px color-mix(in srgb, var(--sign-red) 70%, transparent);
  animation: pip-pulse 2.6s ease-in-out infinite;
}
@keyframes pip-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.55; } }
.ostat__txt { white-space: nowrap; }

/* Category tier */
.mast__cat {
  height: var(--nav-cat-h); max-height: var(--nav-cat-h);
  display: flex; align-items: center; overflow: hidden;
  border-top: 1px solid color-mix(in srgb, var(--border) 65%, transparent);
  transition: max-height var(--motion-duration) var(--motion-ease),
              opacity var(--motion-duration) var(--motion-ease);
  will-change: max-height;
}
.mast__cat-list {
  display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem);
  list-style: none; overflow-x: auto; scrollbar-width: none; width: 100%;
}
.mast__cat-list::-webkit-scrollbar { display: none; }
.mast__cat-link {
  font-family: var(--font-secondary); font-weight: 600; font-size: 0.9375rem; /* 15px floor */
  color: var(--text); white-space: nowrap; padding: 0.35rem 0;
  border-bottom: 2px solid transparent; transition: color var(--motion-duration) var(--motion-ease), border-color var(--motion-duration) var(--motion-ease);
}
.mast__cat-link:hover, .mast__cat-link[aria-current="page"] { color: var(--primary); border-color: var(--primary); }
.mast__cat-link--featured { color: var(--sign-red); }
.mast__cat-link--featured:hover { color: var(--sign-red); border-color: var(--sign-red); }

/* Scroll-away state — collapse the category tier to reclaim space */
.mast.is-cat-hidden .mast__cat { max-height: 0; opacity: 0; pointer-events: none; border-top-color: transparent; }

.mast__utility-labels { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-2); }

/* Mobile menu */
.mast__toggle { display: none; }
.mast__mobile { display: none; }

/* Bottom action bar (mobile) */
.actionbar { display: none; }

/* ============================================================
   Seam partition field — the epoxy floor stood on edge
   ============================================================ */
.seam-field {
  position: absolute; inset: 0; z-index: 0;
  display: grid; grid-template-columns: 2.4fr 1.2fr 1.2fr 0.22fr;
  gap: 3px; background: var(--seam);
}
.seam-field > span { display: block; position: relative; overflow: hidden; }
.seam-field .p1 { background: var(--bg); }
.seam-field .p2 { background: var(--secondary); }
.seam-field .p3 { background: var(--blue-dark); }
.seam-field .p4 { background: var(--sign-red); }
.seam-field .p2::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--swirl, none); background-size: cover; background-position: center;
  opacity: 0.16; mix-blend-mode: screen;
}

/* ============================================================
   Home hero — Still Open
   ============================================================ */
.hero {
  position: relative; min-height: min(88vh, 760px);
  display: flex; align-items: center; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero__scrim, .bignum-hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(24,24,24,0.82) 44%, rgba(24,24,24,0) 74%);
}
.hero__inner { position: relative; z-index: 2; padding-block: clamp(3rem, 8vh, 6rem); max-width: 46rem; }
.hero__eyebrow { color: var(--ice); }
.hero__num {
  font-family: var(--font-primary); font-weight: 700; color: var(--heading);
  font-size: clamp(4.5rem, 16vw, 12rem); line-height: 0.86;
  letter-spacing: -0.03em; margin: 0.2rem 0 0.4rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.hero__num small { display: block; font-size: 0.2em; letter-spacing: 0.02em; color: var(--text); font-weight: 600; margin-bottom: 0.4rem; }
.hero__status {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-family: var(--font-primary); font-weight: 600; font-variant-numeric: tabular-nums;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem); color: var(--heading);
  margin-bottom: 1.4rem;
}
.hero__status .ostat__pip { width: 12px; height: 12px; }
.hero__support { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--text); max-width: 40ch; margin-bottom: 1.9rem; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem 1.6rem; }

/* ============================================================
   Category ribbon (marquee) — What We Carry, home
   ============================================================ */
.ribbon-sec { padding-block: clamp(2.5rem, 6vw, 4rem); border-bottom: 1px solid var(--border); }
.ribbon-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; }
.ribbon-head h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }

.ribbon {
  position: relative; overflow: hidden; -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.ribbon.is-manual { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.ribbon.is-manual::-webkit-scrollbar { display: none; }
.ribbon__track { display: flex; gap: 1rem; width: max-content; will-change: transform; }
.ribbon:not(.is-manual) .ribbon__track { animation: ribbon-drift 46s linear infinite; }
.ribbon:not(.is-manual):hover .ribbon__track,
.ribbon:not(.is-manual):focus-within .ribbon__track { animation-play-state: paused; }
@keyframes ribbon-drift { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.cat-tile {
  scroll-snap-align: start; flex: 0 0 auto;
  width: clamp(220px, 26vw, 300px); min-height: 200px;
  background: var(--card); border: 1px solid var(--border); border-radius: 6px;
  padding: 1.5rem; display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden; color: var(--text);
  transition: background var(--motion-duration) var(--motion-ease), transform var(--motion-duration) var(--motion-ease);
}
.cat-tile::before { /* lit top edge */
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--primary) 80%, transparent), transparent);
}
.cat-tile:hover { background: var(--raised); transform: translateY(-3px); }
.cat-tile__name { font-family: var(--font-primary); font-weight: 700; font-size: 1.35rem; color: var(--heading); }
.cat-tile__desc { font-size: 0.9rem; color: var(--text-2); margin-top: 0.35rem; }
.cat-tile--photo { justify-content: flex-end; min-height: 240px; }
.cat-tile--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cat-tile--photo .cat-tile__label {
  position: relative; z-index: 2;
  background: linear-gradient(0deg, rgba(10,10,12,0.92), rgba(10,10,12,0.15));
  margin: -1.5rem; margin-top: 0; padding: 1.5rem;
}
.cat-tile--photo .cat-tile__name { color: #fff; }

/* ============================================================
   Cards / stepped surfaces
   ============================================================ */
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: 6px;
  padding: clamp(1.4rem, 3vw, 2rem); position: relative; overflow: hidden;
  transition: background var(--motion-duration) var(--motion-ease), transform var(--motion-duration) var(--motion-ease);
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--primary) 70%, transparent), transparent);
}
.card:hover { background: var(--raised); }
.card--strike::before { background: linear-gradient(90deg, transparent, var(--sign-red), transparent); }

/* ============================================================
   Deals
   ============================================================ */
.deals-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(12, 1fr); }
.deal { grid-column: span 4; display: flex; flex-direction: column; }
.deal--headline { grid-column: span 12; }
.deal__kicker { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--text-2); margin-bottom: 0.6rem; }
.deal__title { font-size: clamp(1.5rem, 3.5vw, 2.4rem); margin-bottom: 0.5rem; }
.deal--headline .deal__title { font-size: clamp(2rem, 6vw, 3.6rem); }
.deal__offer { font-size: 1.05rem; color: var(--text); }
.deal__price { font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--heading); }
.deal__price .mark { color: var(--sign-red); }
.deal__valid { margin-top: auto; padding-top: 1rem; font-size: 0.85rem; color: var(--text-2); }
.deal--student { background: var(--blue-dark); border-color: color-mix(in srgb, var(--primary) 40%, var(--border)); }
.deal--student::before { background: linear-gradient(90deg, transparent, var(--primary), transparent); }
.deal--student .deal__title, .deal--student .deal__offer { color: #EAF6FF; }
.deal--headline .deal__media { position: absolute; inset: 0; z-index: 0; opacity: 0.18; }
.deal--headline .deal__media img { width: 100%; height: 100%; object-fit: cover; }
.deal--headline > * { position: relative; z-index: 1; }

/* ============================================================
   Singular feature photos
   ============================================================ */
.feature { position: relative; }
.feature__frame { position: relative; overflow: hidden; border: 1px solid var(--border); border-radius: 6px; }
.feature__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 640ms var(--motion-ease); display: block; }
.feature__frame:hover img { transform: scale(1.04); }

/* Two-column feature + prose (floor / color story) */
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.split--reverse { grid-template-columns: 0.9fr 1.1fr; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; height: 100%; max-height: 560px; object-fit: cover; border: 1px solid var(--border); border-radius: 6px; }
.split__body h2 { font-size: clamp(1.8rem, 4.5vw, 3rem); margin-bottom: 1rem; }
.split__body p { margin-bottom: 1rem; max-width: 54ch; }

/* Full-bleed lit window */
.litwindow { position: relative; min-height: min(86vh, 680px); overflow: hidden; border-block: 1px solid var(--border); }
.litwindow img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.litwindow__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: clamp(2rem, 6vw, 4rem);
  background: linear-gradient(0deg, rgba(10,10,12,0.9), transparent);
  color: #fff; font-family: var(--font-primary); font-weight: 700;
  font-size: clamp(1.3rem, 3.5vw, 2.4rem); line-height: 1.1;
}

/* ============================================================
   Rewards / Students planes (mid-page saturated moment)
   ============================================================ */
.planes { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.plane { padding: clamp(1.6rem, 4vw, 2.6rem); border-radius: 6px; position: relative; overflow: hidden; color: #EAF6FF; }
.plane--rewards { background: var(--blue-dark); }
.plane--students { background: var(--secondary); }
.plane h3 { color: #fff; font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 0.6rem; }
.plane p { color: #DCEBF5; margin-bottom: 1rem; max-width: 42ch; }
.plane .num-mark { color: var(--sign-red); font-family: var(--font-primary); }
.plane .link-arrow { color: #fff; text-decoration-color: rgba(255,255,255,0.5); }
.plane .link-arrow:hover { color: var(--ice); }

/* ============================================================
   Store card — the one outlined artifact
   ============================================================ */
.storecard-wrap { display: flex; justify-content: center; }
.storecard {
  width: 100%; max-width: 900px;
  border: 1px solid var(--border); border-radius: 8px;
  background: color-mix(in srgb, var(--card) 70%, var(--bg));
  padding: clamp(1.6rem, 4vw, 2.6rem);
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: clamp(1.2rem, 3vw, 2.2rem);
}
.storecard__col { border-left: 1px solid var(--border); padding-left: 1.4rem; }
.storecard__col:first-child { border-left: 0; padding-left: 0; }
.storecard__label { font-family: var(--font-primary); font-weight: 700; color: var(--heading); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.7rem; }
.storecard__data { font-variant-numeric: tabular-nums; color: var(--text); line-height: 1.5; }
.storecard__data a { color: var(--primary); }
.storecard__foot { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 1.3rem; }
.storecard .ostat { background: transparent; border: 0; padding: 0; font-size: 1rem; }

/* ============================================================
   Taxonomy leader-dot index (What We Carry)
   ============================================================ */
.taxonomy { display: grid; gap: 0.2rem; margin-block: 1.5rem; }
.tax-group { margin-bottom: 2.4rem; }
.tax-group__title { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--primary); margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--border); }
.tax-row { display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; gap: 0.5rem; padding: 0.65rem 0; }
.tax-row__name { font-family: var(--font-primary); font-weight: 700; font-size: 1.25rem; color: var(--heading); }
.tax-row__dots { border-bottom: 1px dotted var(--border); transform: translateY(-0.25rem); min-width: 2rem; }
.tax-row__desc { color: var(--text); font-size: 0.95rem; text-align: right; max-width: 40ch; }
.tax-note { font-size: 0.85rem; color: var(--text-2); border-left: 2px solid var(--border); padding-left: 1rem; margin-top: 1rem; }

/* ============================================================
   Numbered rubric (Rewards) & big-numeral statement (Students)
   ============================================================ */
.rubric { display: grid; gap: 1.4rem; counter-reset: step; }
.rubric-callout { background: var(--blue-dark); border-radius: 8px; padding: clamp(1.6rem, 4vw, 2.8rem); position: relative; overflow: hidden; }
.rubric-callout__bg { position: absolute; inset: 0; z-index: 0; opacity: 0.12; }
.rubric-callout__bg img { width: 100%; height: 100%; object-fit: cover; }
.rubric > li, .rubric-callout .rubric { position: relative; z-index: 1; }
.rubric-step { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: start; list-style: none; }
.rubric-step__n { font-family: var(--font-primary); font-variant-numeric: tabular-nums; font-weight: 700; font-size: clamp(2.4rem, 6vw, 3.6rem); color: var(--primary); line-height: 0.9; }
.rubric-step__b h3 { color: #fff; font-size: 1.25rem; margin-bottom: 0.3rem; }
.rubric-step__b p { color: #DCEBF5; }

.bignum-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.bignum { font-family: var(--font-primary); font-weight: 700; font-variant-numeric: tabular-nums; font-size: clamp(5rem, 20vw, 15rem); line-height: 0.82; letter-spacing: -0.04em; color: var(--heading); }
.bignum .mark { color: var(--sign-red); }

/* ============================================================
   Locations
   ============================================================ */
.loc-flagship { margin-bottom: 3rem; }
.sisters { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.25rem; }
.sister { border: 1px solid var(--border); border-radius: 6px; padding: 1.4rem; }
.sister__city { font-family: var(--font-primary); font-weight: 700; color: var(--heading); font-size: 1.2rem; margin-bottom: 0.5rem; }
.sister__data { font-variant-numeric: tabular-nums; color: var(--text-2); line-height: 1.55; font-size: 0.95rem; }
.sister__data a { color: var(--primary); }

/* ============================================================
   About origin split & prose
   ============================================================ */
.origin { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: stretch; }
.origin__art { position: relative; }
.origin__art img { width: 100%; height: 100%; min-height: 340px; max-height: 620px; object-fit: cover; border: 1px solid var(--border); border-radius: 6px; }
.origin__prose { color: var(--text); line-height: 1.85; max-width: 62ch; }
.origin__prose p { margin-bottom: 1.2rem; }
.dropcap::first-letter {
  float: left; font-family: var(--font-primary); font-weight: 700;
  font-size: 4.6rem; line-height: 0.72; padding: 0.35rem 0.6rem 0 0; color: var(--primary);
}

.prose { max-width: 66ch; }
.prose h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin: 2.2rem 0 0.8rem; }
.prose p { margin-bottom: 1.1rem; }
.prose ul { margin: 0 0 1.1rem 1.2rem; }
.prose li { margin-bottom: 0.4rem; }

/* ============================================================
   Page header band (interior pages)
   ============================================================ */
.pagehead { position: relative; overflow: hidden; border-bottom: 1px solid var(--border); padding-block: clamp(3rem, 8vw, 5.5rem); }
.pagehead__bg { position: absolute; inset: 0; z-index: 0; opacity: 0.22; }
.pagehead__bg img { width: 100%; height: 100%; object-fit: cover; }
.pagehead > .wrap { position: relative; z-index: 1; }
.pagehead h1 { font-size: clamp(2.2rem, 6vw, 4rem); margin-bottom: 0.6rem; }
.pagehead p { color: var(--text); max-width: 56ch; }

/* Store hero (flagship) */
.storehero { position: relative; min-height: min(80vh, 620px); display: flex; align-items: flex-end; overflow: hidden; border-bottom: 1px solid var(--border); }
.storehero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; z-index: 0; }
.storehero__inner { position: relative; z-index: 2; padding: clamp(2rem, 6vw, 4rem); background: linear-gradient(0deg, rgba(12,12,14,0.92), transparent); width: 100%; }
.storehero__inner h1 { color: #fff; font-size: clamp(2.2rem, 6vw, 4rem); }

/* ============================================================
   Forms (.contact-form)
   ============================================================ */
.form-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.45rem; }
.field label { font-family: var(--font-primary); font-weight: 600; color: var(--heading); font-size: 0.95rem; }
.field .hint { font-size: 0.82rem; color: var(--text-2); font-family: var(--font-secondary); font-weight: 400; }
.field input, .field textarea {
  font-family: var(--font-secondary); font-size: 1rem; color: var(--heading);
  background: var(--card); border: 1px solid var(--border); border-radius: 5px;
  padding: 0.8rem 0.9rem; width: 100%; line-height: 1.5;
  transition: border-color var(--motion-duration) var(--motion-ease), box-shadow var(--motion-duration) var(--motion-ease);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-2); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 2px var(--ice); }
.form-facts { border: 1px solid var(--border); border-radius: 8px; padding: clamp(1.4rem, 3vw, 2.2rem); background: var(--card); }
.form-facts h2 { font-size: 1.4rem; margin-bottom: 1.2rem; }
.fact-row { display: flex; gap: 0.75rem; padding: 0.7rem 0; border-top: 1px solid var(--border); }
.fact-row:first-of-type { border-top: 0; }
.fact-row i { color: var(--primary); font-size: 1.2rem; margin-top: 0.1rem; }
.fact-row .num, .fact-row div { color: var(--text); }
.fact-row a { color: var(--primary); }
.fact-note { font-size: 0.85rem; color: var(--text-2); margin-top: 0.6rem; }

/* ============================================================
   404
   ============================================================ */
.notfound { position: relative; min-height: 78vh; display: flex; align-items: center; overflow: hidden; }
.notfound__bg { position: absolute; inset: 0; z-index: 0; }
.notfound__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.notfound__inner { position: relative; z-index: 1; }
.notfound h1 { font-size: clamp(2rem, 6vw, 3.6rem); margin-bottom: 1rem; max-width: 20ch; }
.notfound h1 .mark { color: var(--sign-red); }
.notfound__links { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 1.6rem; }

/* ============================================================
   Footer — two-stage
   ============================================================ */
.site-footer { background: var(--bg); border-top: 1px solid var(--border); }
.footer-call { padding-block: clamp(2.5rem, 6vw, 4.5rem); display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: center; }
.footer-call__heading { font-family: var(--font-primary); font-weight: 700; font-size: clamp(2.5rem, 7vw, 5rem); color: var(--heading); line-height: 0.92; }
.footer-call__heading .dot { color: var(--sign-red); }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: var(--primary); font-family: var(--font-secondary); font-weight: 600; }
.footer-links a:hover { color: var(--ice); }

.footer-directory { background: var(--surface); border-top: 1px solid var(--border); padding-block: clamp(2.5rem, 6vw, 4rem); }
.footer-flagship { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem 2.5rem; align-items: start; margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); }
.footer-flagship__brand img { height: 44px; width: auto; max-width: 160px; }
.footer-flagship__data { font-variant-numeric: tabular-nums; color: var(--text); line-height: 1.6; }
.footer-flagship__data .city { font-family: var(--font-primary); font-weight: 700; color: var(--heading); font-size: 1.2rem; display: block; margin-bottom: 0.4rem; }
.footer-flagship__data a { color: var(--primary); }
.footer-sisters { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
.footer-sisters .sister__city { font-size: 1.05rem; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 0.8rem 1.5rem; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); margin-top: 2.5rem; padding-top: 1.5rem; color: var(--text-2); font-size: 0.85rem; }
.footer-bottom a { color: var(--text-2); }
.footer-bottom a:hover { color: var(--primary); }
.footer-compliance { font-size: 0.82rem; color: var(--text-2); max-width: 60ch; }

/* ============================================================
   Reveal-gating floor — content visible without JS
   ============================================================ */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity var(--motion-duration-slow) var(--motion-ease), transform var(--motion-duration-slow) var(--motion-ease); }
html.js .reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   Gallery lightbox — scaffolded shared mechanism (inert; kept 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; } }
.lightbox__scrim { position: absolute; inset: 0; background: rgba(8,8,10,0.9); }
.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(--heading); 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(--heading); }
.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(--card); color: var(--text); box-shadow: 0 2px 10px rgba(0,0,0,0.5); 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(--primary); }
.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: 960px) {
  .split, .split--reverse, .origin, .form-layout { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .storecard { grid-template-columns: 1fr; }
  .storecard__col { border-left: 0; padding-left: 0; border-top: 1px solid var(--border); padding-top: 1.2rem; }
  .storecard__col:first-child { border-top: 0; padding-top: 0; }
  .sisters, .footer-sisters { grid-template-columns: 1fr; }
  .footer-call { grid-template-columns: 1fr; }
  .footer-flagship { grid-template-columns: 1fr; }
  .deal { grid-column: span 6; }
}

@media (max-width: 1024px) {
  body { padding-bottom: calc(42px + 62px); } /* room for the bottom action bar */

  /* Nav collapses to a single compact bar + mobile menu + bottom bar */
  .mast__cat { display: none; }
  .mast__actions { display: none; }
  .mast__nav { display: none; }
  .mast__utility { gap: 0.75rem; }
  .mast__toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; background: var(--card); border: 1px solid var(--border);
    border-radius: 5px; color: var(--heading); font-size: 1.5rem; cursor: pointer;
  }
  .mast__utility .ostat { font-size: 0.8rem; padding: 0.35rem 0.6rem; }
  .mast__utility .ostat__txt { max-width: 42vw; overflow: hidden; text-overflow: ellipsis; }

  .mast__mobile {
    display: block; position: fixed; inset: var(--nav-upper-h) 0 auto 0; z-index: 199;
    background: var(--bg); border-bottom: 1px solid var(--border);
    transform: translateY(-120%); transition: transform var(--motion-duration) var(--motion-ease);
    max-height: calc(100vh - var(--nav-upper-h)); overflow-y: auto;
  }
  .mast__mobile.is-open { transform: translateY(0); }
  .mast__mobile ul { list-style: none; padding: 0.5rem 0; }
  .mast__mobile a { display: block; padding: 0.9rem clamp(1.25rem, 5vw, 3rem); color: var(--text); font-family: var(--font-secondary); font-weight: 600; border-top: 1px solid color-mix(in srgb, var(--border) 60%, transparent); }
  .mast__mobile a:hover, .mast__mobile a[aria-current="page"] { color: var(--primary); }
  .mast__mobile a.is-featured { color: var(--sign-red); }

  .actionbar {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 210;
    background: color-mix(in srgb, var(--bg) 96%, #000); border-top: 1px solid var(--border);
  }
  .actionbar a, .actionbar .ab-status {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem;
    padding: 0.55rem 0.4rem; min-height: 60px; color: var(--text); font-size: 0.72rem; font-weight: 600;
    text-align: center; border-left: 1px solid var(--border);
    background: transparent; border-radius: 0;
  }
  .actionbar .ab-status { border-top: 0; border-right: 0; border-bottom: 0; }
  .actionbar a:first-child { border-left: 0; }
  .actionbar i { font-size: 1.25rem; color: var(--primary); }
  .actionbar .ab-status .ostat__pip { width: 8px; height: 8px; }
  .actionbar .ab-status .ostat__txt { font-size: 0.66rem; color: var(--text-2); }

  .planes { grid-template-columns: 1fr; }
  .deal, .deal--headline { grid-column: span 12; }
  .ribbon-head { flex-direction: column; align-items: flex-start; }

  /* Hero seam planes restack vertically but keep grout seams */
  .seam-field { grid-template-columns: 1fr; grid-template-rows: 2.4fr 1fr 1fr 0.4fr; }
  .hero__inner { background: linear-gradient(180deg, rgba(24,24,24,0.78), rgba(24,24,24,0.35)); padding: clamp(2rem, 8vw, 3rem) clamp(1.25rem, 5vw, 2rem); border-radius: 6px; }
}

@media (max-width: 480px) {
  .footer-call__heading { font-size: clamp(2.2rem, 12vw, 3.2rem); }
  .tax-row { grid-template-columns: 1fr; }
  .tax-row__dots { display: none; }
  .tax-row__desc { text-align: left; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .ribbon:not(.is-manual) .ribbon__track { animation: none; }
  .sweep::after { display: none; }
  .mast__cat { transition: none; }
  html.js .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   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;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 800;
  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: 800;
  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: 800;
  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: 800;
  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;
}
