/*
 * Cloud Smoke Shop — Tennessee Street
 * "Set into the floor" — every element is a flush inlay in one matte-black
 * resin slab, edged by a single ice-white meniscus line. Material: glossy,
 * not glowing (stepped surfaces + lit top edge; never outer glow).
 * Palette, type, motion and roles locked by KAI_DIRECTIVE_CLOUD_v3.
 */

/* ============================================================
   Design Tokens (directive §6.1 / §6.3 / §6.4)
   ============================================================ */
:root {
  /* grounds */
  --bg:#181818; --seam:#0E0E12; --card:#1E1E1E; --raised:#242424; --overlay:#2A2A2A;
  --bg-deep:#1A0F0F;
  /* red — deals + the one action */
  --accent:#A01020; --accent-hover:#B8162A; --secondary:#8C1520;
  /* blue — rewards, wayfinding, atmosphere */
  --blue:#0A6FA8; --blue-dark:#074D75; --blue-light:#3B93C4;
  /* ice — highlight only */
  --ice:#E8F4FF;
  /* legible display-red for the burgundy closer headline (large text, AA) */
  --accent-head:#D5454F;
  /* type roles */
  --text:#C7D2D9; --text-2:#8E99A1; --heading:#F2F5F7; --border:#34363F;
  /* system */
  --wrap:1200px; --radius:6px;
  --dur:200ms; --dur-slow:560ms; --ease:cubic-bezier(.22,.61,.36,1);
  --font-display:'Familjen Grotesk','Arial',sans-serif;
  --font-body:'Hanken Grotesk','Arial',sans-serif;
  --header-h:104px; --navrow-h:72px; --actionbar-h:64px;

  /* lit edges reused everywhere (glossy-not-glowing) */
  --edge-top:1px solid rgba(232,244,255,.14);
  --edge-bottom:1px solid rgba(0,0,0,.35);
  --inset-lit:inset 0 1px 0 rgba(232,244,255,.10), inset 0 0 0 1px rgba(255,255,255,.04);
  --ice-hair:rgba(232,244,255,.42);

  /* aliases so the scaffolded lightbox chrome keeps resolving */
  --color-bg:var(--bg); --color-text:var(--heading); --color-accent:var(--accent);
  --color-surface:var(--card); --font-secondary:var(--font-body);
  --motion-duration:var(--dur); --motion-ease:var(--ease);
}

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

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

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

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

h1,h2,h3,h4 { font-family:var(--font-display); color:var(--heading); line-height:1.05; font-weight:700; }
h1 { font-size:clamp(2.5rem,9vw,4.5rem); line-height:1.02; letter-spacing:-.01em; }
h2 { font-size:clamp(1.75rem,4vw,2rem); letter-spacing:-.005em; }
h3 { font-size:1.15rem; font-weight:600; }
p { max-width:66ch; }

a { color:var(--blue-light); text-decoration:none; }
a:hover { color:var(--ice); }

/* every price, hour, date, phone, count, code — Familjen tabular */
.num, .price, .tel, time, .code, .tabular {
  font-family:var(--font-display);
  font-variant-numeric:tabular-nums;
  font-feature-settings:"tnum" 1;
}

.eyebrow {
  font-family:var(--font-body);
  font-size:13px; text-transform:uppercase; letter-spacing:.08em;
  color:var(--text-2); font-weight:600;
  display:inline-block; margin-bottom:1rem;
}

.lead { font-size:1.15rem; color:var(--text); }
.muted { color:var(--text-2); }
.ice { color:var(--ice); }

.wrap { max-width:var(--wrap); margin-inline:auto; padding-inline:24px; width:100%; }
.section { padding-block:64px; position:relative; }
.section--tight { padding-block:44px; }
.stack > * + * { margin-top:1rem; }

/* skip link (WCAG 2.4.1) */
.skip-link {
  position:absolute; left:-9999px; top:0; z-index:1000;
  padding:.75rem 1.25rem; background:var(--card); color:var(--ice);
  font-family:var(--font-display); font-weight:600; text-decoration:none;
  border:1px solid var(--ice);
}
.skip-link:focus { left:0; }

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

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

/* ============================================================
   Inlay primitives — the flush plate + ice meniscus
   ============================================================ */
.plate {
  position:relative;
  border:1px solid var(--ice-hair);   /* the ice meniscus seam */
  background:var(--seam);
  overflow:hidden;
}
.plate img { width:100%; height:100%; object-fit:cover; }
/* the meniscus "draws once" as the plate seats into view */
html.js .plate::after {
  content:""; position:absolute; inset:0; pointer-events:none;
  border-top:1px solid var(--ice);
  transform:scaleX(0); transform-origin:left center;
  transition:transform var(--dur-slow) var(--ease);
  opacity:.0;
}
html.js .reveal.is-in .plate::after { transform:scaleX(1); opacity:.35; }
@media (prefers-reduced-motion:reduce){ html.js .plate::after{ transform:scaleX(1); } }

/* the inlaid chip / card surface (stepped, lit top edge) */
.chip, .card {
  position:relative;
  background:var(--card);
  border-top:var(--edge-top);
  border-bottom:var(--edge-bottom);
  box-shadow:var(--inset-lit);
  border-radius:var(--radius);
  padding:clamp(1.4rem,3vw,2rem);
}
.card--raised { background:var(--raised); }

/* material hover sweep — transform-only light pass (~600ms) */
.sweep { position:relative; overflow:hidden; }
.sweep::before {
  content:""; position:absolute; top:0; bottom:0; left:-60%; width:40%;
  background:linear-gradient(100deg, transparent, rgba(232,244,255,.10), transparent);
  transform:translateX(0); transition:transform 600ms var(--ease); pointer-events:none;
  opacity:0;
}
.sweep:hover::before, .sweep:focus-within::before { opacity:1; transform:translateX(420%); }
@media (prefers-reduced-motion:reduce){ .sweep::before{ display:none; } }

/* image-tile glint */
.glint::after {
  content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(180deg, rgba(232,244,255,.10) 0%, transparent 38%);
}

/* ============================================================
   Buttons + links
   ============================================================ */
.btn {
  display:inline-flex; align-items:center; gap:.55rem;
  min-height:48px; padding:.7rem 1.4rem;
  font-family:var(--font-display); font-weight:600; font-size:1rem;
  border-radius:var(--radius); border:none; cursor:pointer;
  background:var(--accent); color:var(--ice);
  border-top:1px solid rgba(232,244,255,.25);
  box-shadow:var(--inset-lit);
  transition:background var(--dur) var(--ease), transform var(--dur) var(--ease);
  position:relative; overflow:hidden;
}
.btn:hover { background:var(--accent-hover); color:var(--ice); }
.btn:active { transform:translateY(1px); }
.btn svg { width:1.05em; height:1.05em; }

/* secondary action — text link, 1px accent underline + arrow */
.link-arrow {
  display:inline-flex; align-items:center; gap:.4rem;
  font-family:var(--font-display); font-weight:600; font-size:1rem;
  color:var(--ice);
  border-bottom:1px solid var(--accent);
  padding-bottom:2px;
  transition:color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.link-arrow:hover { color:var(--ice); border-color:var(--accent-hover); }
.link-arrow svg { width:1em; height:1em; transition:transform var(--dur) var(--ease); }
.link-arrow:hover svg { transform:translateX(3px); }

.link-blue { color:var(--blue-light); border-bottom:1px solid transparent; }
.link-blue:hover { color:var(--ice); border-color:var(--blue-light); }

/* ============================================================
   Header / Nav — two-tier, dark, scroll-away (directive §4)
   ============================================================ */
.site-header {
  position:sticky; top:0; z-index:200;
  background:var(--bg);
  border-bottom:1px solid var(--border);
  overflow:visible; /* logo headroom */
  transition:transform var(--dur-slow) var(--ease);
}
.site-header.is-hidden { transform:translateY(-100%); }

.util {
  border-bottom:1px solid var(--border);
  font-size:12px; color:var(--text-2);
}
.util .wrap {
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  min-height:32px; padding-block:5px;
}
.util-left { display:flex; align-items:center; gap:1.2rem; flex-wrap:wrap; }
.util a { color:var(--text-2); }
.util a:hover { color:var(--ice); }

/* live open-state pill */
.open-state { display:inline-flex; align-items:center; gap:.5rem; font-weight:600; letter-spacing:.02em; }
.open-dot {
  width:9px; height:9px; border-radius:50%;
  background:var(--accent); box-shadow:0 0 0 1px var(--ice);
}
.open-state[data-open="false"] { color:var(--text-2); }
.open-state[data-open="false"] .open-dot { background:var(--text-2); box-shadow:0 0 0 1px transparent; }
.open-state .num { font-size:12px; }

.header-main .wrap {
  display:flex; align-items:center; justify-content:space-between; gap:1.5rem;
  min-height:var(--navrow-h);
}
.brand { display:inline-flex; align-items:center; flex:0 0 auto; }
.brand img { height:48px; width:auto; max-width:200px; }

.nav-primary { display:flex; align-items:center; gap:clamp(1rem,2.4vw,2rem); }
.nav-primary a {
  font-family:var(--font-body); font-weight:600;
  font-size:15px; text-transform:uppercase; letter-spacing:.06em;
  color:var(--text); padding:.35rem 0; position:relative;
  transition:color var(--dur) var(--ease);
}
.nav-primary a:hover { color:var(--blue-light); }
.nav-primary a[aria-current="page"] { color:var(--heading); }
.nav-primary a[aria-current="page"]::after {
  content:""; position:absolute; left:0; right:0; bottom:-4px; height:2px; background:var(--accent);
}

.hamburger {
  display:none; align-items:center; justify-content:center;
  width:44px; height:44px; background:transparent; border:1px solid var(--border);
  border-radius:var(--radius); color:var(--heading); cursor:pointer;
}
.hamburger svg { width:22px; height:22px; }

/* ============================================================
   Mobile drawer + bottom action bar
   ============================================================ */
.drawer-scrim {
  position:fixed; inset:0; z-index:290; background:rgba(8,8,8,.72);
  opacity:0; visibility:hidden; transition:opacity var(--dur) var(--ease), visibility var(--dur);
}
.drawer-scrim.is-open { opacity:1; visibility:visible; }
.drawer {
  position:fixed; top:0; right:0; z-index:300; height:100%;
  width:min(86vw,340px); background:var(--card);
  border-left:1px solid var(--border);
  transform:translateX(100%); transition:transform var(--dur-slow) var(--ease);
  display:flex; flex-direction:column; padding:1.25rem; overflow-y:auto;
}
.drawer.is-open { transform:translateX(0); }
.drawer-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:1rem; }
.drawer-head img { height:40px; width:auto; }
.drawer-close { width:44px; height:44px; background:transparent; border:1px solid var(--border); border-radius:var(--radius); color:var(--heading); cursor:pointer; display:flex; align-items:center; justify-content:center; }
.drawer-close svg { width:22px; height:22px; }
.drawer-nav { display:flex; flex-direction:column; }
.drawer-nav a {
  font-family:var(--font-display); font-weight:600; font-size:1.25rem;
  color:var(--heading); padding:.7rem 0; border-bottom:1px solid var(--border);
  min-height:44px; display:flex; align-items:center;
}
.drawer-nav a[aria-current="page"] { color:var(--accent); }
.drawer-foot { margin-top:1.25rem; display:flex; flex-direction:column; gap:.5rem; }
.drawer-foot a { min-height:44px; display:flex; align-items:center; gap:.5rem; color:var(--ice); }
.drawer-foot .num { font-size:1.1rem; }

.action-bar {
  display:none;
  position:fixed; bottom:0; left:0; right:0; z-index:250;
  background:var(--seam); border-top:1px solid var(--border);
  padding-bottom:env(safe-area-inset-bottom);
}
.action-bar ul { list-style:none; display:grid; grid-template-columns:repeat(4,1fr); }
.action-bar a, .action-bar button {
  width:100%; min-height:56px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:3px;
  color:var(--text); background:transparent; border:none; cursor:pointer;
  font-family:var(--font-body); font-size:11px; letter-spacing:.03em; text-transform:uppercase; font-weight:600;
}
.action-bar a svg, .action-bar button svg { width:22px; height:22px; }
.action-bar a.is-accent { color:var(--ice); }
.action-bar a.is-accent svg { color:var(--accent); }
.action-bar li + li a, .action-bar li + li button { border-left:1px solid var(--border); }

/* ============================================================
   HERO — flush resin slab (custom:hero-matte-resin-slab)
   ============================================================ */
.hero { position:relative; background:var(--bg); }
.hero-slab {
  display:grid; grid-template-columns:1.5fr 1fr; gap:0;
  align-items:stretch; min-height:clamp(460px,66vh,640px);
  border-bottom:1px solid var(--ice-hair);
}
.hero-plate { position:relative; overflow:hidden; background:var(--seam); border-right:1px solid var(--ice-hair); }
.hero-plate img { width:100%; height:100%; object-fit:cover; object-position:center 55%; filter:brightness(.5) saturate(.9); }
.hero-plate.is-ghost img { filter:brightness(.34) saturate(.8); }
.hero-plate--mobile { display:none; }
.hero-plate::after {
  content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(to right, rgba(8,8,8,.8) 0%, rgba(8,8,8,.5) 34%, rgba(8,8,8,.15) 62%, transparent 82%);
}
.hero-body { display:flex; flex-direction:column; justify-content:center; padding:clamp(1.6rem,4vw,3.2rem); gap:1.1rem; }
.hero-body h1 { color:var(--ice); }
.hero-oneline { font-size:1.1rem; color:var(--text); max-width:34ch; }
.hero-dateline { font-family:var(--font-display); font-variant-numeric:tabular-nums; color:var(--text-2); font-size:.95rem; letter-spacing:.02em; }
.hero-invite {
  background:var(--secondary); color:var(--ice); border-radius:var(--radius);
  border-top:1px solid rgba(232,244,255,.18); box-shadow:var(--inset-lit);
  padding:1rem 1.15rem; display:flex; flex-direction:column; gap:.6rem; max-width:24rem;
}
.hero-invite .k { font-size:12px; text-transform:uppercase; letter-spacing:.16em; color:color-mix(in srgb,var(--ice) 72%,transparent); }
.hero-cta-row { display:flex; align-items:center; gap:1.4rem; flex-wrap:wrap; margin-top:.4rem; }

/* ============================================================
   THE MONDAY DROP — leaded ledger set into a deep-red inlay
   Renders directive §7.1 card anatomy inside the ledger form.
   ============================================================ */
.drop { background:var(--secondary); color:var(--ice); position:relative; }
.drop::before { content:""; position:absolute; inset:0; pointer-events:none; background:linear-gradient(180deg, rgba(232,244,255,.05), transparent 40%); }
.drop .wrap { position:relative; }
.drop-head { text-align:left; margin-bottom:2.2rem; max-width:60ch; }
.drop-head .eyebrow { color:color-mix(in srgb,var(--ice) 70%,transparent); }
.drop-head h2 { color:var(--ice); }
.drop-head p { color:color-mix(in srgb,var(--ice) 82%,transparent); margin-top:.5rem; }
.drop-when { font-family:var(--font-display); font-variant-numeric:tabular-nums; font-size:.85rem; letter-spacing:.14em; text-transform:uppercase; color:color-mix(in srgb,var(--ice) 72%,transparent); }

.ledger { list-style:none; display:grid; gap:1.4rem; }
.ledger-row { display:block; color:var(--ice); }
a.ledger-row:hover { color:var(--ice); }
.ledger-line {
  display:grid; grid-template-columns:auto 1fr auto; align-items:baseline; column-gap:.85rem;
}
.ledger-name { font-family:var(--font-display); font-weight:700; font-size:clamp(1.15rem,2.4vw,1.5rem); }
.ledger-dots { align-self:end; margin-bottom:.34em; border-bottom:1px dotted color-mix(in srgb,var(--ice) 52%,transparent); min-width:2rem; }
.ledger-val { font-family:var(--font-display); font-variant-numeric:tabular-nums; font-weight:700; font-size:clamp(1.35rem,3vw,2rem); white-space:nowrap; }
.ledger-row.is-headline .ledger-val { color:var(--ice); }
.ledger-meta { display:flex; flex-wrap:wrap; gap:.5rem 1.1rem; margin-top:.5rem; padding-left:.1rem; color:color-mix(in srgb,var(--ice) 78%,transparent); font-size:.92rem; }
.ledger-meta .code {
  display:inline-flex; align-items:center; gap:.4rem;
  background:var(--accent); color:var(--ice); border-radius:4px; padding:.15rem .55rem;
  letter-spacing:.12em; font-size:.8rem; text-transform:uppercase; border-top:1px solid rgba(232,244,255,.25);
}
.ledger-meta .valid { font-variant-numeric:tabular-nums; }
.ledger-row + .ledger-row { border-top:1px solid color-mix(in srgb,var(--ice) 18%,transparent); padding-top:1.4rem; }
a.ledger-row { transition:padding-left var(--dur) var(--ease); }
a.ledger-row:hover { padding-left:.35rem; }
.drop-foot { margin-top:2.2rem; }
.drop-foot .link-arrow { color:var(--ice); border-color:var(--ice); }

/* on a full deals page, ledger sits on card fields with the 3px accent rule */
.deal-stack { display:grid; gap:1.5rem; }
.deal-card {
  display:grid; grid-template-columns:1fr auto; gap:1.5rem; align-items:start;
  background:var(--card); border-left:3px solid var(--accent);
  border-top:var(--edge-top); border-bottom:var(--edge-bottom); box-shadow:var(--inset-lit);
  border-radius:var(--radius); padding:clamp(1.4rem,3vw,2rem);
}
.deal-card.is-headline { background:var(--raised); }
.deal-card .val { font-family:var(--font-display); font-variant-numeric:tabular-nums; font-weight:700; font-size:clamp(2rem,6vw,3rem); color:var(--heading); line-height:1; }
.deal-card.is-headline .val { color:var(--ice); }
.deal-card h3 { font-size:1.3rem; margin-top:.35rem; }
.deal-card .terms { color:var(--text); margin-top:.5rem; }
.deal-card .validity { color:var(--text-2); font-size:.9rem; margin-top:.5rem; font-variant-numeric:tabular-nums; }
.deal-card .code {
  display:inline-flex; align-items:center; gap:.45rem; margin-top:.8rem;
  background:var(--accent); color:var(--ice); border-radius:4px; padding:.35rem .7rem;
  letter-spacing:.1em; text-transform:uppercase; font-size:.85rem; border-top:1px solid rgba(232,244,255,.25);
}
.deal-card .deal-num { text-align:right; }

/* compact deal cards (Students, Store page) */
.deal-compact { display:grid; gap:1rem; }
.deal-compact .deal-card { grid-template-columns:auto 1fr; gap:1rem; padding:1.15rem 1.3rem; align-items:center; }
.deal-compact .val { font-size:clamp(1.5rem,4vw,2rem); }
.deal-compact h3 { font-size:1.05rem; margin:0; }

/* ============================================================
   Color-chip rubric (section mark instead of an eyebrow)
   ============================================================ */
.rubric { display:inline-flex; align-items:center; gap:.7rem; margin-bottom:1rem; }
.rubric .swatch { width:16px; height:16px; border-radius:3px; border-top:1px solid rgba(232,244,255,.3); box-shadow:var(--inset-lit); }
.rubric .swatch.blue { background:var(--blue); }
.rubric .swatch.red { background:var(--accent); }
.rubric span.lbl { font-size:13px; text-transform:uppercase; letter-spacing:.08em; color:var(--text-2); font-weight:600; }

.section-head { max-width:60ch; margin-bottom:2.4rem; }
.section-head p { color:var(--text); margin-top:.6rem; }

/* ============================================================
   What We Carry — department index (typeset, not photo tiles)
   ============================================================ */
.dept-layout { display:grid; grid-template-columns:1.25fr .75fr; gap:2rem; align-items:start; }
.dept-index { display:grid; gap:1px; background:var(--border); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; }
.dept-row {
  display:grid; grid-template-columns:auto 1fr auto; align-items:baseline; column-gap:1rem;
  background:var(--card); padding:1.15rem 1.3rem; color:var(--text);
  transition:background var(--dur) var(--ease);
}
a.dept-row:hover { background:var(--raised); color:var(--text); }
.dept-row .d-name { font-family:var(--font-display); font-weight:600; font-size:1.15rem; color:var(--heading); }
.dept-row .d-lead { align-self:end; margin-bottom:.34em; border-bottom:1px dotted var(--border); }
.dept-row .d-desc { color:var(--text-2); font-size:.92rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:22ch; }
.dept-aside { position:relative; }
.dept-plate { aspect-ratio:4/5; }

/* full department sections (What We Carry page) */
.dept-full { display:grid; gap:2px; }
.dept-block { background:var(--card); border-top:var(--edge-top); box-shadow:var(--inset-lit); padding:clamp(1.6rem,4vw,2.4rem); scroll-margin-top:120px; }
.dept-block .status { display:inline-block; margin-top:.7rem; font-size:12px; text-transform:uppercase; letter-spacing:.08em; color:var(--ice); background:var(--secondary); padding:.2rem .6rem; border-radius:3px; font-family:var(--font-display); font-variant-numeric:tabular-nums; }
.in-case { list-style:none; display:flex; flex-wrap:wrap; gap:.5rem .9rem; margin-top:1rem; }
.in-case li { font-family:var(--font-body); font-size:13px; letter-spacing:.05em; text-transform:uppercase; color:var(--text-2); background:var(--seam); padding:.3rem .65rem; border-radius:3px; border-top:1px solid rgba(232,244,255,.08); }
.brand-names { margin-top:.8rem; font-size:13px; text-transform:uppercase; letter-spacing:.1em; color:var(--text-2); }

/* tile grid (What We Carry index tiles) — designed no-photo tiles */
.tiles { list-style:none; display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.tile {
  position:relative; aspect-ratio:4/5; display:flex; flex-direction:column; justify-content:flex-end;
  background:var(--card); border-radius:var(--radius); overflow:hidden;
  border-top:var(--edge-top); border-bottom:var(--edge-bottom); box-shadow:var(--inset-lit);
  padding:1.1rem; color:var(--heading); text-decoration:none;
}
.tile .tile-mark { position:absolute; top:1rem; left:1rem; width:34px; height:34px; color:var(--blue-light); opacity:.9; }
.tile .tile-mark svg { width:100%; height:100%; }
.tile .status-top { position:absolute; top:1rem; right:1rem; font-size:11px; text-transform:uppercase; letter-spacing:.06em; color:var(--ice); background:var(--secondary); padding:.2rem .5rem; border-radius:3px; font-family:var(--font-display); font-variant-numeric:tabular-nums; }
.tile .tile-name { font-family:var(--font-display); font-weight:700; font-size:1.15rem; }
.tile .tile-line { font-size:.85rem; color:var(--text-2); margin-top:.25rem; }
.tile::before { content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(232,244,255,.05) 0%, transparent 40%); pointer-events:none; }
.tile:hover { color:var(--heading); }
.tile.tile-photo img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter:brightness(.55) saturate(.9); z-index:0; }
.tile.tile-photo::after { content:""; position:absolute; inset:0; background:linear-gradient(to top, rgba(8,8,8,.85) 0%, rgba(8,8,8,.2) 45%, transparent 70%); z-index:0; }
.tile.tile-photo > * { position:relative; z-index:1; }

/* leashed category ribbon (the ONE auto-moving element) */
.ribbon { margin-top:2.4rem; border-block:1px solid var(--border); overflow:hidden; position:relative; }
.ribbon-track { display:flex; gap:0; width:max-content; animation:ribbon 34s linear infinite; }
.ribbon.is-paused .ribbon-track, .ribbon:hover .ribbon-track, .ribbon:focus-within .ribbon-track { animation-play-state:paused; }
.ribbon.is-stopped { overflow-x:auto; scroll-snap-type:x mandatory; }
.ribbon.is-stopped .ribbon-track { animation:none; }
.ribbon-item { flex:0 0 auto; padding:1rem 2rem; font-family:var(--font-display); font-weight:600; font-size:15px; text-transform:uppercase; letter-spacing:.1em; color:var(--text-2); border-left:1px solid var(--border); scroll-snap-align:start; }
.ribbon-item:first-child { border-left:none; }
@keyframes ribbon { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@media (prefers-reduced-motion:reduce){ .ribbon-track{ animation:none !important; } .ribbon{ overflow-x:auto; } }

/* ============================================================
   Rewards + Students dual chips / bands
   ============================================================ */
.two-chip { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.chip-blue { border-left:3px solid var(--blue); }
.chip-blue .rubric .lbl { color:var(--blue-light); }
.chip h2 { margin-bottom:.6rem; }
.chip .big { font-family:var(--font-display); font-variant-numeric:tabular-nums; font-weight:700; font-size:clamp(2.5rem,7vw,4rem); color:var(--heading); line-height:1; }
.chip p { color:var(--text); margin:.6rem 0 1rem; }
.chip-actions { display:flex; gap:1.2rem; flex-wrap:wrap; align-items:center; margin-top:1rem; }

/* numbered steps (Rewards) */
.steps { list-style:none; counter-reset:s; display:grid; gap:1px; background:var(--border); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; }
.steps li { counter-increment:s; background:var(--card); padding:1.4rem 1.6rem; display:grid; grid-template-columns:auto 1fr; gap:1.2rem; align-items:start; }
.steps li::before { content:counter(s); font-family:var(--font-display); font-variant-numeric:tabular-nums; font-weight:700; font-size:1.6rem; color:var(--blue-light); line-height:1; }
.steps h3 { margin-bottom:.3rem; }
.steps p { color:var(--text-2); margin:0; }

/* ============================================================
   Visit / store card / facts plaque
   ============================================================ */
.split { display:grid; grid-template-columns:1fr 1fr; gap:2rem; align-items:stretch; }
.split .plate { aspect-ratio:3/2; min-height:100%; }
.facts { min-width:0; }
.facts dl { display:grid; grid-template-columns:auto 1fr; gap:.6rem 1.2rem; margin:1.2rem 0; }
.facts dt { color:var(--text-2); font-size:13px; text-transform:uppercase; letter-spacing:.06em; padding-top:.15rem; }
.facts dd { color:var(--text); font-family:var(--font-display); font-variant-numeric:tabular-nums; }
.facts dd a { color:var(--ice); }
.facts .actions { display:flex; gap:1.2rem; flex-wrap:wrap; align-items:center; margin-top:1.4rem; }

/* hours table */
.hours-table { width:100%; border-collapse:collapse; margin-top:1rem; font-family:var(--font-display); font-variant-numeric:tabular-nums; }
.hours-table th, .hours-table td { text-align:left; padding:.5rem .4rem; border-bottom:1px solid var(--border); font-weight:500; }
.hours-table th { color:var(--text-2); font-weight:600; }
.hours-table tr.today td, .hours-table tr.today th { color:var(--ice); }

/* store list entries (More Cloud stores / Locations) */
.store-list { list-style:none; display:grid; gap:1px; background:var(--border); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; }
.store-list li { background:var(--card); padding:1.2rem 1.4rem; display:grid; gap:.35rem; }
.store-list .s-name { font-family:var(--font-display); font-weight:600; color:var(--heading); font-size:1.05rem; }
.store-list .s-row { display:flex; flex-wrap:wrap; gap:.6rem 1.4rem; align-items:center; color:var(--text-2); font-size:.95rem; }
.store-list .s-row a { color:var(--blue-light); }
.store-list .s-row .num { color:var(--ice); }
.store-list li { cursor:pointer; transition:transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.store-list li:hover, .store-list li:focus-within { transform:translateY(-3px); box-shadow:0 10px 24px rgba(0,0,0,.4); }

/* ============================================================
   Origin / prose (About)
   ============================================================ */
.origin { display:grid; grid-template-columns:1.4fr 1fr; background:var(--bg); gap:0; align-items:stretch; border:1px solid var(--ice-hair); }
.origin__art { position:relative; overflow:hidden; background:var(--seam); border-left:1px solid var(--ice-hair); }
.origin__art img { width:100%; height:100%; object-fit:cover; }
.origin__prose { padding:clamp(2rem,5vw,4rem); }
.origin__prose p { color:var(--text); line-height:1.65; }
.origin__prose p + p { margin-top:1.2rem; }
.prose { max-width:70ch; }
.prose h2 { margin:2.2rem 0 .8rem; }
.prose p { color:var(--text); line-height:1.65; }
.prose p + p { margin-top:1.1rem; }

/* details/summary FAQ */
.faq { border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; }
.faq details { border-bottom:1px solid var(--border); background:var(--card); }
.faq details:last-child { border-bottom:none; }
.faq summary { cursor:pointer; padding:1.1rem 1.4rem; font-family:var(--font-display); font-weight:600; color:var(--heading); list-style:none; display:flex; justify-content:space-between; align-items:center; gap:1rem; min-height:44px; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:"+"; font-size:1.4rem; color:var(--blue-light); line-height:1; }
.faq details[open] summary::after { content:"–"; }
.faq .faq-body { padding:0 1.4rem 1.2rem; color:var(--text); }

/* ============================================================
   Contact / forms
   ============================================================ */
.form-layout { display:grid; grid-template-columns:1.1fr .9fr; gap:2rem; align-items:start; }
.contact-form {
  background:var(--card); border-top:var(--edge-top); border-bottom:var(--edge-bottom);
  box-shadow:var(--inset-lit); border-radius:var(--radius); padding:clamp(1.6rem,4vw,2.2rem);
  display:grid; gap:1.1rem;
}
.field { display:grid; gap:.4rem; }
.field label { font-size:13px; text-transform:uppercase; letter-spacing:.06em; color:var(--text-2); font-weight:600; }
.field input, .field textarea {
  font-family:var(--font-body); font-size:16px; color:var(--heading);
  background:var(--seam); border:1px solid var(--border); border-radius:var(--radius);
  padding:.8rem .9rem; min-height:48px; width:100%;
  transition:border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { min-height:130px; resize:vertical; }
.field input:focus, .field textarea:focus { outline:none; border-color:var(--ice); box-shadow:0 0 0 1px var(--ice); }
.field .hint { font-size:12px; color:var(--text-2); }
.form-hp { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

/* ============================================================
   Closer band — "Come see us." (burgundy-black)
   ============================================================ */
.closer { background:var(--bg-deep); border-top:1px solid var(--border); text-align:left; }
.closer .wrap { display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:1.5rem; padding-block:64px; }
.closer h2 { color:var(--accent-head); font-size:clamp(2.2rem,6vw,3.5rem); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background:var(--bg-deep); border-top:1px solid var(--border); color:var(--text-2); }
.site-footer .wrap { padding-block:56px; }
.footer-grid { display:grid; grid-template-columns:1.3fr 1fr 1fr; gap:2.4rem; }
.footer-store img { height:44px; width:auto; max-width:160px; margin-bottom:1rem; }
.footer-store .s-name { font-family:var(--font-display); color:var(--heading); font-weight:600; }
.footer-store address { font-style:normal; margin-top:.6rem; display:grid; gap:.3rem; }
.footer-store address a, .footer-col a { color:var(--text-2); }
.footer-store address a:hover, .footer-col a:hover { color:var(--ice); }
.footer-store .num { color:var(--ice); font-size:1rem; }
.footer-col h3 { font-size:13px; text-transform:uppercase; letter-spacing:.08em; color:var(--text-2); margin-bottom:1rem; font-family:var(--font-body); }
.footer-col ul { list-style:none; display:grid; gap:.55rem; }
.footer-col li a { min-height:24px; display:inline-flex; align-items:center; }
.footer-stores li {
  margin-bottom:.9rem; font-size:.92rem; background:var(--raised); border-radius:var(--radius);
  padding:.85rem 1rem; cursor:pointer;
  transition:transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.footer-stores li:hover, .footer-stores li:focus-within { transform:translateY(-3px); box-shadow:0 10px 24px rgba(0,0,0,.4); }
.footer-stores .fs-name { color:var(--text); display:block; }
.footer-social { display:flex; gap:.9rem; margin-top:1rem; }
.footer-social a { display:inline-flex; align-items:center; gap:.4rem; min-height:44px; color:var(--text-2); }
.footer-social a:hover { color:var(--ice); }
.footer-social svg { width:22px; height:22px; }
.footer-bottom { margin-top:2.4rem; padding-top:1.4rem; border-top:1px solid var(--border); display:flex; flex-wrap:wrap; justify-content:space-between; gap:1rem; font-size:.85rem; }
.footer-bottom a { color:var(--text-2); }

/* ============================================================
   404
   ============================================================ */
.nf { min-height:60vh; display:flex; align-items:center; }
.nf .card { max-width:32rem; }
.nf h1 { font-size:clamp(2rem,7vw,3.2rem); color:var(--ice); }
.nf .nf-actions { display:flex; gap:1.4rem; flex-wrap:wrap; margin-top:1.4rem; align-items:center; }

/* ============================================================
   Utility
   ============================================================ */
.pagehead { padding-block:clamp(3rem,7vw,5rem) 1.5rem; }
.pagehead h1 { color:var(--ice); }
.pagehead p { color:var(--text); margin-top:.8rem; font-size:1.15rem; }
.divider { height:1px; background:var(--border); border:none; margin-block:0; }
.center { text-align:center; }
.mt-2 { margin-top:2rem; }
.map-static { display:block; border:1px solid var(--ice-hair); border-radius:var(--radius); overflow:hidden; background:var(--seam); }
.map-static .map-face { display:flex; align-items:center; gap:.8rem; padding:1.4rem; color:var(--text-2); }
.map-static .map-face svg { width:28px; height:28px; color:var(--blue-light); }

/* ============================================================
   Gallery lightbox — brand restyle of scaffolded chrome (inert here)
   ============================================================ */
.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(--dur) var(--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(8,8,8,.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:.6rem; }
.lightbox__img { max-width:100%; max-height:80vh; width:auto; height:auto; object-fit:contain; border:1px solid var(--ice-hair); }
.lightbox__caption { font-family:var(--font-body); font-size:.9rem; line-height:1.5; color:var(--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-display); font-variant-numeric:tabular-nums; font-size:.8rem; letter-spacing:.08em; color:var(--text-2); }
.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(--border); cursor:pointer; background:var(--card); color:var(--heading); font-size:1.15rem; line-height:1; }
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover, .lightbox__close:focus-visible, .lightbox__prev:focus-visible, .lightbox__next:focus-visible { color:var(--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-grid { grid-template-columns:1fr 1fr; }
  .tiles { grid-template-columns:repeat(3,1fr); }
}

@media (max-width:768px) {
  body { padding-bottom:calc(var(--actionbar-h) + env(safe-area-inset-bottom)); }
  .section { padding-block:44px; }
  .util { display:none; }
  .header-main .wrap { min-height:56px; }
  .brand img { height:44px; }
  .nav-primary { display:none; }
  .hamburger { display:inline-flex; }
  .action-bar { display:block; }

  .hero-slab { grid-template-columns:1fr; min-height:0; }
  .hero-plate { border-right:none; }
  .hero-plate--desktop { display:none; }
  .hero-plate--mobile { display:block; aspect-ratio:4/5; max-height:62vh; border-bottom:1px solid var(--ice-hair); }
  .hero-plate--mobile::after { background:linear-gradient(to top, rgba(8,8,8,.85) 0%, rgba(8,8,8,.3) 45%, transparent 75%); }
  .hero-invite { display:none; }
  .hero-body .link-blue { display:none; }
  .hero-body { padding:1.6rem 1.5rem 2.2rem; }

  .dept-layout { grid-template-columns:1fr; }
  .dept-aside { display:none; }
  .two-chip { grid-template-columns:1fr; }
  .split { grid-template-columns:1fr; }
  .origin { grid-template-columns:1fr; }
  .origin__art { border-left:none; border-top:1px solid var(--ice-hair); aspect-ratio:16/10; }
  .form-layout { grid-template-columns:1fr; }
  .tiles { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr; }
  .ledger-line { grid-template-columns:1fr auto; }
  .ledger-dots { display:none; }
  .deal-card { grid-template-columns:1fr; }
  .deal-card .deal-num { text-align:left; }
  .closer .wrap { flex-direction:column; align-items:flex-start; }
}

@media (max-width:480px) {
  .tiles { grid-template-columns:1fr 1fr; }
  h1 { font-size:clamp(2.1rem,11vw,3rem); }
}

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