/*
 * styles.css — Hoof & Pantry
 * "The last light on a long desert road."
 * One warm light per view. Warm near-black desert night, parchment type,
 * a single lamplight-amber source. Aged, permanent, unhurried.
 */

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --color-primary: #C4451A;        /* Forge Rust — display accents, rules, active nav */
  --color-primary-dark: #99330F;   /* Cooled Iron */
  --color-primary-light: #D96A3E;  /* Ember */
  --color-secondary: #6B5260;      /* Desert Dusk — cool counterweight */
  --color-accent: #E3A24A;         /* Lamplight Amber — the single light */
  --color-bg: #2E2820;             /* Desert Night */
  --color-surface: #3A322A;        /* Lifted Wood */
  --color-text: #F2EAD8;           /* Parchment */
  --color-text-secondary: #C9BCA6; /* Weathered Parchment */
  --color-border: #4A4034;         /* Barnwood */

  --font-primary: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-secondary: 'Spectral', Georgia, 'Times New Roman', serif;
  --font-size-base: 16px;

  --spacing-base: 8px;

  --motion-duration: 320ms;
  --motion-duration-slow: 640ms;
  --motion-ease: cubic-bezier(0.2, 0.6, 0.2, 1);

  --shell: 1200px;
  --measure: 66ch;
  --nav-h: 68px;
}

/* ============================================================
   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, serif);
  background-color: var(--color-bg, #2E2820);
  color: var(--color-text, #F2EAD8);
  line-height: 1.7;
  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, inherit); }

ul { list-style: none; }

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

/* Skip navigation link — WCAG 2.4.1 (managed by fix_ada_safe.py) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--color-surface, #3A322A);
  color: var(--color-accent, #E3A24A);
  font-family: var(--font-secondary, serif);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--color-accent, #E3A24A);
  border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Typography scale
   ============================================================ */
.display {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
}
h1, .h1 {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.005em;
  font-optical-sizing: auto;
}
h2, .h2 {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  line-height: 1.14;
  font-optical-sizing: auto;
}
h3, .h3 {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  line-height: 1.2;
}
.h4, h4 {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lead {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.5;
  color: var(--color-text);
}
p { font-size: 1.0625rem; line-height: 1.7; }
.body-prose p { margin-bottom: 1.35em; max-width: var(--measure); }
.small { font-size: 0.9375rem; line-height: 1.6; }

.eyebrow {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  display: inline-block;
}
/* Rust is a graphical accent (fails as body-size text on the dark field),
   so the eyebrow text stays legible weathered-parchment and the rust
   appears as a small tick before it. */
.eyebrow--rust { color: var(--color-text-secondary); }
.eyebrow--rust::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 2px;
  margin-right: 0.65rem;
  background: var(--color-primary);
}

/* Fraunces italic pull-quotes read like inscriptions */
.pullquote {
  font-family: var(--font-primary);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.24;
  letter-spacing: -0.005em;
  color: var(--color-text);
}

/* ============================================================
   Layout primitives
   ============================================================ */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}
.section {
  padding-block: clamp(4.5rem, 11vw, 9.5rem);
}
.section--tight { padding-block: clamp(3rem, 7vw, 6rem); }
.measure { max-width: var(--measure); }

.hairline {
  border: 0;
  height: 1px;
  background: var(--color-border);
}
.rule-rust {
  border: 0;
  height: 2px;
  width: 96px;
  background: var(--color-primary);
}

/* One-warm-light amber word helper (photographic elsewhere) */
.lit { color: var(--color-accent); }

/* ============================================================
   Header / Navigation
   ============================================================ */
.site-header { position: relative; z-index: 100; }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
  background: transparent;
  transition: background var(--motion-duration) var(--motion-ease),
              border-color var(--motion-duration) var(--motion-ease);
  border-bottom: 1px solid transparent;
}
.nav.is-frosted {
  background: color-mix(in srgb, var(--color-bg) 88%, transparent);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.nav__logo img {
  height: 44px;
  width: auto;
  border-radius: 50%;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.75rem);
}
.nav__link {
  position: relative;
  font-family: var(--font-secondary);
  font-size: 0.9375rem;             /* 15px — nav floor, never lower */
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
  padding-block: 0.35rem;
  transition: color var(--motion-duration) var(--motion-ease), opacity var(--motion-duration) var(--motion-ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-duration) var(--motion-ease);
}
.nav__link:hover::after,
.nav__link:focus-visible::after { transform: scaleX(1); }

/* Active page: a quiet Forge Rust rule (graphical use only) */
.nav__link.is-active { color: var(--color-text); }
.nav__link.is-active::after {
  background: var(--color-primary);
  transform: scaleX(1);
}

/* Visit Us — the one warm light in the nav: amber underline lit at rest */
.nav__link--visit::after {
  background: var(--color-accent);
  transform: scaleX(1);
}
.nav__link--visit:hover,
.nav__link--visit:focus-visible { color: var(--color-accent); }
.nav__link--visit.is-active::after { background: var(--color-accent); }

/* Home: links start faintly over the hero, gain full presence on frost */
body.page-home .nav:not(.is-frosted) .nav__link { opacity: 0.86; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-text);
  transition: transform var(--motion-duration) var(--motion-ease),
              opacity var(--motion-duration) var(--motion-ease);
}
.nav.is-open .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  margin-top: 0;
}
.footer__inner {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}
.footer__divider {
  width: 48px;
  height: 48px;
  margin: 0 auto 2.5rem;
  opacity: 0.85;
}
.footer__cols {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer__brand { display: flex; flex-direction: column; gap: 1rem; max-width: 340px; }
.footer__brand > img { width: 64px; height: auto; border-radius: 50%; }
.footer__addr {
  font-family: var(--font-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  letter-spacing: 0.02em;
}
.footer__phone {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  font-weight: 500;
  color: var(--color-accent);   /* the last light on the way out */
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: text-shadow var(--motion-duration) var(--motion-ease);
}
.footer__phone:hover,
.footer__phone:focus-visible { text-shadow: 0 0 22px color-mix(in srgb, var(--color-accent) 55%, transparent); }

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.footer__nav a {
  font-family: var(--font-secondary);
  font-size: 0.9375rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--motion-duration) var(--motion-ease);
}
.footer__nav a:hover,
.footer__nav a:focus-visible { color: var(--color-accent); }
.footer__legal {
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  font-family: var(--font-secondary);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

/* ============================================================
   Full-bleed photographic heroes
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
}
.hero--inner { min-height: 90vh; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom,
    transparent 40%,
    color-mix(in srgb, var(--color-bg) 55%, transparent) 76%,
    color-mix(in srgb, var(--color-bg) 88%, transparent) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
  padding-bottom: clamp(3rem, 8vh, 7rem);
}
.hero__headline {
  max-width: 20ch;
  color: var(--color-text);
  text-shadow: 0 2px 30px rgba(20, 16, 12, 0.55);
}
.hero__sub {
  margin-top: 1.25rem;
  max-width: 42ch;
  color: var(--color-text);
  text-shadow: 0 1px 18px rgba(20, 16, 12, 0.6);
}
.hero__scrollcue {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-text-secondary);
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero__scrollcue i { font-size: 1.15rem; animation: cue-drift 2.6s var(--motion-ease) infinite; }
@keyframes cue-drift {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ============================================================
   Home — Threshold band (type in negative space)
   ============================================================ */
.threshold { background: var(--color-bg); }
.threshold__inner {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
  padding-block: clamp(6rem, 16vw, 12rem);
}
.threshold__col {
  margin-left: clamp(0px, 30%, 33%);
  max-width: 30ch;
}
.threshold__eyebrow { margin-bottom: 2.75rem; }
.threshold__line {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.28;
  color: var(--color-text);
  margin-bottom: 1.6rem;
}
.threshold__line:last-child { margin-bottom: 0; }

/* ============================================================
   Home — Two Doorways
   ============================================================ */
.doorways {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.doorway {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-text);
  border-right: 1px solid var(--color-border);
}
.doorway:last-child { border-right: 0; }
.doorway__media { position: absolute; inset: 0; z-index: 0; }
.doorway__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--motion-duration-slow) var(--motion-ease);
}
.doorway__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top,
    color-mix(in srgb, var(--color-bg) 92%, transparent) 0%,
    color-mix(in srgb, var(--color-bg) 45%, transparent) 45%,
    transparent 80%);
  transition: opacity var(--motion-duration) var(--motion-ease);
}
.doorway__body {
  position: relative; z-index: 2;
  padding: clamp(2rem, 5vw, 3.5rem);
  transition: transform var(--motion-duration) var(--motion-ease);
}
.doorway__eyebrow { margin-bottom: 0.9rem; }
.doorway__title { margin-bottom: 0.75rem; }
.doorway__lead { max-width: 34ch; color: var(--color-text); margin-bottom: 1.4rem; }
.doorway__step {
  font-family: var(--font-secondary);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  /* Each panel's own photographic light is its warm point — the label
     stays quiet until you reach for it, so amber never doubles in one view. */
  color: var(--color-text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--motion-duration) var(--motion-ease), gap var(--motion-duration) var(--motion-ease);
}
.doorway:hover .doorway__media img { transform: scale(1.04); }
.doorway:hover .doorway__scrim { opacity: 1; }
.doorway:hover .doorway__body { transform: translateY(-4px); }
.doorway:hover .doorway__step,
.doorway:focus-visible .doorway__step { color: var(--color-accent); gap: 0.75rem; }
.doorway:focus-visible { outline: 3px solid var(--color-accent); outline-offset: -6px; }

/* ============================================================
   Full-bleed photographic bands (permanence / forge / fire)
   ============================================================ */
.band {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.band--tall { min-height: 90vh; }
.band__media { position: absolute; inset: 0; z-index: 0; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse at center,
    color-mix(in srgb, var(--color-bg) 78%, transparent) 0%,
    color-mix(in srgb, var(--color-bg) 40%, transparent) 55%,
    transparent 85%);
}
.band__content {
  position: relative; z-index: 2;
  max-width: 24ch;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}
.band--foot { justify-content: flex-start; align-items: flex-end; text-align: left; }
.band--foot .band__content {
  max-width: var(--shell);
  width: 100%;
  margin-inline: auto;
  padding-bottom: clamp(2.5rem, 7vh, 5.5rem);
}
.band--foot .band__scrim {
  background: linear-gradient(to top,
    color-mix(in srgb, var(--color-bg) 90%, transparent) 0%,
    color-mix(in srgb, var(--color-bg) 40%, transparent) 45%,
    transparent 78%);
}
.band__line {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.24;
  max-width: 24ch;
  color: var(--color-text);
  text-shadow: 0 2px 24px rgba(18, 14, 10, 0.6);
}
.band__note {
  margin-top: 1.5rem;
  font-family: var(--font-secondary);
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  letter-spacing: 0.02em;
}

/* ============================================================
   Reading passages
   ============================================================ */
.reading { background: var(--color-bg); }
.reading__eyebrow { margin-bottom: 1.5rem; }
.reading__title { margin-bottom: 2rem; max-width: 20ch; }
.reading__body { color: var(--color-text-secondary); }
.reading__body p { margin-bottom: 1.35em; max-width: var(--measure); }
.reading__body p strong,
.reading__body p b { color: var(--color-text); font-weight: 600; }

.audience-split {
  border-top: 2px solid var(--color-primary);
  margin-top: 2.75rem;
  padding-top: 2.5rem;
}
.audience-label {
  margin-bottom: 1rem;
  color: var(--color-text-secondary);
}

/* ============================================================
   Founder / forge circular band (About)
   ============================================================ */
.founding {
  background: var(--color-surface);
}
.founding__inner {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.founding__portrait {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-border);
  box-shadow: 0 24px 60px rgba(14, 10, 8, 0.5);
}
.founding__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.founding__col { min-width: 0; }
.founding__col .h2 { margin-bottom: 1.5rem; }
.founding__col p { color: var(--color-text-secondary); margin-bottom: 1.3em; max-width: 60ch; }
.founding__pull {
  margin: 2rem 0 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--color-primary);
}

/* ============================================================
   Pull-quote in negative space (with faint starfield)
   ============================================================ */
.quote-void {
  position: relative;
  background: var(--color-bg);
  text-align: center;
  overflow: hidden;
}
.quote-void__bg {
  position: absolute; inset: 0; z-index: 0;
  object-fit: cover; width: 100%; height: 100%;
  opacity: 0.28;
}
.quote-void__inner {
  position: relative; z-index: 1;
  max-width: 24ch;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
  padding-block: clamp(6rem, 15vw, 11rem);
}
.quote-void cite {
  display: block;
  margin-top: 2rem;
  font-family: var(--font-secondary);
  font-style: normal;
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

/* ============================================================
   The Store — alternating shelf groups
   ============================================================ */
.shelves { background: var(--color-bg); }
.shelf {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: baseline;
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
}
.shelf + .shelf { border-top: 1px solid var(--color-border); }
.shelf__label {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}
.shelf__tick {
  width: 20px; height: 2px;
  background: var(--color-primary);
  flex: none;
  transform: translateY(-0.4em);
}
.shelf__label h3 { color: var(--color-text); }
.shelf__copy { color: var(--color-text-secondary); max-width: 52ch; }
.shelf:nth-child(even) .shelf__label { order: 2; }
.shelf:nth-child(even) .shelf__copy { order: 1; text-align: right; margin-left: auto; }

/* ============================================================
   Contained feature (counter / guest book)
   ============================================================ */
.feature {
  background: var(--color-bg);
}
.feature__inner {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.feature__media {
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 30px 70px rgba(14, 10, 8, 0.45);
}
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__panel {
  min-width: 0;
  background: var(--color-surface);
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--color-border);
}
.feature__panel .eyebrow { margin-bottom: 1rem; }
.feature__panel .h2 { margin-bottom: 1.25rem; }
.feature__panel p { color: var(--color-text-secondary); margin-bottom: 1.2em; }
.feature__pull {
  margin-top: 1.75rem;
  font-family: var(--font-primary);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--color-text);
  line-height: 1.3;
}

/* ============================================================
   Visit Us — contact block (the close)
   ============================================================ */
.visit {
  position: relative;
  background: var(--color-bg);
  overflow: hidden;
}
.visit__ember {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.22;
  pointer-events: none;
}
.visit__inner {
  position: relative; z-index: 1;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: clamp(2rem, 5vw, 4rem);
}
.visit__col { min-width: 0; }
.visit__title { margin-bottom: 1.75rem; }
.visit__row { margin-bottom: 1.75rem; }
.visit__row .eyebrow { display: block; margin-bottom: 0.5rem; }
.visit__addr {
  font-family: var(--font-secondary);
  font-size: 1.0625rem;
  color: var(--color-text);
  line-height: 1.6;
}
.visit__hours {
  font-family: var(--font-secondary);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);       /* amber "OPEN ALL HOURS" */
  font-size: 1rem;
}
.visit__phone {
  display: inline-block;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--color-accent);       /* the single amber light of the page */
  text-decoration: none;
  transition: text-shadow var(--motion-duration) var(--motion-ease), transform var(--motion-duration) var(--motion-ease);
}
.visit__phone:hover,
.visit__phone:focus-visible {
  text-shadow: 0 0 34px color-mix(in srgb, var(--color-accent) 60%, transparent);
  transform: translateY(-2px);
}
.visit__phone-note {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}
.visit__directions { color: var(--color-text-secondary); }
.visit__directions p { margin-bottom: 1.2em; max-width: 46ch; }

.visit__inset {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: minmax(0, 320px) 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.visit__inset figure { margin: 0; }
.visit__inset img {
  width: 100%;
  border: 1px solid var(--color-border);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 45%;
}
.visit__inset figcaption {
  margin-top: 0.7rem;
  font-family: var(--font-secondary);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}
.visit__closing {
  font-family: var(--font-primary);
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.3;
  color: var(--color-text);
  max-width: 30ch;
}

/* Simple styled map frame (no fabricated pin) */
.visit__map {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--color-border);
  background:
    repeating-linear-gradient(0deg, transparent 0 38px, color-mix(in srgb, var(--color-border) 40%, transparent) 38px 39px),
    repeating-linear-gradient(90deg, transparent 0 38px, color-mix(in srgb, var(--color-border) 40%, transparent) 38px 39px),
    var(--color-surface);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.visit__map-inner { max-width: 40ch; }
.visit__map i { font-size: 1.75rem; color: var(--color-accent); }
.visit__map p {
  margin-top: 0.75rem;
  font-family: var(--font-secondary);
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
}

/* ============================================================
   Contact form (used lightly on Visit Us)
   ============================================================ */
.contact-form { display: grid; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-family: var(--font-secondary);
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}
.form-field input,
.form-field textarea {
  font-family: var(--font-secondary);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 0.75rem 0.9rem;
  border-radius: 2px;
  transition: border-color var(--motion-duration) var(--motion-ease);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.btn-quiet {
  justify-self: start;
  font-family: var(--font-secondary);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--color-accent);
  border: 0;
  padding: 0.85rem 1.75rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--motion-duration) var(--motion-ease);
}
.btn-quiet:hover,
.btn-quiet:focus-visible { background: var(--color-primary-light); }

/* ============================================================
   404
   ============================================================ */
.notfound {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(4rem, 10vw, 8rem) 1.5rem;
}
.notfound .display { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 1rem; }
.notfound p { color: var(--color-text-secondary); max-width: 42ch; margin-bottom: 2rem; }
.notfound a {
  font-family: var(--font-secondary);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 0.25rem;
}

/* ============================================================
   Motion — entrance + scroll reveal
   ============================================================ */
body.js-load-ready .entrance { opacity: 0; transform: translateY(16px); }
.entrance {
  transition: opacity var(--motion-duration-slow) var(--motion-ease),
              transform var(--motion-duration-slow) var(--motion-ease);
}
body.js-animated .entrance { opacity: 1; transform: translateY(0); }
.entrance--nav { transition-delay: 0ms; }
.entrance--h1  { transition-delay: 140ms; }
.entrance--sub { transition-delay: 260ms; }
.entrance--cue { transition-delay: 360ms; }

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--motion-duration-slow) var(--motion-ease),
              transform var(--motion-duration-slow) var(--motion-ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--slow { transition-duration: var(--motion-duration-slow); }
[data-reveal-stagger] > * { transition-delay: calc(var(--i, 0) * 120ms); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .entrance, .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero__scrollcue i { animation: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .founding__inner { grid-template-columns: 1fr; justify-items: start; gap: 2.5rem; }
  .founding__portrait { max-width: 240px; }
  .feature__inner { grid-template-columns: 1fr; }
  .visit__grid { grid-template-columns: 1fr; }
  .visit__inset { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 56px; }

  /* Mobile nav — hamburger + full-height near-black drawer */
  .nav__toggle { display: flex; z-index: 120; }
  .nav__menu {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.75rem;
    padding: 6rem clamp(1.5rem, 8vw, 3rem) 3rem;
    background: color-mix(in srgb, var(--color-bg) 98%, black);
    transform: translateX(100%);
    transition: transform var(--motion-duration) var(--motion-ease);
    z-index: 110;
  }
  .nav.is-open .nav__menu { transform: translateX(0); }
  .nav__link { font-size: 1.25rem; }
  .nav__item--visit { order: -1; }          /* Visit Us first in the drawer */
  .nav__link--visit { color: var(--color-accent); }
  body.page-home .nav:not(.is-frosted) .nav__link { opacity: 1; }

  /* Two doorways stack but stay immersive */
  .doorways { grid-template-columns: 1fr; }
  .doorway { min-height: 70vh; border-right: 0; border-bottom: 1px solid var(--color-border); }
  .doorway:last-child { border-bottom: 0; }

  /* Shelves collapse to single column, keep rhythm */
  .shelf { grid-template-columns: 1fr; gap: 1rem; }
  .shelf:nth-child(even) .shelf__label { order: 0; }
  .shelf:nth-child(even) .shelf__copy { order: 0; text-align: left; margin-left: 0; }

  .threshold__col { margin-left: 0; }
  .footer__cols { flex-direction: column; gap: 2.5rem; }

  .hero__headline { max-width: 16ch; }
}

@media (max-width: 480px) {
  .hero__content { padding-bottom: 2.5rem; }
  .visit__grid { padding: 1.5rem; }
}

/* ============================================================
   Self-hosted Google Fonts (localized by 20_performance_sweep)
   ============================================================ */
/* vietnamese */
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/6NU58FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChjdfeQ7ZXk8kD6.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: 400;
  font-display: swap;
  src: url('/fonts/6NU58FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChjdPeQ7ZXk8kD6.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: 400;
  font-display: swap;
  src: url('/fonts/6NU58FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChjeveQ7ZXk8g.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: italic;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/6NU58FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChjdfeQ7ZXk8kD6.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/6NU58FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChjdPeQ7ZXk8kD6.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/6NU58FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChjeveQ7ZXk8g.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;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Spectral';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/rnCt-xNNww_2s0amA9M8onfmTNmnUHowCw.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: 'Spectral';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/rnCt-xNNww_2s0amA9M8on7mTNmnUHowCw.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Spectral';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/rnCt-xNNww_2s0amA9M8onXmTNmnUHowCw.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: 'Spectral';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/rnCt-xNNww_2s0amA9M8onTmTNmnUHowCw.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: 'Spectral';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/rnCt-xNNww_2s0amA9M8onrmTNmnUHo.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: 'Spectral';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/rnCr-xNNww_2s0amA9M0knjsS_ulYHs.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: 'Spectral';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/rnCr-xNNww_2s0amA9M9knjsS_ulYHs.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Spectral';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/rnCr-xNNww_2s0amA9M2knjsS_ulYHs.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: 'Spectral';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/rnCr-xNNww_2s0amA9M3knjsS_ulYHs.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: 'Spectral';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/rnCr-xNNww_2s0amA9M5knjsS_ul.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: 'Spectral';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/rnCs-xNNww_2s0amA9vKsW3MafaPWnIIMrY.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: 'Spectral';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/rnCs-xNNww_2s0amA9vKsW3FafaPWnIIMrY.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Spectral';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/rnCs-xNNww_2s0amA9vKsW3OafaPWnIIMrY.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: 'Spectral';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/rnCs-xNNww_2s0amA9vKsW3PafaPWnIIMrY.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: 'Spectral';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/rnCs-xNNww_2s0amA9vKsW3BafaPWnII.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: 'Spectral';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/rnCs-xNNww_2s0amA9vmtm3MafaPWnIIMrY.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: 'Spectral';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/rnCs-xNNww_2s0amA9vmtm3FafaPWnIIMrY.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Spectral';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/rnCs-xNNww_2s0amA9vmtm3OafaPWnIIMrY.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: 'Spectral';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/rnCs-xNNww_2s0amA9vmtm3PafaPWnIIMrY.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: 'Spectral';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/rnCs-xNNww_2s0amA9vmtm3BafaPWnII.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;
}
