/*
 * styles.css — Cloud Smoke Shop
 * "Walk the Floor" — after-hours mosaic-floor field, glossy-not-glowing oxblood.
 * Bodoni Moda display / IBM Plex Sans body / IBM Plex Mono board, on near-black.
 */

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --color-primary: #1A3A7A;
  --color-secondary: #1060A8;
  --color-accent: #8B1A1A;
  --color-bg: #0A0A0F;
  --color-text: #E8F4FF;
  --color-text-secondary: #9AA9C4;
  --font-primary: 'Bodoni Moda', sans-serif;
  --font-secondary: 'IBM Plex Sans', sans-serif;
  --font-size-base: 16px;
  --spacing-base: 8px;
  --motion-duration: 240ms;
  --motion-duration-slow: 520ms;
  --motion-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* Additions layered over the scaffold tokens */
:root {
  --color-primary-dark: #10254F;
  --color-primary-light: #2E508F;
  --color-surface: #14151C;
  --color-border: #26304A;
  --rim: #E8F4FF;                 /* hard specular ice edge */
  --blue-legible: #7FB0E0;        /* lightened Signal Blue — AA-safe for small text on near-black */
  --font-display: 'Bodoni Moda', Georgia, serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
  --measure: 64ch;
  --container: 1180px;
  --pad-x: clamp(1.25rem, 5vw, 4rem);
  --sec-y: clamp(4.5rem, 10vw, 9rem);
  /* Glossy oxblood plate: hard-stop gradient, NO glow/bloom/blur anywhere */
  --oxblood-fill: linear-gradient(158deg, #A22020 0%, #8B1A1A 46%, #5E1212 100%);
}

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

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

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

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

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

/* Focus states — WCAG AA required */
:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 3px;
}

/* Skip navigation link — WCAG 2.4.1 */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  padding: 0.75rem 1.25rem;
  background: var(--color-surface); color: var(--color-text);
  font-family: var(--font-mono); font-weight: 600; text-decoration: none;
  border: 2px solid var(--rim); border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Typography scale
   ============================================================ */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; }
h1 { line-height: 1.02; letter-spacing: -0.005em; }
h2 { line-height: 1.08; }
h3 { line-height: 1.15; }

.display {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3.25rem, 8vw, 7rem);
  line-height: 0.98; letter-spacing: -0.01em;
}
.h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.5rem, 5.2vw, 4rem); line-height: 1.02; letter-spacing: -0.005em; }
.h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem, 3.6vw, 2.75rem); line-height: 1.08; }
.h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.35rem, 2.2vw, 1.6rem); line-height: 1.15; }

.lead {
  font-family: var(--font-body); font-weight: 400;
  font-size: clamp(1.125rem, 1.6vw, 1.28rem); line-height: 1.5;
  color: var(--color-text); max-width: 58ch;
}
.body-copy { font-family: var(--font-body); font-size: 1.0625rem; line-height: 1.65; max-width: var(--measure); color: var(--color-text); }
.body-copy + .body-copy { margin-top: 1.15em; }
.muted { color: var(--color-text-secondary); }

/* Mono tracked rubric — a section-opening grammar that is not eyebrow+display */
.rubric {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--color-text-secondary);
}
.rubric--blue { color: var(--blue-legible); }

/* Glass-edge display: 1px hard ice highlight along the top of display type */
.glass-edge {
  position: relative;
  text-shadow: 0 -1px 0 rgba(232, 244, 255, 0.55);
}

/* ============================================================
   Layout
   ============================================================ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad-x); }
.container--wide { max-width: 1400px; }
.container--narrow { max-width: 780px; }
.section { position: relative; padding-block: var(--sec-y); }
.section__head { margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section__head .h2 { margin-top: 0.5rem; }
.stack > * + * { margin-top: 1.15rem; }

/* Floor-photo backdrop that fades borderlessly into the black body */
.floor-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.floor-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  opacity: 0.82;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 52%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 52%, transparent 100%);
}
.floor-bg--top img {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 30%, #000 70%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 30%, #000 70%, transparent 100%);
}
.section > .container { position: relative; z-index: 1; }

/* ============================================================
   Buttons / CTA — restrained; the design wins, not the button
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--font-mono); font-size: 0.8125rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.16em;
  padding: 0.9em 1.4em; border: 1px solid transparent; cursor: pointer;
  transition: border-color var(--motion-duration) var(--motion-ease),
              background-color var(--motion-duration) var(--motion-ease),
              color var(--motion-duration) var(--motion-ease);
}
/* Ghost CTA — hairline ice outline */
.btn--ghost { color: var(--color-text); border-color: rgba(232,244,255,0.5); background: transparent; }
.btn--ghost:hover, .btn--ghost:focus-visible { border-color: var(--rim); background: rgba(232,244,255,0.06); }

/* Glossy oxblood — hard ice specular top edge, NO glow/bloom/blur */
.btn--oxblood {
  color: var(--color-text); background: var(--oxblood-fill);
  border-top: 2px solid var(--rim); border-bottom: 1px solid #3d0d0d;
}
.btn--oxblood:hover, .btn--oxblood:focus-visible {
  border-top-width: 3px; background: linear-gradient(158deg, #B62525 0%, #99201f 46%, #6a1414 100%);
}
.btn .ph, .btn .ph-bold { font-size: 1.05em; }

/* ============================================================
   Header / Navigation — centered logo, links beneath, scroll-away
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding-block: 0.9rem;
  background: linear-gradient(to bottom, rgba(10,10,15,0.82) 0%, rgba(10,10,15,0.35) 60%, transparent 100%);
  transition: transform var(--motion-duration-slow) var(--motion-ease),
              background-color var(--motion-duration) var(--motion-ease),
              border-color var(--motion-duration) var(--motion-ease);
  border-bottom: 1px solid transparent;
}
.site-header.nav--scrolled {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}
.site-header.nav--hidden { transform: translateY(-105%); }

.nav__inner { display: flex; flex-direction: column; align-items: center; gap: 0.55rem;
  width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad-x); }

.nav__brand { display: inline-flex; }
.nav__logo { height: 52px; width: auto; max-width: 200px; }

.nav__bar {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  width: 100%; gap: 1rem;
}
.nav__links {
  grid-column: 2; display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(1rem, 2.4vw, 2.1rem); list-style: none;
}
.nav__links a {
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--color-text);
  padding-block: 0.35rem; border-bottom: 2px solid transparent;
  transition: border-color var(--motion-duration) var(--motion-ease), color var(--motion-duration) var(--motion-ease);
}
.nav__links a:hover, .nav__links a[aria-current="page"] { border-bottom-color: var(--color-secondary); }

.nav__tel {
  grid-column: 3; justify-self: end;
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-mono); font-size: 0.8125rem; letter-spacing: 0.05em;
  color: var(--color-text); padding: 0.5em 0.9em;
  border: 1px solid var(--color-border);
  transition: background-color var(--motion-duration) var(--motion-ease), border-color var(--motion-duration) var(--motion-ease);
}
.nav__tel:hover, .nav__tel:focus-visible { background: var(--oxblood-fill); border-color: transparent; border-top: 1px solid var(--rim); }

.nav__toggle {
  display: none; background: transparent; border: 1px solid var(--color-border);
  color: var(--color-text); font-size: 1.5rem; line-height: 1;
  width: 46px; height: 46px; align-items: center; justify-content: center; cursor: pointer;
}

/* ============================================================
   Hero — mosaic-floor field dissolving into black
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 45%; z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 62%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 62%, transparent 100%);
}
.hero__inner {
  position: relative; z-index: 1; width: 100%;
  max-width: var(--container); margin-inline: auto; padding: 0 var(--pad-x) clamp(4rem, 9vh, 7rem);
}
.hero__line { max-width: 15ch; }
.hero__line .display { display: block; color: var(--color-text); }
.hero__cta { margin-top: 2rem; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%);
  z-index: 1; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--color-text-secondary); display: inline-flex; flex-direction: column;
  align-items: center; gap: 0.4rem;
}

/* ============================================================
   Reviews mosaic — the floor made of its own five-star reviews
   ============================================================ */
.reviews { position: relative; }
.reviews__grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(74px, auto); gap: 0.6rem; margin-top: 2.5rem;
}
.tessera {
  background: rgba(26, 58, 122, 0.34);
  border: 1px solid var(--color-border);
  padding: 1rem 1.15rem; display: flex; align-items: center;
  font-size: 0.95rem; line-height: 1.4; color: var(--color-text-secondary);
}
.tessera--lit { background: rgba(232,244,255,0.1); color: var(--color-text); border-color: rgba(232,244,255,0.45); }
.tessera--ox { border-top: 2px solid var(--rim); background: var(--oxblood-fill); color: var(--color-text); }
.tessera--figure {
  grid-column: span 4; grid-row: span 2; align-items: flex-end;
  background: rgba(232,244,255,0.08); border-color: rgba(232,244,255,0.4);
}
.tessera--figure .fig { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.75rem, 6vw, 4.5rem); line-height: 0.9; color: var(--color-text); }
.tessera--figure .fig small { display: block; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-text-secondary); margin-top: 0.5rem; }
/* varied spans for irregular tesserae */
.tessera.s2 { grid-column: span 2; } .tessera.s3 { grid-column: span 3; }
.tessera.s4 { grid-column: span 4; } .tessera.s5 { grid-column: span 5; } .tessera.s6 { grid-column: span 6; }
.tessera.r2 { grid-row: span 2; }

/* ============================================================
   The Selection — unequal floor-color doorways
   ============================================================ */
.selection__rail {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.75rem; margin-top: 2.5rem;
  grid-auto-rows: clamp(210px, 26vw, 320px);
}
.doorway {
  position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between;
  padding: 1.3rem; background: var(--color-primary); border: 1px solid var(--color-border);
  color: var(--color-text);
}
.doorway::after { /* faint specular glass edge, not a product */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 55%, rgba(232,244,255,0.14) 72%, transparent 76%);
  transition: transform var(--motion-duration-slow) var(--motion-ease);
}
.doorway:hover::after { transform: translateX(6%); }
.doorway__idx { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.2em; color: var(--color-text-secondary); }
.doorway__name { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.35rem, 2vw, 1.9rem); line-height: 1.05; }
.doorway--wide { grid-column: span 2; }
.doorway--tall { grid-row: span 2; }
.doorway--ox { border-top: 2px solid var(--rim); }
.doorway--ox .doorway__tell { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rim); }

/* ============================================================
   The one live door into Deals (home)
   ============================================================ */
.deals-door { position: relative; overflow: hidden; }
.deals-door__band {
  position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 1fr; align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  border: 1px solid var(--color-border); background: rgba(20,21,28,0.6);
}
.deals-door__text { padding: clamp(2rem, 4vw, 3.5rem); min-width: 0; }
.deals-door__plate {
  position: relative; align-self: stretch; min-height: 240px;
  background: var(--oxblood-fill); border-top: 2px solid var(--rim);
  display: flex; align-items: flex-end; padding: 1.6rem; overflow: hidden;
}
.deals-door__plate .board { font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.06em; color: var(--color-text); line-height: 1.7; }
.deals-door__plate .board b { font-weight: 600; }
.deals-door__magma { position: absolute; inset: 0; z-index: 0; }
.deals-door__magma img { width: 100%; height: 100%; object-fit: cover;
  -webkit-mask-image: linear-gradient(to top, #000, transparent); mask-image: linear-gradient(to top, #000, transparent); opacity: 0.4; }

/* ============================================================
   The Room / environmental still (contained + faded)
   ============================================================ */
.room { position: relative; }
.room__grid { display: grid; grid-template-columns: 1.35fr 1fr; align-items: center; gap: clamp(1.5rem, 4vw, 3.5rem); }
.room__media { position: relative; overflow: hidden; }
.room__media img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--motion-ease);
  -webkit-mask-image: linear-gradient(to right, #000 60%, transparent 100%);
          mask-image: linear-gradient(to right, #000 60%, transparent 100%);
}
.room__media:hover img { transform: scale(1.03); }
.room__text { min-width: 0; }
.room__text .pull { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.6rem, 2.6vw, 2.2rem); line-height: 1.15; margin-bottom: 1.2rem; }
.cap-mono { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-text-secondary); }

/* ============================================================
   Visit / late-night close (home) + Visit page
   ============================================================ */
.visit-close__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: end; }
.factline { font-family: var(--font-mono); font-size: 0.95rem; letter-spacing: 0.03em; line-height: 1.9; }
.factline .k { color: var(--color-text-secondary); display: inline-block; min-width: 4.5em; }
.late-line { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05; }

/* ============================================================
   Footer — no top border; last floor photo dissolves into it
   ============================================================ */
.site-footer { position: relative; padding-top: clamp(4rem, 8vw, 7rem); padding-bottom: 2.5rem; overflow: hidden; }
.footer__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(1.75rem, 4vw, 3rem); }
.footer__logo { height: 44px; width: auto; max-width: 160px; margin-bottom: 1.1rem; }
.footer__col h2 { font-family: var(--font-mono); font-weight: 500; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-legible); margin-bottom: 1rem; }
.footer__col ul { list-style: none; display: grid; gap: 0.55rem; }
.footer__col a { color: var(--color-text-secondary); font-size: 0.95rem; }
.footer__col a:hover { color: var(--color-text); }
.footer__contact { font-family: var(--font-mono); font-size: 0.9rem; line-height: 1.85; color: var(--color-text-secondary); }
.footer__contact a { color: var(--color-text); }
.footer__social { display: flex; gap: 0.85rem; margin-top: 1.1rem; }
.footer__social a {
  width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-border); color: var(--color-text); font-size: 1.2rem;
  transition: border-color var(--motion-duration) var(--motion-ease), background-color var(--motion-duration) var(--motion-ease);
}
.footer__social a:hover { border-top: 1px solid var(--rim); background: var(--oxblood-fill); border-color: transparent; }
.footer__legal { position: relative; z-index: 1; margin-top: 2.75rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border);
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.04em; color: var(--color-text-secondary);
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; justify-content: space-between; }

/* ============================================================
   Page hero (inner pages)
   ============================================================ */
.page-hero { position: relative; padding-top: clamp(9rem, 16vh, 12rem); padding-bottom: clamp(3rem, 6vw, 5rem); overflow: hidden; }
.page-hero__inner { position: relative; z-index: 1; }
.page-hero .display, .page-hero .h1 { max-width: 16ch; }
.page-hero .lead { margin-top: 1.4rem; }

/* ============================================================
   Contact / Rewards forms
   ============================================================ */
.contact-form { display: grid; gap: 1.15rem; max-width: 560px; }
.contact-form .field { display: grid; gap: 0.45rem; min-width: 0; }
.contact-form label { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-text-secondary); }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--color-text);
  background: var(--color-surface); border: 1px solid var(--color-border);
  padding: 0.85rem 0.95rem; border-radius: 0;
  transition: border-color var(--motion-duration) var(--motion-ease);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #5c6784; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: var(--color-secondary); box-shadow: inset 0 0 0 1px var(--color-secondary); }
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form .btn { justify-self: start; margin-top: 0.35rem; }
.form-panel { position: relative; overflow: hidden; border: 1px solid var(--color-border); background: rgba(20,21,28,0.55); padding: clamp(1.75rem, 4vw, 3rem); }
.form-panel__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.75rem,4vw,3rem); align-items: start; }

/* ============================================================
   Deals page — magma / molten
   ============================================================ */
.magma { position: relative; overflow: hidden; }
.magma__bg { position: absolute; inset: 0; z-index: 0; }
.magma__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 70%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 70%, transparent 100%); }
.magma-lines { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.magma-line {
  position: absolute; left: 0; height: 2px; width: 46%;
  background: linear-gradient(90deg, transparent 0%, #8B1A1A 38%, #E8F4FF 50%, #8B1A1A 62%, transparent 100%);
  transform: translateX(-130%);
  animation: travel linear infinite;
}
.magma-line.l1 { top: 18%; width: 40%; animation-duration: 15s; animation-delay: 0s; }
.magma-line.l2 { top: 34%; width: 56%; animation-duration: 21s; animation-delay: -6s; height: 1px; }
.magma-line.l3 { top: 52%; width: 34%; animation-duration: 18s; animation-delay: -11s; }
.magma-line.l4 { top: 68%; width: 62%; animation-duration: 26s; animation-delay: -3s; height: 1px; }
.magma-line.l5 { top: 83%; width: 44%; animation-duration: 19s; animation-delay: -14s; }
@keyframes travel { from { transform: translateX(-130%); } to { transform: translateX(230%); } }
@media (prefers-reduced-motion: reduce) { .magma-line { animation: none; transform: translateX(30%); } }

.deals-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2.75rem; }
.deal {
  position: relative; background: rgba(10,10,15,0.72); border: 1px solid var(--color-border);
  padding: clamp(1.5rem, 3vw, 2.25rem); display: grid; gap: 0.9rem; min-width: 0;
}
.deal__plate { position: absolute; top: 0; left: 0; height: 100%; width: 6px; background: var(--oxblood-fill); border-top: 2px solid var(--rim); }
.deal__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.05; padding-left: 0.6rem; }
.deal__data { font-family: var(--font-mono); font-size: 0.92rem; line-height: 1.9; color: var(--color-text-secondary); padding-left: 0.6rem; }
.deal__data .amt { color: var(--rim); font-weight: 600; }
.deal__data .tag { display: inline-block; margin-top: 0.5rem; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: #c98a8a; }
.deal--student { border-top: 2px solid var(--rim); background: var(--oxblood-fill); }
.deal--student .deal__data { color: rgba(232,244,255,0.85); }
.deal--student .deal__data .amt { color: var(--rim); }

/* ============================================================
   Shop / Selection page — numbered vertical sequence
   ============================================================ */
.cat-region { position: relative; padding-block: clamp(3.5rem, 7vw, 6rem); border-top: 1px solid var(--color-border); overflow: hidden; scroll-margin-top: 8rem; }
.cat-region:first-of-type { border-top: none; }
.cat-region__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.cat-region__idx { font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.2em; color: var(--blue-legible); }
.cat-region__name { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.25rem, 5vw, 3.75rem); line-height: 1; margin: 0.6rem 0 1.1rem; }
.cat-region__field {
  position: relative; overflow: hidden; min-height: clamp(200px, 26vw, 300px);
  background: var(--color-primary); border: 1px solid var(--color-border);
}
.cat-region__field::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(118deg, transparent 52%, rgba(232,244,255,0.16) 70%, transparent 74%); }
.cat-region--ox .cat-region__field { border-top: 2px solid var(--rim); }
.cat-region--ox .cat-region__idx { color: var(--rim); }

/* ============================================================
   About page — drop cap
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(1.75rem, 4vw, 3.5rem); align-items: start; }
.about__media { position: relative; overflow: hidden; }
.about__media img { width: 100%; height: auto; -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent);
  mask-image: linear-gradient(to bottom, #000 70%, transparent); transition: transform 900ms var(--motion-ease); }
.about__media:hover img { transform: scale(1.03); }
.dropcap::first-letter {
  font-family: var(--font-display); font-weight: 700; font-size: 4.6em; line-height: 0.72;
  float: left; margin: 0.06em 0.12em 0 0; color: var(--color-text);
}

/* ============================================================
   Rewards — bare figure
   ============================================================ */
.figure-huge { font-family: var(--font-display); font-weight: 700; font-size: clamp(5rem, 16vw, 12rem); line-height: 0.85; color: var(--color-text); }
.figure-huge small { font-family: var(--font-mono); font-size: 0.9rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-text-secondary); display: block; margin-top: 0.5rem; }

/* ============================================================
   Map (Visit)
   ============================================================ */
.map-embed { position: relative; width: 100%; aspect-ratio: 16 / 9; border: 1px solid var(--color-border); overflow: hidden; background: var(--color-surface); }
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.35) contrast(1.05); }

/* ============================================================
   404
   ============================================================ */
.err { min-height: 72vh; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.err .code { font-family: var(--font-display); font-weight: 700; font-size: clamp(5rem, 18vw, 12rem); line-height: 0.85; }

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

/* Floor settles once, then stillness */
.floor-settle { }
html.js .floor-settle { opacity: 0; transform: scale(1.02); transition: opacity var(--motion-duration-slow) var(--motion-ease), transform var(--motion-duration-slow) var(--motion-ease); }
html.js .floor-settle.is-in { opacity: 1; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal, html.js .floor-settle { opacity: 1 !important; transform: none !important; transition: none !important; }
  .site-header { transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .deals-door__band, .room__grid, .visit-close__grid, .form-panel__grid,
  .cat-region__grid, .about__grid { grid-template-columns: 1fr; }
  .deals-grid { grid-template-columns: 1fr; }
  .selection__rail { grid-template-columns: 1fr; grid-auto-rows: minmax(120px, auto); }
  .doorway--wide, .doorway--tall { grid-column: auto; grid-row: auto; }
  .room__media img { -webkit-mask-image: linear-gradient(to bottom, #000 78%, transparent); mask-image: linear-gradient(to bottom, #000 78%, transparent); }
}

@media (max-width: 768px) {
  .nav__toggle { display: inline-flex; }
  .nav__inner { flex-direction: row; justify-content: space-between; }
  .nav__bar {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px);
    grid-template-columns: 1fr; align-content: start; gap: 0.4rem;
    background: var(--color-bg); border-left: 1px solid var(--color-border);
    padding: 5.5rem 1.75rem 2rem; transform: translateX(100%);
    transition: transform var(--motion-duration-slow) var(--motion-ease); z-index: 1200; overflow-y: auto;
  }
  .nav__bar.is-open { transform: translateX(0); }
  .nav__links { grid-column: 1; flex-direction: column; align-items: flex-start; gap: 0.2rem; order: 2; }
  .nav__links a { font-size: 1.1rem; }
  .nav__tel { grid-column: 1; justify-self: start; order: 1; margin-bottom: 1.25rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: repeat(6, 1fr); }
  .tessera--figure { grid-column: span 6; }
}

@media (max-width: 480px) {
  .hero { min-height: 92svh; }
  .hero__line .display { font-size: clamp(2.75rem, 13vw, 4rem); }
  .reviews__grid { grid-template-columns: repeat(4, 1fr); }
  .tessera.s5, .tessera.s6 { grid-column: span 4; }
  .tessera--figure { grid-column: span 4; }
}

/* Body scroll lock when drawer open */
body.nav-open { overflow: hidden; }

/* ============================================================
   Self-hosted Google Fonts (localized by 20_performance_sweep)
   ============================================================ */
/* math */
@font-face {
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/aFTQ7PxzY382XsXX63LUYJT2SKjWXFBPgas.woff2') format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/aFTQ7PxzY382XsXX63LUYJTkSKjWXFBPgas.woff2') format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* latin-ext */
@font-face {
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/aFTQ7PxzY382XsXX63LUYJSESKjWXFBPgas.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: 'Bodoni Moda';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/aFTQ7PxzY382XsXX63LUYJSKSKjWXFBP.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: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/-F63fjptAgt5VM-kVkqdyU8n1iIq131nj-otFQ.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/-F63fjptAgt5VM-kVkqdyU8n1isq131nj-otFQ.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/-F63fjptAgt5VM-kVkqdyU8n1iAq131nj-otFQ.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: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/-F63fjptAgt5VM-kVkqdyU8n1iEq131nj-otFQ.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: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/-F63fjptAgt5VM-kVkqdyU8n1i8q131nj-o.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: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/-F6qfjptAgt5VM-kVkqdyU8n3twJwl1FgsAXHNlYzg.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/-F6qfjptAgt5VM-kVkqdyU8n3twJwlRFgsAXHNlYzg.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/-F6qfjptAgt5VM-kVkqdyU8n3twJwl9FgsAXHNlYzg.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: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/-F6qfjptAgt5VM-kVkqdyU8n3twJwl5FgsAXHNlYzg.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: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/-F6qfjptAgt5VM-kVkqdyU8n3twJwlBFgsAXHNk.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: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxTKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxaKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxdKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxRKYbSB4ZhRNU.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: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxQKYbSB4ZhRNU.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: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxeKYbSB4Zh.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: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxTKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxaKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxdKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxRKYbSB4ZhRNU.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: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxQKYbSB4ZhRNU.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: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxeKYbSB4Zh.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: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxTKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxaKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxdKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxRKYbSB4ZhRNU.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: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxQKYbSB4ZhRNU.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: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxeKYbSB4Zh.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;
}
