/*
 * Cloud Smoke Shop — styles.css
 * Design system: "A lit sign on Tennessee Street at 1 a.m."
 * Jet-black ground, storm-navy glowing from within, electric-sky accent,
 * crimson used ONLY as a line / edge / glint — never a fill, never a block, never text.
 * Signature: one unbroken hot-red rule (the spine) threads every page.
 * Type: Big Shoulders Display (signage) + Hanken Grotesk (body) + Spline Sans Mono (facts).
 */

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --color-primary: #0A2A4A;        /* storm navy */
  --color-primary-dark: #05182E;   /* deep storm */
  --color-primary-light: #16456E;  /* lifted navy */
  --color-secondary: #00A8F0;      /* electric sky */
  --color-accent: #A8121F;         /* fracture crimson — LINE/EDGE/GLINT ONLY */
  --color-accent-hot: #D91B2E;
  --color-bg: #04060A;             /* jet black ground */
  --color-surface: #0A1420;        /* near-black panel */
  --color-surface-2: #0C1A2B;
  --color-text: #FFFFFF;
  --color-text-secondary: #E8F4FF;
  --color-border: #16324E;         /* hairline navy */

  --font-primary: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --font-secondary: 'Hanken Grotesk', system-ui, sans-serif;
  --font-mono: 'Spline Sans Mono', ui-monospace, 'SFMono-Regular', monospace;

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

  --maxw: 1180px;
  --pad-x: clamp(1.25rem, 5vw, 4.5rem);
  --nav-h: 74px;

  /* spine geometry — measured from the centered content column's left edge */
  --spine-x: clamp(1.15rem, 6vw, 5.25rem);
  --spine-gap: clamp(1.25rem, 3.5vw, 2.75rem);

  --motion-duration: 280ms;
  --motion-duration-slow: 900ms;
  --motion-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html {
  font-size: var(--font-size-base, 16px);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

a { color: var(--color-secondary); text-decoration: none; }
a:hover { color: var(--color-secondary); }

h1, h2, h3, h4 { font-family: var(--font-primary); font-weight: 800; line-height: 0.98; color: #fff; }

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

::selection { background: var(--color-secondary); color: #04060A; }

/* 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(--color-surface); color: var(--color-secondary);
  font-weight: 600; text-decoration: none;
  border: 1px solid var(--color-secondary); border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Typography scale
   ============================================================ */
.display {
  font-family: var(--font-primary); font-weight: 900;
  font-size: clamp(4rem, 11vw, 9rem); line-height: 0.9; letter-spacing: -0.01em;
}
.h1 { font-size: clamp(2.75rem, 6vw, 5rem); line-height: 0.96; letter-spacing: -0.005em; }
.h2 { font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.0; }
.h3 { font-size: 1.5rem; line-height: 1.05; letter-spacing: 0.01em; font-weight: 700; }
.h4 { font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; }
.lead { font-family: var(--font-secondary); font-weight: 500; font-size: clamp(1.15rem, 2vw, 1.35rem); line-height: 1.5; color: var(--color-text-secondary); max-width: 60ch; }
.body { font-family: var(--font-secondary); font-weight: 400; font-size: 1.0625rem; line-height: 1.65; max-width: 66ch; color: var(--color-text-secondary); }
.small { font-family: var(--font-secondary); font-weight: 500; font-size: 0.9375rem; line-height: 1.5; }

/* Mono — every checkable fact */
.mono { font-family: var(--font-mono); font-weight: 500; letter-spacing: 0.02em; }
.caption { font-family: var(--font-mono); font-weight: 500; font-size: 0.8125rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-secondary); }
.sky { color: var(--color-secondary); }

/* ============================================================
   Layout primitives — the spine lives here
   ============================================================ */
.band { position: relative; width: 100%; background: var(--color-bg); }

.inner {
  position: relative;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  padding-block: clamp(4.5rem, 10vw, 8rem);
}

/* Continuous crimson spine — one unbroken rule crossing every section.
   Because every .inner shares max-width + centering and bands stack flush,
   the per-band segments join into one line. */
.spined { --content-indent: calc(var(--spine-x) + var(--spine-gap)); }
.spined .inner { padding-left: max(var(--pad-x), var(--content-indent)); }
.spined .inner::before {
  content: "";
  position: absolute;
  left: var(--spine-x); top: 0; bottom: 0;
  width: 1px;
  background: var(--color-accent);
  z-index: 2;
  pointer-events: none;
}

/* A headline the spine slices in half */
.slice-head { position: relative; z-index: 1; margin-left: calc(-1 * var(--spine-gap) - 0.35rem); }

/* Faint atmospheric haze layer ("cloud gathering") behind The Room */
.haze-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 0; opacity: 0.4; pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 72%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 72%, transparent 100%);
}

/* "The floor is the brand" — a poured-epoxy texture as a material section divider */
.floor-divider { position: relative; height: clamp(90px, 14vw, 150px); overflow: hidden; border-block: 1px solid var(--color-border); background: var(--color-bg); }
.floor-divider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.floor-divider::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,6,10,0.55) 0%, rgba(4,6,10,0.45) 50%, rgba(4,6,10,0.65) 100%); }

/* Ground cross-fade on entry ("cloud gathering") — never hides content */
[data-ground] { transition: background var(--motion-duration-slow) var(--motion-ease); }
[data-ground="gather"] { background:
    radial-gradient(120% 90% at 15% 120%, rgba(10,42,74,0) 0%, rgba(4,6,10,0) 100%),
    var(--color-bg); }
[data-ground="gather"].in-view { background:
    radial-gradient(130% 100% at 18% 120%, rgba(22,69,110,0.55) 0%, rgba(10,42,74,0.35) 45%, rgba(4,6,10,0) 100%),
    var(--color-bg); }
[data-ground="sky"] { background: linear-gradient(180deg, #0A2A4A 0%, #071627 100%); }
[data-ground="charge"] { background: var(--color-bg); }
[data-ground="charge"].in-view { background:
    radial-gradient(90% 60% at 50% 128%, rgba(0,168,240,0.20) 0%, rgba(0,168,240,0.06) 40%, rgba(4,6,10,0) 72%),
    var(--color-bg); }

/* ============================================================
   Header / Navigation
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--color-bg);
}
.site-header::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--color-accent);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.55s var(--motion-ease);
}
.site-header.scrolled::after { transform: scaleX(1); }

.nav-wrap {
  max-width: 1320px; margin-inline: auto;
  min-height: var(--nav-h);
  padding: 0.5rem clamp(1rem, 4vw, 2.5rem);
  display: flex; align-items: center; gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-logo { height: 56px; width: auto; max-width: 240px; }

.site-nav { margin-left: auto; display: flex; align-items: center; gap: clamp(1.25rem, 3vw, 2.5rem); }
.nav-links { list-style: none; display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }
.nav-links a {
  font-family: var(--font-secondary); font-weight: 500; font-size: 0.9375rem; /* 15px — meets floor */
  color: var(--color-text); letter-spacing: 0.01em;
  padding: 0.35rem 0; position: relative; transition: color var(--motion-duration) var(--motion-ease);
}
.nav-links a:hover { color: var(--color-secondary); }
.nav-links a[aria-current="page"] { color: var(--color-secondary); }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--color-secondary);
}

.nav-contact { display: flex; align-items: center; gap: 1.1rem; padding-left: 1.1rem; border-left: 1px solid var(--color-border); }
.nav-hours { font-family: var(--font-mono); font-size: 0.8125rem; letter-spacing: 0.04em; color: var(--color-text-secondary); display: inline-flex; align-items: center; gap: 0.4rem; white-space: nowrap; }
.nav-hours i { color: var(--color-secondary); }
.nav-call {
  font-family: var(--font-mono); font-weight: 600; font-size: 0.9375rem; color: var(--color-text);
  display: inline-flex; align-items: center; gap: 0.45rem; white-space: nowrap;
  transition: color var(--motion-duration) var(--motion-ease);
}
.nav-call i { color: var(--color-accent); }
.nav-call:hover { color: var(--color-secondary); }
.nav-call:hover i { color: var(--color-secondary); }

.nav-toggle { display: none; background: none; border: 1px solid var(--color-border); color: #fff; width: 46px; height: 46px; border-radius: 4px; margin-left: auto; font-size: 1.4rem; align-items: center; justify-content: center; cursor: pointer; }

/* ============================================================
   Buttons — navy/near-black fill, crimson EDGE only (never a red fill)
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  font-size: 1.05rem;
  color: #fff; background: var(--color-surface);
  border: 1px solid var(--color-accent);
  padding: 0.9rem 1.5rem; border-radius: 2px;
  cursor: pointer;
  transition: background var(--motion-duration) var(--motion-ease), color var(--motion-duration) var(--motion-ease), border-color var(--motion-duration) var(--motion-ease);
}
.btn:hover { background: var(--color-primary-dark); border-color: var(--color-secondary); color: #fff; }
.btn i { transition: transform var(--motion-duration) var(--motion-ease); }
.btn:hover i { transform: translateX(4px); }
.btn--ghost { background: transparent; border-color: var(--color-border); }
.btn--ghost:hover { border-color: var(--color-secondary); }

.textlink { color: var(--color-secondary); font-weight: 600; display: inline-flex; align-items: center; gap: 0.4rem; }
.textlink i { transition: transform var(--motion-duration) var(--motion-ease); }
.textlink:hover i { transform: translateX(4px); }

/* ============================================================
   HERO — "This Week" fracture void
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100dvh - var(--nav-h));
  background: var(--color-bg);
  display: grid; place-items: center;
  overflow: hidden;
}
.fracture, .fracture-mobile {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0;
}
.fracture-mobile { display: none; }
.hero-void { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.9rem; padding: 2rem; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  font-size: clamp(1.35rem, 3.4vw, 2.1rem);
  color: #fff; background: #070C14;
  border: 1px solid var(--color-accent);
  padding: 1rem 2rem; border-radius: 2px;
  transition: border-color var(--motion-duration) var(--motion-ease), background var(--motion-duration) var(--motion-ease);
}
.hero-cta i { color: var(--color-accent); transition: transform var(--motion-duration) var(--motion-ease), color var(--motion-duration) var(--motion-ease); }
.hero-cta:hover { border-color: var(--color-secondary); background: #0A1420; color:#fff; }
.hero-cta:hover i { color: var(--color-secondary); transform: translateX(6px); }
.hero-sub { font-family: var(--font-mono); font-size: 0.8125rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-text-secondary); opacity: 0.8; }

.frac-line { fill: none; stroke: url(#fracGrad); stroke-width: 1.4; }
.glint { fill: none; stroke: #F6C3CB; stroke-width: 2.6; stroke-linecap: round;
  stroke-dasharray: 46 4000; stroke-dashoffset: 4000; opacity: 0;
  animation: glintTravel 9s var(--motion-ease) infinite; }
@keyframes glintTravel {
  0%   { stroke-dashoffset: 900; opacity: 0; }
  4%   { opacity: 0.9; }
  16%  { stroke-dashoffset: 300; opacity: 0.9; }
  22%  { opacity: 0; }
  100% { stroke-dashoffset: 300; opacity: 0; }
}

/* ============================================================
   HOME — The Room
   ============================================================ */
.room-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 900px) { .room-grid { grid-template-columns: 1.05fr 0.95fr; } }
.room-copy { min-width: 0; }
.room-copy .lead { margin-top: 1.25rem; }
.room-copy .body { margin-top: 1.1rem; }
.room-copy .textlink { margin-top: 1.6rem; }
.eyebrow { font-family: var(--font-mono); font-size: 0.8125rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-secondary); display: inline-block; margin-bottom: 1rem; }

/* contained lit exhibit — hairline case-frame, never full-bleed */
.exhibit { position: relative; border: 1px solid var(--color-border); background: var(--color-surface); padding: 10px; min-width: 0; }
.exhibit::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(0,168,240,0.18); pointer-events: none; }
.exhibit__media { overflow: hidden; }
.exhibit__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform var(--motion-duration-slow) var(--motion-ease); aspect-ratio: 4 / 3; }
.exhibit:hover .exhibit__media img { transform: scale(1.04); }
.exhibit__cap { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-secondary); opacity: 0.7; margin-top: 0.6rem; }

/* ============================================================
   HOME — What We Carry teaser (ruled specimen index)
   ============================================================ */
.specimen { list-style: none; margin-top: clamp(2rem, 5vw, 3.5rem); }
.spec-row {
  display: grid; grid-template-columns: 3.5rem 1fr; gap: clamp(1rem, 3vw, 2.5rem);
  align-items: baseline;
  border-top: 1px solid var(--color-border);
  padding: clamp(1.4rem, 3vw, 2.4rem) 0;
  position: relative;
  transition: border-color var(--motion-duration) var(--motion-ease);
}
.spec-row:last-child { border-bottom: 1px solid var(--color-border); }
.spec-row::after { content: ""; position: absolute; top: -1px; left: 0; height: 1px; width: 0; background: var(--color-secondary); transition: width var(--motion-duration-slow) var(--motion-ease); }
.spec-row:hover::after { width: 100%; }
.spec-num { font-family: var(--font-mono); font-size: 0.9rem; color: var(--color-secondary); padding-top: 0.4rem; }
.spec-name { font-family: var(--font-primary); font-weight: 800; line-height: 0.95; color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); transition: color var(--motion-duration) var(--motion-ease); }
.spec-row:hover .spec-name { color: var(--color-secondary); }
.spec-row.spec-lg .spec-name { font-size: clamp(2.6rem, 7vw, 5rem); }
.spec-desc { font-family: var(--font-secondary); font-weight: 400; font-size: 1.0625rem; color: var(--color-text-secondary); margin-top: 0.5rem; max-width: 60ch; }
.spec-tag { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-secondary); }

/* ============================================================
   HOME — 2,437 proof (colossal bare numeral)
   ============================================================ */
.proof { text-align: left; }
.proof-num { font-family: var(--font-primary); font-weight: 900; line-height: 0.82; letter-spacing: -0.02em; color: #fff; font-size: clamp(6rem, 30vw, 22rem); }
.proof-cap { font-family: var(--font-mono); font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-secondary); margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; }
.proof-cap i { color: var(--color-secondary); }

/* ============================================================
   HOME — The Path (fork to Deals)
   ============================================================ */
.path { position: relative; overflow: hidden; }
.path .inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; }
.path-fork { position: absolute; inset: 0; z-index: 0; }
.path .path-copy { position: relative; z-index: 2; max-width: 46ch; }

/* ============================================================
   HOME — Hours close (lit mono timetable)
   ============================================================ */
.hours-close { background: var(--color-bg); }
.hours-plate { border-top: 1px solid var(--color-accent); padding-top: clamp(1.5rem, 4vw, 2.5rem); max-width: 640px; }
.hours-label { font-family: var(--font-primary); font-weight: 800; font-size: clamp(1.6rem, 4vw, 2.4rem); text-transform: uppercase; color: #fff; margin-bottom: 1.5rem; }
.timetable { display: grid; gap: 0.85rem; }
.tt-row { display: flex; justify-content: space-between; gap: 1.5rem; font-family: var(--font-mono); font-size: clamp(1rem, 2.2vw, 1.3rem); border-bottom: 1px dotted var(--color-border); padding-bottom: 0.75rem; }
.tt-row .tt-day { color: var(--color-text-secondary); }
.tt-row .tt-time { color: var(--color-text); }
.tt-row .tt-time .sky { color: var(--color-secondary); }
.hours-meta { margin-top: 1.75rem; display: grid; gap: 0.65rem; font-family: var(--font-mono); font-size: 0.95rem; color: var(--color-text-secondary); }
.hours-meta a { color: var(--color-text); }
.hours-meta a:hover { color: var(--color-secondary); }
.hours-meta i { color: var(--color-secondary); margin-right: 0.5rem; }

/* ============================================================
   Page header (interior pages)
   ============================================================ */
.page-head .inner { padding-block: clamp(5rem, 11vw, 8.5rem) clamp(2.5rem, 6vw, 4rem); }
.page-head h1 { position: relative; z-index: 1; }
.page-head .lead { margin-top: 1.5rem; }

/* ============================================================
   WHAT WE CARRY — alternating category exhibits
   ============================================================ */
.category { position: relative; }
.cat-block { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; padding-block: clamp(2.5rem, 6vw, 4.5rem); }
@media (min-width: 860px) {
  .cat-block { grid-template-columns: 1fr 0.8fr; }
  .cat-block.reverse { grid-template-columns: 0.8fr 1fr; }
  .cat-block.reverse .cat-copy { order: 2; }
  .cat-block.reverse .cat-media { order: 1; }
}
.cat-copy { min-width: 0; }
.cat-name { font-family: var(--font-primary); font-weight: 800; line-height: 0.95; color: #fff; font-size: clamp(2.2rem, 5.5vw, 4rem); }
.cat-block.hero-cat .cat-name { font-size: clamp(2.8rem, 8vw, 5.5rem); }
.cat-copy .body { margin-top: 1.1rem; }
.cat-note { font-family: var(--font-mono); font-size: 0.8125rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-secondary); margin-top: 1.25rem; display: inline-block; }
.cat-media { position: relative; border: 1px solid var(--color-border); overflow: hidden; background: #06090F; min-width: 0; }
.cat-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform var(--motion-duration-slow) var(--motion-ease); }
.cat-media:hover img { transform: scale(1.04); }
.cat-divider { border: 0; border-top: 1px solid var(--color-border); }

/* ============================================================
   DEALS — magma
   ============================================================ */
.deals-ground { position: relative; background: var(--color-bg); overflow: hidden; }
.deals-ground .magma {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  opacity: 0.8;
}
.deals-ground::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(4,6,10,0.72) 0%, rgba(4,6,10,0.35) 45%, rgba(4,6,10,0.82) 100%); }
.deals-ground .inner { position: relative; z-index: 2; }
.deals-title { font-family: var(--font-primary); font-weight: 900; font-size: clamp(3rem, 10vw, 7rem); line-height: 0.9; color: #fff; letter-spacing: -0.01em; }
.deals-meta { font-family: var(--font-mono); font-size: 0.8125rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-text-secondary); margin-top: 1rem; }
.offer-list { list-style: none; margin-top: clamp(2.5rem, 6vw, 4rem); max-width: 760px; }
.offer-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1.5rem;
  border-top: 1px solid rgba(232,244,255,0.22); padding: clamp(1.1rem, 3vw, 1.8rem) 0; }
.offer-row:last-child { border-bottom: 1px solid rgba(232,244,255,0.22); }
.offer-item { font-family: var(--font-mono); font-weight: 600; font-size: clamp(1.1rem, 3vw, 1.7rem); color: #fff; letter-spacing: 0.01em; }
.offer-price { font-family: var(--font-mono); font-weight: 500; font-size: clamp(0.95rem, 2.4vw, 1.35rem); color: var(--color-text-secondary); white-space: nowrap; }

/* ============================================================
   Contact / lead forms — dark system, electric-sky focus
   ============================================================ */
.form-panel { background: var(--color-surface); border: 1px solid var(--color-border); padding: clamp(1.5rem, 4vw, 2.75rem); max-width: 640px; }
.form-panel h2 { margin-bottom: 0.5rem; }
.form-panel .body { margin-bottom: 1.75rem; }
.contact-form { display: grid; gap: 1.25rem; }
.field { display: grid; gap: 0.5rem; }
.field label { font-family: var(--font-secondary); font-weight: 500; font-size: 0.9375rem; color: var(--color-text-secondary); }
.field .opt { color: var(--color-secondary); font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; }
.field input, .field textarea {
  font-family: var(--font-secondary); font-size: 1rem; color: #fff;
  background: #060A11; border: 1px solid var(--color-border); border-radius: 2px;
  padding: 0.85rem 0.95rem; width: 100%;
  transition: border-color var(--motion-duration) var(--motion-ease), box-shadow var(--motion-duration) var(--motion-ease);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(232,244,255,0.4); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--color-secondary);
  box-shadow: 0 0 0 2px rgba(0,168,240,0.35);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-submit { justify-self: start; margin-top: 0.5rem; }
.form-submit { position: relative; }

/* ============================================================
   REWARDS
   ============================================================ */
.rewards-ground { position: relative; overflow: hidden; }
.rewards-vapor { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 60%; object-fit: cover; z-index: 0; opacity: 0.5; -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 60%); mask-image: linear-gradient(180deg, transparent 0%, #000 60%); }
.rewards-ground .inner { position: relative; z-index: 2; }
.rewards-points { list-style: none; margin: 1.75rem 0; display: grid; gap: 1rem; max-width: 60ch; }
.rewards-points li { display: flex; gap: 0.85rem; align-items: flex-start; font-family: var(--font-secondary); font-size: 1.0625rem; color: var(--color-text-secondary); }
.rewards-points i { color: var(--color-secondary); font-size: 1.2rem; margin-top: 0.15rem; flex: 0 0 auto; }

/* ============================================================
   REVIEWS — pull-lines hung off the spine at varied scale
   ============================================================ */
.review-wall { display: grid; gap: clamp(2rem, 5vw, 3.5rem); margin-top: clamp(2.5rem, 6vw, 4rem); }
.pull { position: relative; }
.pull p { font-family: var(--font-secondary); font-weight: 500; color: #fff; line-height: 1.15; }
.pull.pull-xl p { font-size: clamp(1.8rem, 5vw, 3.4rem); font-weight: 600; }
.pull.pull-lg p { font-size: clamp(1.4rem, 3.6vw, 2.4rem); }
.pull.pull-md p { font-size: clamp(1.15rem, 2.6vw, 1.7rem); }
.pull .stars { color: var(--color-secondary); letter-spacing: 0.15em; font-size: 0.9rem; margin-bottom: 0.6rem; display: block; }
.review-invite { margin-top: clamp(2.5rem, 6vw, 4rem); }

/* ============================================================
   VISIT — map link block
   ============================================================ */
.visit-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 6vw, 4rem); }
@media (min-width: 900px) { .visit-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.visit-facts { min-width: 0; }
.visit-facts .timetable { margin-top: 1.5rem; }
.visit-facts .hours-meta { margin-top: 1.75rem; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { position: relative; background: var(--color-bg); border-top: 1px solid var(--color-border); }
.footer-wrap { max-width: var(--maxw); margin-inline: auto; padding: clamp(3rem, 7vw, 5rem) var(--pad-x) 2rem; display: grid; gap: clamp(2rem, 5vw, 3.5rem); grid-template-columns: 1fr; }
@media (min-width: 780px) { .footer-wrap { grid-template-columns: 1.4fr 0.8fr 1.2fr; } }
.foot-logo { height: 46px; width: auto; max-width: 200px; margin-bottom: 1.1rem; }
.foot-line { font-family: var(--font-secondary); font-size: 0.95rem; color: var(--color-text-secondary); max-width: 34ch; line-height: 1.5; }
.foot-ig { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.25rem; font-family: var(--font-mono); font-size: 0.85rem; color: var(--color-text-secondary); }
.foot-ig i { font-size: 1.3rem; color: var(--color-secondary); }
.foot-ig:hover { color: var(--color-secondary); }
.foot-col h2 { font-family: var(--font-primary); font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-secondary); margin-bottom: 1.1rem; }
.foot-nav { list-style: none; display: grid; gap: 0.7rem; }
.foot-nav a { font-family: var(--font-secondary); font-size: 0.9375rem; color: var(--color-text); }
.foot-nav a:hover { color: var(--color-secondary); }
.foot-facts { display: grid; gap: 0.7rem; font-family: var(--font-mono); font-size: 0.875rem; color: var(--color-text-secondary); line-height: 1.5; }
.foot-facts a { color: var(--color-text); }
.foot-facts a:hover { color: var(--color-secondary); }
.foot-facts i { color: var(--color-secondary); margin-right: 0.45rem; }
.footer-base { position: relative; max-width: var(--maxw); margin-inline: auto; padding: 1.25rem var(--pad-x); border-top: 1px solid var(--color-border); display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between; align-items: center; }
.footer-base p { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.04em; color: rgba(232,244,255,0.55); }
/* crimson spine terminus in footer */
.site-footer::before { content: ""; position: absolute; top: 0; left: var(--spine-x); width: 1px; height: clamp(2rem, 5vw, 3.5rem); background: var(--color-accent); }

/* ============================================================
   404
   ============================================================ */
.err { min-height: calc(100dvh - var(--nav-h) - 42px); display: grid; place-items: center; text-align: center; padding: 3rem 1.5rem; }
.err .display { font-size: clamp(5rem, 22vw, 14rem); }
.err .lead { margin: 1rem auto 2rem; }

/* ============================================================
   Reveal / ground cross-fade helper (content NEVER hidden)
   ============================================================ */
/* No content is gated by opacity. Backgrounds cross-fade via [data-ground].in-view
   only. This keeps every section fully readable with JS disabled. */

/* ============================================================
   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; }
  .glint { display: none; }
  [data-ground] { transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--color-surface); border-top: 1px solid var(--color-border);
    padding: 0.5rem 0 1rem; margin-left: 0;
    max-height: 0; overflow: hidden; transition: max-height var(--motion-duration) var(--motion-ease);
  }
  .site-nav.open { max-height: 80vh; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav-links li { border-bottom: 1px solid var(--color-border); }
  .nav-links a { display: block; padding: 0.95rem clamp(1rem, 4vw, 2.5rem); font-size: 1.05rem; }
  .nav-contact { flex-direction: column; align-items: flex-start; gap: 0.75rem; border-left: 0; padding: 1rem clamp(1rem, 4vw, 2.5rem) 0.25rem; }
}

@media (max-width: 768px) {
  .fracture { display: none; }
  .fracture-mobile { display: block; }
  .hero { min-height: calc(100dvh - var(--nav-h)); }
  .hero-void { justify-content: flex-end; height: 100%; padding-bottom: 12vh; }
  .slice-head { margin-left: 0; } /* keep headlines clear of the edge hairline */
  .room-grid .exhibit { order: -1; } /* image clips in above copy, never disappears */
  .tt-row { font-size: 1.05rem; }
}

@media (max-width: 480px) {
  :root { --nav-h: 66px; }
  .brand-logo { height: 44px; }
  .offer-row { flex-direction: column; gap: 0.25rem; }
}

/* ============================================================
   Self-hosted Google Fonts (localized by 20_performance_sweep)
   ============================================================ */
/* vietnamese */
@font-face {
  font-family: 'Big Shoulders Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/fC1_PZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1cw9DuDJAM23AZ.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: 'Big Shoulders Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/fC1_PZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1cwtDuDJAM23AZ.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: 'Big Shoulders Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/fC1_PZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1czNDuDJAM2w.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: 'Big Shoulders Display';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/fC1_PZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1cw9DuDJAM23AZ.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: 'Big Shoulders Display';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/fC1_PZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1cwtDuDJAM23AZ.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: 'Big Shoulders Display';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/fC1_PZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1czNDuDJAM2w.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: 'Big Shoulders Display';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/fC1_PZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1cw9DuDJAM23AZ.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: 'Big Shoulders Display';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/fC1_PZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1cwtDuDJAM23AZ.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: 'Big Shoulders Display';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/fC1_PZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1czNDuDJAM2w.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;
}
/* latin-ext */
@font-face {
  font-family: 'Spline Sans Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/R70BjzAei_CDNLfgZxrW6wrZOF2WX5yZmE-Z-lxguQ.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: 'Spline Sans Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/R70BjzAei_CDNLfgZxrW6wrZOF2WX5KZmE-Z-lw.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;
}
/* latin-ext */
@font-face {
  font-family: 'Spline Sans Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/R70BjzAei_CDNLfgZxrW6wrZOF2WX5yZmE-Z-lxguQ.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: 'Spline Sans Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/R70BjzAei_CDNLfgZxrW6wrZOF2WX5KZmE-Z-lw.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;
}
/* latin-ext */
@font-face {
  font-family: 'Spline Sans Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/R70BjzAei_CDNLfgZxrW6wrZOF2WX5yZmE-Z-lxguQ.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: 'Spline Sans Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/R70BjzAei_CDNLfgZxrW6wrZOF2WX5KZmE-Z-lw.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;
}
