/*
 * styles.css — Hoof & Pantry
 * A working farrier forge + rural store at the last useful stop on a dark Nevada road.
 * Doctrine: one warm light in a field of shadow. Dark by decision. Amber is rationed
 * to the "one light" role only — Visit Us, primary CTAs, and literal lamp/lit-door motifs.
 */

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --color-primary: #B5502E;        /* Forged Rust */
  --color-primary-dark: #843721;   /* Anvil Rust */
  --color-primary-light: #C97A54;  /* Ember Clay */
  --color-secondary: #5E4E5C;      /* Dusk Plum — atmospheric only */
  --color-accent: #E9A54D;         /* Lamplight — the one light */
  --color-bg: #17110C;             /* Field of Shadow */
  --color-surface: #241A13;        /* Warm Timber */
  --color-text: #EFE3CE;           /* Ledger Cream */
  --color-text-secondary: #B7A88F; /* Dust Tan */
  --color-text-on-primary: #FBF4E6;/* Lamp White */
  --color-on-accent: #1A1109;      /* near-black on amber CTA (9:1) */
  --color-border: #3A2C22;         /* Low Timber Line */

  --font-primary: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-secondary: 'Overpass', system-ui, sans-serif;
  --font-size-base: 16px;
  --spacing-base: 8px;

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

  --shell-max: 1280px;
  --measure: 66ch;

  --num: "onum" 1, "liga" 0; /* oldstyle numerals, ligatures off for figures */
}

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

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

body {
  font-family: var(--font-secondary, sans-serif);
  background-color: var(--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 { max-width: 100%; height: auto; display: block; }

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

h1, h2, h3, h4 { font-family: var(--font-primary); font-weight: 600; color: var(--color-text); }

::selection { background: var(--color-primary); color: var(--color-text-on-primary); }

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

/* Skip navigation link — WCAG 2.4.1 */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--color-surface);
  color: var(--color-accent);
  font-family: var(--font-secondary);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--color-accent);
  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(3.25rem, 7vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}
.h1 { font-family: var(--font-primary); font-weight: 700; font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.08; letter-spacing: -0.015em; }
.h2 { font-family: var(--font-primary); font-weight: 600; font-size: clamp(1.9rem, 3.2vw, 2.9rem); line-height: 1.14; letter-spacing: -0.01em; }
.h3 { font-family: var(--font-primary); font-weight: 600; font-size: clamp(1.4rem, 2.2vw, 1.9rem); line-height: 1.2; letter-spacing: -0.005em; }
.h4 { font-family: var(--font-primary); font-weight: 500; font-size: 1.2rem; line-height: 1.3; }

.lead {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.6;
  color: var(--color-text);
}
.body-copy {
  font-family: var(--font-secondary);
  font-size: 1.0625rem;
  line-height: 1.75;
  letter-spacing: 0.003em;
  color: var(--color-text-secondary);
  max-width: var(--measure);
}
.body-copy + .body-copy { margin-top: 1.35rem; }
.body-copy strong { color: var(--color-text); font-weight: 600; }

/* Eyebrow — the site's connective tissue: rust hairline + tracked caption */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--color-primary);
  flex: none;
}
.eyebrow--tan { color: var(--color-text-secondary); }
.eyebrow--center { display: flex; justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--color-primary);
  flex: none;
}

/* Inline amber — the one-light rule applied to a single word/phrase in copy */
.lamp-text { color: var(--color-accent); }

.num { font-feature-settings: var(--num); font-variant-numeric: oldstyle-nums; }

/* Hanging first line — opening paragraph "trails in" */
.trail-in::first-line {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.6;
  color: var(--color-text);
}

/* Pull-quote — the handwritten-ledger voice */
.pullquote {
  font-family: var(--font-primary);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.34;
  color: var(--color-text);
  border-left: 3px solid var(--color-primary);
  padding-left: clamp(1.1rem, 2vw, 1.6rem);
  max-width: 24ch;
}
.pullquote cite {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-secondary);
  font-style: normal;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

/* ============================================================
   Shell / layout helpers
   ============================================================ */
.shell {
  width: 100%;
  max-width: var(--shell-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3.5rem);
}
.section { position: relative; }
.section--pad { padding-block: clamp(4.5rem, 10vw, 9rem); }

/* Barely-there cracked-earth texture so the dark never goes flat */
.tex {
  position: relative;
  background-color: var(--color-bg);
}
.tex::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/cracked-earth.png") center / cover no-repeat;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}
.tex > * { position: relative; z-index: 1; }

/* ============================================================
   Buttons / links
   ============================================================ */
/* The amber primary CTA — the lit door. Used sparingly. */
.btn-lamp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 1rem 1.6rem;
  background: var(--color-accent);
  color: var(--color-on-accent);
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--motion-duration) var(--motion-ease),
              transform var(--motion-duration) var(--motion-ease);
}
.btn-lamp:hover { background: var(--color-primary-light); }
.btn-lamp:active { background: var(--color-primary); transform: translateY(1px); }

/* Amber text link — the "one lit link" restraint move (Road Band, CTAs) */
.link-lamp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent);
  position: relative;
}
.link-lamp::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: width var(--motion-duration) var(--motion-ease);
}
.link-lamp:hover::after { width: 100%; }
.link-lamp i { transition: transform var(--motion-duration) var(--motion-ease); }
.link-lamp:hover i { transform: translateX(4px); }

/* Rust text link — everything else that isn't the one light */
.link-rust {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  position: relative;
}
.link-rust::after {
  content: "";
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px; background: var(--color-primary);
  transition: width var(--motion-duration) var(--motion-ease);
}
.link-rust:hover { color: var(--color-accent); }
.link-rust:hover::after { width: 100%; background: var(--color-accent); }
.link-rust i { transition: transform var(--motion-duration) var(--motion-ease); }
.link-rust:hover i { transform: translateX(4px); }

/* ============================================================
   Navigation — nav-centered-split (crest as axis)
   ============================================================ */
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0 clamp(1.25rem, 5vw, 3.5rem);
  height: 84px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--motion-duration) var(--motion-ease),
              backdrop-filter var(--motion-duration) var(--motion-ease),
              box-shadow var(--motion-duration) var(--motion-ease);
}
.nav.is-scrolled {
  background: color-mix(in srgb, var(--color-bg) 82%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border);
}
.nav__links {
  display: flex;
  gap: clamp(1.25rem, 2.4vw, 2rem);
  list-style: none;
  align-items: center;
}
.nav__links-right { justify-content: flex-end; }
.nav__logo { justify-self: center; display: block; line-height: 0; }
.nav__logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.55));
}
.nav__link {
  font-family: var(--font-secondary);
  font-size: 0.875rem;           /* 14px — above the 13px uppercase floor */
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
  transition: color var(--motion-duration) var(--motion-ease);
}
.nav__link:hover { color: var(--color-accent); }
.nav__link[aria-current="page"] { color: var(--color-text); }
.nav__link[aria-current="page"]::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 4px;
  background: var(--color-primary);
}
.nav__link--visit { color: var(--color-accent); font-weight: 600; } /* the one lit link */
.nav__link--visit[aria-current="page"]::after { background: var(--color-accent); }

.nav__toggle {
  display: none;
  grid-column: 1;
  justify-self: start;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: transparent;
  border: 0;
  color: var(--color-text);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: color-mix(in srgb, var(--color-bg) 96%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--motion-duration) var(--motion-ease),
              visibility var(--motion-duration) var(--motion-ease);
}
.nav-drawer.is-open { opacity: 1; visibility: visible; }
.nav-drawer ul { list-style: none; text-align: center; display: grid; gap: 1.75rem; }
.nav-drawer a {
  font-family: var(--font-secondary);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-text);
}
.nav-drawer a.nav__link--visit { color: var(--color-accent); font-weight: 600; }
.nav-drawer__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 48px; height: 48px;
  background: transparent; border: 0; color: var(--color-text);
  font-size: 1.8rem; cursor: pointer;
}

/* ============================================================
   Hero — full-bleed photo, lower-left title, bottom scrim
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero--inner { min-height: 82vh; }
.hero--tall { min-height: 86vh; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 60% center;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    var(--color-bg) 0%,
    color-mix(in srgb, var(--color-bg) 78%, transparent) 26%,
    color-mix(in srgb, var(--color-bg) 30%, transparent) 55%,
    transparent 80%
  );
}
.hero__inner {
  width: 100%;
  padding-bottom: clamp(4rem, 9vh, 8rem);
  padding-top: 120px;
}
.hero__title-block { max-width: 62%; }
.hero .eyebrow { margin-bottom: 1.4rem; }
.hero__lead { margin-top: 1.5rem; max-width: 46ch; color: var(--color-text); }

/* Home hero specifics — display line lower-left third */
.hero-home .hero__title-block { max-width: 54%; }
.hero-home__caption {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  display: block;
}
.hero-home .display { color: var(--color-text); max-width: 16ch; }

/* Scroll tick — gentle amber pulse */
.scroll-tick {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  font-size: 1.35rem;
}
.scroll-tick span {
  font-family: var(--font-secondary);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}
.scroll-tick i { animation: tick-pulse 2.4s var(--motion-ease) infinite; }
@keyframes tick-pulse {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ============================================================
   Home — What We Are (three plain facts carved on rules)
   ============================================================ */
.facts {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.facts__head { min-width: 0; }
.facts__head .h2 { max-width: 12ch; }
.facts__list {
  min-width: 0;
  display: grid;
  gap: clamp(2rem, 4vw, 3.25rem);
  /* 40% of the column area stays intentional dark to the right */
  padding-right: 30%;
}
.fact { border-top: 2px solid var(--color-primary); padding-top: 1rem; }
.fact__label {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 0.6rem;
}
.fact__value {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  line-height: 1.24;
  color: var(--color-text);
}
.fact__value--lamp { color: var(--color-accent); }

/* ============================================================
   Edge-bleed split beat (approach / guest book / counter / hoof)
   ============================================================ */
.beat {
  display: grid;
  grid-template-columns: 42fr 58fr; /* type left, image bleeds right */
  min-height: 82vh;
  align-items: stretch;
}
.beat--img-left { grid-template-columns: 58fr 42fr; }
.beat__media { position: relative; overflow: hidden; min-height: 52vh; }
.beat__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.beat--img-left .beat__media { order: -1; }
.beat__type {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(3rem, 7vw, 7rem) clamp(1.5rem, 5vw, 4.5rem);
  background: var(--color-bg);
}
.beat__type--low { justify-content: flex-end; padding-bottom: clamp(4rem, 12vh, 9rem); }
.beat__caption {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-top: 1.75rem;
}
.beat__note { margin-top: 1.6rem; max-width: 40ch; }

/* Home approach — quote sits in the dark half of the windshield frame */
.beat--approach .beat__media img { object-position: 70% center; }

/* Ember drift — the one animated image (Farrier "The Fire") */
.beat--embers .beat__media img { animation: ember-drift 16s var(--motion-ease) infinite alternate; }
@keyframes ember-drift {
  from { transform: scale(1.0); }
  to { transform: scale(1.03); }
}
@media (prefers-reduced-motion: reduce) {
  .beat--embers .beat__media img { animation: none; }
}

/* ============================================================
   Two Sides, One Roof — unequal photo doorways
   ============================================================ */
.doorways {
  display: grid;
  grid-template-columns: 58fr 42fr; /* forge wider/darker, store narrower */
  gap: 0;
}
.doorway {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  min-height: 70vh;
  isolation: isolate;
}
.doorway--store { min-height: 60vh; align-self: end; }
.doorway__media { position: absolute; inset: 0; z-index: -2; }
.doorway__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms var(--motion-ease);
}
.doorway:hover .doorway__media img { transform: scale(1.03); }
.doorway::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, var(--color-bg) 4%, color-mix(in srgb, var(--color-bg) 40%, transparent) 42%, transparent 72%);
}
.doorway__body { padding: clamp(2rem, 4vw, 3.25rem); }
.doorway__body .h3 { margin-bottom: 0.6rem; }
.doorway__body p { color: var(--color-text-secondary); max-width: 34ch; margin-bottom: 1.4rem; font-size: 1rem; }

/* ============================================================
   Full-bleed atmospheric bands (road / region / directions)
   ============================================================ */
.band {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 70vh;
  overflow: hidden;
  isolation: isolate;
}
.band--tall { min-height: 74vh; }
.band__media { position: absolute; inset: 0; z-index: -2; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band__scrim-center {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--color-bg) 72%, transparent), color-mix(in srgb, var(--color-bg) 30%, transparent) 45%, var(--color-bg));
}
.band__scrim-left {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to right, var(--color-bg) 6%, color-mix(in srgb, var(--color-bg) 72%, transparent) 40%, color-mix(in srgb, var(--color-bg) 20%, transparent) 72%, transparent);
}
/* Region band — the one place plum is felt */
.band__scrim-plum {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to right, color-mix(in srgb, var(--color-secondary) 60%, var(--color-bg)) 0%, color-mix(in srgb, var(--color-bg) 55%, transparent) 46%, transparent 80%),
    linear-gradient(to top, var(--color-bg) 8%, transparent 60%);
}
.band__inner { width: 100%; }
.band--center { text-align: center; }
.band--center .band__inner { display: flex; flex-direction: column; align-items: center; gap: 1.75rem; }
.band__line { max-width: 20ch; }
.band--center .band__line { max-width: 24ch; margin-inline: auto; }
.band__line--lamp { color: var(--color-accent); }

/* ============================================================
   Broadsheet 66/34 (About story, Farrier what-we-do, Store shelves)
   ============================================================ */
.broadsheet { border-top: 1px solid var(--color-border); }
.broadsheet__grid {
  display: grid;
  grid-template-columns: 66fr 34fr;
  gap: 0;
}
.broadsheet__primary {
  min-width: 0;
  padding-right: clamp(1.5rem, 5vw, 4rem);
  border-right: 1px solid var(--color-border);
}
.broadsheet__secondary {
  min-width: 0;
  padding-left: clamp(1.5rem, 4vw, 3rem);
}
.broadsheet__label {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}
.broadsheet__primary .h2 { margin-bottom: 1.75rem; max-width: 20ch; }
.broadsheet__primary .pullquote { margin-top: 2.5rem; }

/* Ledger sidebar — "what stayed" running entries */
.ledger { list-style: none; display: grid; }
.ledger li {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-secondary);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text-secondary);
}
.ledger li:first-child { border-top: 1px solid var(--color-border); }
.ledger b {
  display: block;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: 0.15rem;
}

/* Two-audience runs (Farrier sidebar) */
.runs { display: grid; gap: 2rem; }
.run__label {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: 0.55rem;
}
.run p { color: var(--color-text-secondary); font-size: 1rem; line-height: 1.6; }
.sidebar-note { color: var(--color-text-secondary); font-size: 1rem; line-height: 1.6; }
.sidebar-note--lamp { color: var(--color-accent); }

/* Shelf groups (Store On The Shelves) */
.shelves { display: grid; gap: 0; }
.shelf-group {
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  border-top: 1px solid var(--color-border);
}
.shelf-group:first-child { border-top: 0; padding-top: 0; }
.shelf-group .h4 { color: var(--color-text); margin-bottom: 0.75rem; font-size: 1.4rem; }
.shelf-group p { color: var(--color-text-secondary); font-size: 1.0625rem; line-height: 1.7; max-width: 60ch; }
.shelf-group .lamp-item { color: var(--color-accent); }

/* ============================================================
   CTA panel (Farrier "Come by the forge")
   ============================================================ */
.cta-panel {
  background: var(--color-surface);
  border-top: 2px solid var(--color-primary);
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
}
.cta-panel .h3 { max-width: 22ch; margin: 0 auto 1.75rem; }
.cta-panel p { color: var(--color-text-secondary); max-width: 44ch; margin: 0 auto 2rem; }

/* ============================================================
   Visit Us — The Essentials panel
   ============================================================ */
.essentials {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 0;
}
.essentials__list {
  min-width: 0;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}
.essential__label {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 0.75rem;
}
.essential__value {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.14;
  color: var(--color-text);
}
.essential__value a { color: var(--color-text); }
.essential__value a:hover { color: var(--color-accent); }
/* Visit Us: the phone glows with the hours — this is the lit door */
.essential--call .essential__value a { color: var(--color-accent); }
/* "Open All Hours" — the largest type on the entire site */
.essential--hours .essential__value {
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--color-accent);
}
.essentials__cta {
  min-width: 0;
  background: color-mix(in srgb, var(--color-bg) 55%, var(--color-surface));
  border-left: 1px solid var(--color-border);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
.essentials__cta p { color: var(--color-text-secondary); font-size: 1rem; }
.essentials__cta .num-phone {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--color-text);
}

/* Directions — copy is the map */
.directions { display: grid; gap: 1.4rem; max-width: 52ch; }
.directions .h3 { margin-bottom: 0.5rem; }
.directions p { color: var(--color-text); font-size: 1.0625rem; line-height: 1.75; }
.directions .directions__punch {
  font-family: var(--font-primary);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.35;
  color: var(--color-accent);
  margin-top: 0.5rem;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--color-primary);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.site-footer__crest img { height: 66px; width: auto; opacity: 0.92; }
.site-footer__center { text-align: center; }
.site-footer__place {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}
.site-footer__hours {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.site-footer__nav { display: flex; flex-wrap: wrap; gap: 0.4rem 1.25rem; justify-content: flex-end; }
.site-footer__nav a {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}
.site-footer__nav a:hover { color: var(--color-accent); }
.site-footer__nav a.nav__link--visit { color: var(--color-accent); }
.site-footer__legal {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
}

/* ============================================================
   404
   ============================================================ */
.notfound {
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
}
.notfound .display { margin-bottom: 1.25rem; }
.notfound p { color: var(--color-text-secondary); max-width: 40ch; margin-bottom: 2rem; }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--motion-duration-slow) var(--motion-ease),
              transform var(--motion-duration-slow) var(--motion-ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: 100ms; }
.reveal--d2 { transition-delay: 200ms; }
.reveal--d3 { transition-delay: 300ms; }
.reveal--d4 { transition-delay: 400ms; }

/* ============================================================
   Contact form (kept minimal — not primary on this site, but styled)
   ============================================================ */
.contact-form { display: grid; gap: 1.25rem; max-width: 40rem; }
.contact-form label {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  display: block;
  margin-bottom: 0.5rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-secondary);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 0.85rem 1rem;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--color-accent); outline: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr auto 1fr; }
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__logo { grid-column: 2; }

  .broadsheet__grid { grid-template-columns: 1fr; }
  .broadsheet__primary {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
  }
  .broadsheet__secondary { padding-left: 0; }

  .facts { grid-template-columns: 1fr; gap: 2.5rem; }
  .facts__list { padding-right: 0; }

  .essentials { grid-template-columns: 1fr; }
  .essentials__cta { border-left: 0; border-top: 1px solid var(--color-border); }
}

@media (max-width: 768px) {
  /* Edge-bleed splits stack image-over-type, keep the full-width bleed */
  .beat, .beat--img-left {
    grid-template-columns: 1fr;
    grid-template-rows: 54vh auto;
  }
  .beat__media { grid-row: 1; order: 0; min-height: 54vh; }
  .beat--img-left .beat__media { order: 0; }
  .beat__type { grid-row: 2; }

  /* Doorways stack but stay photographic openings, keep unequal heights */
  .doorways { grid-template-columns: 1fr; }
  .doorway { min-height: 62vh; }
  .doorway--store { min-height: 52vh; align-self: auto; }

  .site-footer__grid { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 1.75rem; }
  .site-footer__nav { justify-content: center; }

  .hero__title-block,
  .hero-home .hero__title-block { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero__inner { padding-bottom: 3rem; }
  .band { min-height: 62vh; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-tick i { animation: none; }
  .doorway__media img, .link-lamp i, .link-rust i, .link-lamp::after, .link-rust::after { transition: none; }
  * { scroll-behavior: auto !important; }
}

/* ============================================================
   Self-hosted Google Fonts (localized by 20_performance_sweep)
   ============================================================ */
/* vietnamese */
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/6NUs8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9hFwpX9W37lm1_mvIiQublWIIkfg.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: 'Fraunces';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/6NUs8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9hFwpX9W37lm1_mvMiQublWIIkfg.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: 'Fraunces';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/6NUs8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9hFwpX9W37lm1_mv0iQublWII.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: 'Fraunces';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/6NU78FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0KxCBTeP2Xz5fU8w.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: 'Fraunces';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/6NU78FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0KxCFTeP2Xz5fU8w.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: 'Fraunces';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/6NU78FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0KxC9TeP2Xz5c.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: 'Fraunces';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/6NU78FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0KxCBTeP2Xz5fU8w.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: 'Fraunces';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/6NU78FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0KxCFTeP2Xz5fU8w.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: 'Fraunces';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/6NU78FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0KxC9TeP2Xz5c.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: 'Fraunces';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/6NU78FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0KxCBTeP2Xz5fU8w.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: 'Fraunces';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/6NU78FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0KxCFTeP2Xz5fU8w.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: 'Fraunces';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/6NU78FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0KxC9TeP2Xz5c.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: 'Fraunces';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/6NU78FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0KxCBTeP2Xz5fU8w.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: 'Fraunces';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/6NU78FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0KxCFTeP2Xz5fU8w.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: 'Fraunces';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/6NU78FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0KxC9TeP2Xz5c.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: 'Fraunces';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/6NU78FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0KxCBTeP2Xz5fU8w.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: 'Fraunces';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/6NU78FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0KxCFTeP2Xz5fU8w.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: 'Fraunces';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/6NU78FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0KxC9TeP2Xz5c.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: 'Overpass';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/qFdH35WCmI96Ajtm81GoU9vgwBcIs1s.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: 'Overpass';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/qFdH35WCmI96Ajtm81GhU9vgwBcIs1s.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Overpass';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/qFdH35WCmI96Ajtm81GqU9vgwBcIs1s.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: 'Overpass';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/qFdH35WCmI96Ajtm81GrU9vgwBcIs1s.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: 'Overpass';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/qFdH35WCmI96Ajtm81GlU9vgwBcI.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: 'Overpass';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/qFdH35WCmI96Ajtm81GoU9vgwBcIs1s.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: 'Overpass';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/qFdH35WCmI96Ajtm81GhU9vgwBcIs1s.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Overpass';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/qFdH35WCmI96Ajtm81GqU9vgwBcIs1s.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: 'Overpass';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/qFdH35WCmI96Ajtm81GrU9vgwBcIs1s.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: 'Overpass';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/qFdH35WCmI96Ajtm81GlU9vgwBcI.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: 'Overpass';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/qFdH35WCmI96Ajtm81GoU9vgwBcIs1s.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: 'Overpass';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/qFdH35WCmI96Ajtm81GhU9vgwBcIs1s.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Overpass';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/qFdH35WCmI96Ajtm81GqU9vgwBcIs1s.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: 'Overpass';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/qFdH35WCmI96Ajtm81GrU9vgwBcIs1s.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: 'Overpass';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/qFdH35WCmI96Ajtm81GlU9vgwBcI.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: 'Overpass';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/qFdH35WCmI96Ajtm81GoU9vgwBcIs1s.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: 'Overpass';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/qFdH35WCmI96Ajtm81GhU9vgwBcIs1s.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Overpass';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/qFdH35WCmI96Ajtm81GqU9vgwBcIs1s.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: 'Overpass';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/qFdH35WCmI96Ajtm81GrU9vgwBcIs1s.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: 'Overpass';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/qFdH35WCmI96Ajtm81GlU9vgwBcI.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;
}
