/*
 * Booth — boothlv.com
 * An emerald-black supper-club room read by brass light.
 * Design system built to design-direction.md (The Memory Wall spine +
 * brass rail-and-rivet trim). One voice: image-forward emerald room
 * whose sections are buttoned together with brass.
 */

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --color-primary: #1b4d3e;   /* Emerald Booth Leather */
  --color-secondary: #6b1e1e; /* Oxblood Leather */
  --color-accent: #c9a84c;    /* Brass Rail */
  --color-bg: #14261f;        /* Dim Room */
  --color-surface: #1d3a2f;   /* Lifted Emerald Panel */
  --color-text: #f5ecd7;      /* Candlelight Cream */
  --color-text-secondary: #c9b892;
  --color-border: #a0522d;    /* Walnut Frame */

  /* Named aliases (readability) */
  --emerald: #1b4d3e;
  --emerald-black: #0f231b;
  --emerald-lit: #2f7259;
  --oxblood: #6b1e1e;
  --brass: #c9a84c;
  --brass-deep: #8a6a2a;
  --gold: #e6d08c;          /* legible light-brass for SMALL text on dark (AA) */
  --walnut: #a0522d;
  --cream: #f5ecd7;
  --cream-dim: #c9b892;
  --leaf: #f5ecd7;            /* menu program-leaf ground */

  --font-primary: 'Marcellus', 'Cormorant Garamond', Georgia, serif;
  --font-secondary: 'Familjen Grotesk', 'Segoe UI', system-ui, sans-serif;
  --font-size-base: 16px;
  --spacing-base: 8px;

  --motion-duration: 300ms;
  --motion-duration-slow: 520ms;
  --motion-ease: cubic-bezier(0.2, 0.7, 0.2, 1);

  --shell: 1200px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --diamond: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* ============================================================
   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, #14261f);
  color: var(--color-text, #f5ecd7);
  line-height: 1.65;
  padding-bottom: 42px; /* required */
  overflow-x: hidden;
}

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

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

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

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

::selection { background: var(--brass); color: var(--emerald-black); }

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

/* ============================================================
   Typographic scale
   ============================================================ */
.u-display {
  font-family: var(--font-primary);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02; letter-spacing: 0.02em;
}
.u-eyebrow {
  font-family: var(--font-secondary); font-weight: 600;
  font-size: 0.8125rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); display: inline-block;
}
.u-lead {
  font-family: var(--font-secondary); font-weight: 400;
  font-size: clamp(1.1rem, 1.6vw, 1.28rem); line-height: 1.55;
  color: var(--cream-dim);
}
.u-smallcaps { font-variant: small-caps; letter-spacing: 0.05em; }

/* ============================================================
   Layout primitives
   ============================================================ */
.shell { width: min(100% - 2 * var(--gutter), var(--shell)); margin-inline: auto; }
.shell--wide { width: min(100% - 2 * var(--gutter), 1440px); margin-inline: auto; }

/* Grid children may shrink below content size (prevents column blowout) */
.dish-panel__inner > *, .bar__inner > *, .reserve__inner > *, .events__inner > *,
.story__grid > *, .shop-hero__inner > *, .premise__inner > *, .footer__inner > * { min-width: 0; }

.section { padding-block: clamp(3.5rem, 8vw, 7rem); position: relative; }
.section--emerald { background: var(--emerald); }
.section--emerald-black { background: var(--emerald-black); }
.section--oxblood { background: var(--oxblood); }
.section--surface { background: var(--color-surface); }

/* ============================================================
   Buttons / CTAs (restrained — the design wins, not the button)
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-secondary); font-weight: 600;
  font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.85rem 1.6rem; cursor: pointer; border: none;
  transition: transform var(--motion-duration) var(--motion-ease),
              background var(--motion-duration) var(--motion-ease),
              color var(--motion-duration) var(--motion-ease);
}
.btn--brass { background: var(--brass); color: var(--emerald-black); }
.btn--brass:hover, .btn--brass:focus-visible { transform: translateY(-2px); background: #dcbc63; }
.btn--outline {
  background: transparent; color: var(--cream);
  box-shadow: inset 0 0 0 1.5px var(--brass);
}
.btn--outline:hover, .btn--outline:focus-visible { background: var(--brass); color: var(--emerald-black); }

/* ============================================================
   Brass rail-and-rivet divider (site-wide device)
   "a hairline brass rule studded with evenly-spaced filled rivet circles"
   ============================================================ */
.rivet-rail {
  position: relative; width: 100%; height: 24px; overflow: hidden;
}
.rivet-rail::before {
  content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, var(--brass) 6%, var(--brass) 94%, transparent);
}
.rivet-rail::after {
  content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 10px;
  transform: translateY(-50%);
  background-image:
    radial-gradient(circle at center, #e4cd85 0 1.6px, var(--brass) 1.6px 3.4px, rgba(201,168,76,0) 3.9px);
  background-size: 44px 10px; background-repeat: repeat-x; background-position: center;
}
.rivet-rail--tight::after { background-size: 34px 10px; }
.rivet-rail--onLeaf::before { background: linear-gradient(90deg, transparent, var(--walnut) 6%, var(--walnut) 94%, transparent); }
.rivet-rail--onLeaf::after {
  background-image: radial-gradient(circle at center, var(--walnut) 0 3.2px, rgba(160,82,45,0) 3.6px);
}
/* rivets set left-to-right, once, on entry (js only; visible without JS) */
html.js .rivet-rail { clip-path: inset(0 100% 0 0); transition: clip-path 820ms var(--motion-ease); }
html.js .rivet-rail.is-in { clip-path: inset(0 0 0 0); }

/* Chapter marker: a single engraved numeral seated on a rivet */
.chapter-mark {
  display: inline-flex; flex-direction: column; align-items: center; gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.chapter-mark__rivet {
  width: 42px; height: 42px; border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, #e6d091, var(--brass) 55%, var(--brass-deep));
  box-shadow: 0 2px 6px rgba(0,0,0,0.4), inset 0 1px 2px rgba(255,255,255,0.35);
  display: grid; place-items: center;
  font-family: var(--font-primary); font-size: 1.15rem; color: var(--emerald-black);
}

/* ============================================================
   Walnut-framed photo device
   ============================================================ */
.frame-walnut {
  border: 4px solid var(--walnut);
  box-shadow: 0 0 0 1px var(--brass), 0 24px 50px -22px rgba(0,0,0,0.75);
  background: var(--emerald-black);
}
.frame-walnut img { width: 100%; height: 100%; object-fit: cover; }

/* Lozenge (diamond) tile — environmental/texture images only */
.lozenge {
  position: relative; clip-path: var(--diamond);
  background: var(--brass); /* brass piping shows as edge */
  aspect-ratio: 1 / 1;
}
.lozenge > img, .lozenge > .lozenge__fill {
  width: 100%; height: 100%; object-fit: cover;
  clip-path: var(--diamond); transform: scale(0.965); transform-origin: center;
}

/* Leader-dot menu line (printed-program rule) */
.leader { display: flex; align-items: baseline; width: 100%; }
.leader__name { flex: 0 1 auto; }
.leader__fill {
  flex: 1 1 24px; min-width: 24px; align-self: stretch;
  margin: 0 0.6rem; border-bottom: 2px dotted var(--brass);
  transform: translateY(-0.35em);
}
.leader__tag { flex: 0 0 auto; color: var(--brass); font-family: var(--font-secondary); font-size: 0.85rem; letter-spacing: 0.05em; }

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

/* ============================================================
   Header / Nav — centered logo, split menu
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 120;
  background: var(--emerald);
  transition: box-shadow var(--motion-duration) var(--motion-ease),
              padding var(--motion-duration) var(--motion-ease);
}
.site-header.is-condensed { box-shadow: 0 1px 0 var(--brass), 0 6px 22px -14px rgba(0,0,0,0.8); }

.nav {
  width: min(100% - 2 * var(--gutter), 1440px); margin-inline: auto;
  display: grid; grid-template-columns: 1fr auto 1fr auto; align-items: center;
  gap: 1.5rem; padding-block: 1.15rem;
  transition: padding var(--motion-duration) var(--motion-ease);
}
.is-condensed .nav { padding-block: 0.55rem; }

.nav__group { display: flex; gap: 1.8rem; list-style: none; align-items: center; }
.nav__group--left { justify-self: end; }
.nav__group--right { justify-self: start; }
.nav__group a {
  font-family: var(--font-secondary); font-weight: 600;
  font-size: 0.9375rem; /* 15px floor */ letter-spacing: 0.04em;
  color: var(--cream); position: relative; padding-block: 0.3rem;
  transition: color var(--motion-duration) var(--motion-ease);
}
.nav__group a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1.5px;
  background: var(--brass); transition: right var(--motion-duration) var(--motion-ease);
}
.nav__group a:hover, .nav__group a:focus-visible { color: var(--gold); }
.nav__group a:hover::after, .nav__group a:focus-visible::after { right: 0; }

.nav__brand { justify-self: center; display: inline-flex; align-items: center; line-height: 0; }
.nav__logo { height: 52px; width: auto; max-width: 200px; }
.is-condensed .nav__logo { height: 40px; }

.nav__chip {
  justify-self: end;
  font-family: var(--font-primary); font-variant: small-caps; letter-spacing: 0.06em;
  font-size: 0.95rem; padding: 0.55rem 1.15rem;
  background: var(--brass); color: var(--emerald-black);
  transition: transform var(--motion-duration) var(--motion-ease), background var(--motion-duration) var(--motion-ease);
}
.nav__chip:hover, .nav__chip:focus-visible { transform: translateY(-2px); background: #dcbc63; }

.nav__toggle { display: none; }
.nav__mobile { display: none; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--emerald); color: var(--cream); }
.site-footer .rivet-rail { margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.footer__inner {
  width: min(100% - 2 * var(--gutter), var(--shell)); margin-inline: auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.5rem;
}
.footer__logo { height: 44px; width: auto; max-width: 160px; margin-bottom: 1rem; }
.footer__tag { font-family: var(--font-primary); font-size: 1.05rem; color: var(--cream-dim); max-width: 28ch; }
.footer__heading {
  font-family: var(--font-secondary); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.8rem; color: var(--gold);
  padding-bottom: 0.6rem; margin-bottom: 1rem; border-bottom: 1px solid rgba(201,168,76,0.35);
}
.footer__col ul { list-style: none; display: grid; gap: 0.6rem; }
.footer__col a { color: var(--cream); font-size: 0.95rem; transition: color var(--motion-duration) var(--motion-ease); }
.footer__col a:hover, .footer__col a:focus-visible { color: var(--brass); }
.footer__contact p { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.7rem; color: var(--cream); font-size: 0.95rem; }
.footer__contact i { color: var(--brass); font-size: 1.1rem; }
.footer__base {
  width: min(100% - 2 * var(--gutter), var(--shell)); margin-inline: auto;
  border-top: 1px solid rgba(160,82,45,0.5); margin-top: 1.5rem; padding-top: 1.5rem;
  font-size: 0.82rem; color: var(--cream-dim); letter-spacing: 0.03em;
}

/* Mobile scroll spine (rivet rail rotated to a left-margin thread) */
.scroll-spine { display: none; }

/* ============================================================
   HERO — tufted-diamond moment mosaic + emerald type-lozenge
   ============================================================ */
.hero {
  position: relative; background:
    linear-gradient(180deg, rgba(15,35,27,0.35), rgba(15,35,27,0.65)),
    var(--emerald-black);
  padding-block: clamp(2rem, 4vw, 3.5rem) clamp(2.5rem, 5vw, 4rem);
}
.hero__mosaic {
  position: relative;
  width: min(100% - 2 * var(--gutter), 1320px); margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.35fr 1.35fr 1fr;
  grid-template-rows: repeat(3, minmax(120px, 22vh));
  grid-template-areas:
    "riv cen cen bar"
    "typ cen cen str"
    "typ chz chz str";
  gap: 12px;
  padding: 14px;
  background:
    linear-gradient(rgba(15,35,27,0.55), rgba(15,35,27,0.55)),
    url("/images/tex-tufted-emerald.png");
  background-size: cover; background-position: center;
}
.hero__mosaic::after { /* candlelight-follows-the-eye pool */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 40%),
              rgba(226,163,61,0.28), rgba(226,163,61,0.05) 60%, transparent 72%);
  mix-blend-mode: screen; opacity: 0; transition: opacity var(--motion-duration-slow) var(--motion-ease);
}
.hero__mosaic.is-warm::after { opacity: 1; }

.tile { position: relative; overflow: hidden; }
.tile img { width: 100%; height: 100%; object-fit: cover; }
.tile--cen { grid-area: cen; }
.tile--riv { grid-area: riv; }
.tile--bar { grid-area: bar; }
.tile--str { grid-area: str; }
.tile--chz { grid-area: chz; }
.tile--typ { grid-area: typ; }

/* rectangular photo tiles (centerpiece + food) — walnut framed, brass ring */
.tile--cen, .tile--chz {
  border: 3px solid var(--walnut);
  box-shadow: 0 0 0 1px var(--brass), 0 20px 44px -22px rgba(0,0,0,0.8);
}
.tile--cen img { object-position: center 42%; }
.tile--chz img { object-position: center 38%; }

/* diamond environmental tiles */
.tile--riv, .tile--bar, .tile--str {
  overflow: visible; background: transparent;
}
.tile--riv .loz, .tile--bar .loz, .tile--str .loz {
  position: absolute; inset: 0; clip-path: var(--diamond);
  background: var(--brass);
}
.tile--riv .loz img, .tile--bar .loz img, .tile--str .loz img {
  clip-path: var(--diamond); transform: scale(0.94); transform-origin: center;
  width: 100%; height: 100%; object-fit: cover;
}
.tile--riv .loz img { object-position: center; }
.tile--bar .loz img { object-position: center 40%; }
.tile--str .loz img { object-position: center 55%; }

/* emerald type-lozenge — the one brand mark's partner; text stays in safe center */
.tile--typ .loz {
  position: absolute; inset: 0; clip-path: var(--diamond);
  background:
    linear-gradient(160deg, var(--emerald-lit), var(--emerald) 45%, var(--emerald-black));
  box-shadow: inset 0 0 0 2px var(--brass);
  display: grid; place-items: center; text-align: center;
}
.tile--typ .loz-inner { max-width: 66%; display: grid; gap: 0.75rem; justify-items: center; }
.tile--typ .loz-tag {
  font-family: var(--font-primary); font-variant: small-caps;
  font-size: clamp(1.1rem, 1.7vw, 1.7rem); line-height: 1.08; letter-spacing: 0.04em;
  color: var(--cream);
}
.tile--typ .loz-hours {
  font-family: var(--font-secondary); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 0.72rem; color: var(--gold);
}
.tile--typ .loz-cta {
  font-family: var(--font-secondary); font-weight: 600; letter-spacing: 0.05em;
  font-size: 0.8rem; text-transform: uppercase; padding: 0.5rem 1rem;
  background: var(--brass); color: var(--emerald-black);
}
.tile--typ .loz-cta:hover { background: #dcbc63; }

/* hovered tile warms (candlelight) */
.tile img { transition: filter var(--motion-duration-slow) var(--motion-ease), transform var(--motion-duration-slow) var(--motion-ease); }
.tile:hover img { filter: brightness(1.12) saturate(1.05); }

/* ============================================================
   PREMISE — bare colossal statement + corner rivet swatch
   ============================================================ */
.premise { background: var(--emerald); position: relative; }
.premise__inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2rem; align-items: end; }
.premise__statement {
  font-family: var(--font-primary);
  font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.08; letter-spacing: 0.01em;
  max-width: 18ch; color: var(--cream);
}
.premise__statement .ruled { display: inline-block; border-bottom: 2px solid var(--brass); padding-bottom: 0.1em; }
.premise__lead { margin-top: 1.6rem; max-width: 52ch; }
.premise__swatch {
  width: clamp(88px, 12vw, 132px); aspect-ratio: 1; align-self: end; justify-self: end;
}
.premise__swatch img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ============================================================
   SIGNATURE DISHES — upholstered leather panels buttoned in
   ============================================================ */
.dishes { background: var(--emerald-black); }
.dishes__head { text-align: center; padding-block: clamp(3rem, 6vw, 5rem) 1rem; }
.dishes__head .u-eyebrow { margin-bottom: 0.8rem; }
.dishes__head h2 { font-size: clamp(2rem, 4vw, 3rem); }

.dish-panel {
  position: relative; padding-block: clamp(3rem, 6vw, 5.5rem);
  background-color: var(--emerald);
  background-image: linear-gradient(rgba(15,35,27,0.35), rgba(15,35,27,0.35)), url("/images/tex-tufted-emerald.png");
  background-size: auto, 520px; background-position: center;
}
.dish-panel--oxblood {
  background-color: var(--oxblood);
  background-image: linear-gradient(rgba(40,10,10,0.5), rgba(40,10,10,0.5)), url("/images/tex-tufted-emerald.png");
  background-blend-mode: normal, luminosity;
}
.dish-panel__inner {
  width: min(100% - 2 * var(--gutter), 1120px); margin-inline: auto;
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
}
.dish-panel--flip .dish-panel__inner { grid-template-columns: 1.05fr 0.95fr; }
.dish-panel--flip .dish-media { order: 2; }

/* tufted-diamond lozenge notch holding a rectangular photo */
.dish-media { position: relative; display: grid; place-items: center; padding: clamp(1rem, 3vw, 2.4rem); }
.dish-media::before { /* the notch pressed into the leather */
  content: ""; position: absolute; inset: 0; clip-path: var(--diamond);
  background: rgba(15,35,27,0.55);
  box-shadow: inset 0 0 0 2px var(--brass), inset 0 6px 26px rgba(0,0,0,0.55);
}
.dish-panel--oxblood .dish-media::before { background: rgba(40,10,10,0.55); }
.dish-media__photo {
  position: relative; z-index: 1; width: min(100%, 360px); aspect-ratio: 4 / 3;
  border: 4px solid var(--walnut); box-shadow: 0 0 0 1px var(--brass), 0 22px 46px -22px rgba(0,0,0,0.8);
}
.dish-media__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }

.dish-body { min-width: 0; }
.dish-body .course { font-family: var(--font-secondary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.75rem; color: var(--gold); display: inline-flex; align-items: center; gap: 0.4rem; }
.dish-body .course i { font-size: 1rem; }
.dish-body .leader { margin-block: 0.7rem 1rem; }
.dish-body .leader__name { font-family: var(--font-primary); font-variant: small-caps; letter-spacing: 0.03em; font-size: clamp(1.5rem, 2.6vw, 2.2rem); color: var(--cream); }
.dish-body p { color: var(--cream-dim); max-width: 46ch; font-size: 1.02rem; }
.dishes__cta { text-align: center; padding-block: clamp(2.5rem, 5vw, 4rem); }

/* ============================================================
   ATMOSPHERE — the only full-bleed photo, captioned like an album
   ============================================================ */
.atmosphere { position: relative; }
.atmosphere__frame { position: relative; width: 100%; height: clamp(360px, 66vh, 720px); }
.atmosphere__frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.atmosphere__scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,35,27,0.85) 0%, rgba(15,35,27,0) 42%); }
.atmosphere__caption {
  position: absolute; left: clamp(1.25rem, 5vw, 4rem); bottom: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--emerald); box-shadow: 0 0 0 1px var(--brass);
  padding: 0.9rem 1.4rem; max-width: min(90%, 34ch);
}
.atmosphere__caption p { font-family: var(--font-primary); font-variant: small-caps; letter-spacing: 0.04em; font-size: clamp(1.1rem, 2vw, 1.5rem); color: var(--cream); }
.atmosphere__baseline { height: 2px; background: var(--brass); width: 100%; }

/* ============================================================
   BAR — the one oxblood room
   ============================================================ */
.bar { background: var(--oxblood); }
.bar__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.bar__body { min-width: 0; }
.bar__body .u-eyebrow { color: var(--brass); }
.bar__body h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin-block: 0.6rem 1.5rem; }
.bar__list { list-style: none; display: grid; gap: 1.2rem; }
.bar__list .leader__name { font-family: var(--font-primary); font-variant: small-caps; font-size: 1.3rem; color: var(--cream); }
.bar__list .desc { display: block; color: var(--cream-dim); font-size: 0.95rem; margin-top: 0.3rem; }
.bar__media { position: relative; }
.bar__media .frame-walnut { aspect-ratio: 4 / 5; }
.bar__media img { object-position: center 42%; }

/* ============================================================
   SHOP TEASER — bottles hung like framed portraits
   ============================================================ */
.teaser { background: var(--color-surface); }
.teaser__head { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.teaser__head .u-eyebrow { margin-bottom: 0.7rem; }
.teaser__head h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.teaser__gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 5vw, 4rem); max-width: 720px; margin-inline: auto; }
.teaser__portrait { text-align: center; }
.teaser__portrait .frame-walnut { aspect-ratio: 4 / 5; margin-bottom: 1rem; }
.teaser__portrait img { object-position: center 35%; }
.teaser__portrait h3 { font-variant: small-caps; letter-spacing: 0.03em; font-size: 1.2rem; }
.teaser__portrait p { color: var(--cream-dim); font-size: 0.9rem; }
.teaser__cta { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }

/* ============================================================
   RESERVATION DOCK — the front door at dusk
   ============================================================ */
.dock { position: relative; min-height: clamp(420px, 62vh, 640px); display: grid; align-items: center; }
.dock__bg { position: absolute; inset: 0; z-index: 0; }
.dock__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.dock__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(15,35,27,0.92) 0%, rgba(15,35,27,0.78) 42%, rgba(15,35,27,0.35) 100%); }
.dock__panel {
  position: relative; z-index: 2;
  width: min(100% - 2 * var(--gutter), var(--shell)); margin-inline: auto;
}
.dock__card {
  max-width: 460px; background: var(--emerald); box-shadow: 0 0 0 1px var(--brass), 0 30px 60px -30px rgba(0,0,0,0.85);
  padding: clamp(1.8rem, 4vw, 2.8rem);
}
.dock__card h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-variant: small-caps; letter-spacing: 0.03em; margin-bottom: 1.2rem; }
.dock__facts { list-style: none; display: grid; gap: 0.9rem; margin-bottom: 1.6rem; }
.dock__facts li { display: flex; align-items: center; gap: 0.7rem; color: var(--cream); }
.dock__facts i { color: var(--brass); font-size: 1.2rem; }
.dock__facts a { color: var(--cream); }
.dock__facts a:hover { color: var(--brass); }

/* ============================================================
   MENU PAGE — cream program leaves on emerald
   ============================================================ */
.page-head { background: var(--emerald); text-align: center; padding-block: clamp(3rem, 7vw, 6rem) clamp(2rem, 4vw, 3rem); }
.page-head .u-eyebrow { margin-bottom: 1rem; }
.page-head h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); letter-spacing: 0.02em; }
.page-head p { max-width: 56ch; margin: 1.2rem auto 0; color: var(--cream-dim); }

.menu-body { background: var(--emerald); padding-block: clamp(2rem, 5vw, 4rem) clamp(3rem, 7vw, 6rem); }
.menu-index { width: min(100% - 2 * var(--gutter), var(--shell)); margin-inline: auto; display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; justify-content: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.menu-index a { font-family: var(--font-secondary); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; color: var(--cream-dim); }
.menu-index a:hover { color: var(--gold); }

.leaf {
  width: min(100% - 2 * var(--gutter), 900px); margin: 0 auto clamp(2rem, 5vw, 3.5rem);
  background: var(--leaf); color: #2b2013;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  box-shadow: 0 0 0 1px var(--walnut), 0 26px 60px -30px rgba(0,0,0,0.8);
  position: relative;
}
.leaf--oxblood { background: var(--oxblood); color: var(--cream); box-shadow: 0 0 0 1px var(--brass), 0 26px 60px -30px rgba(0,0,0,0.8); }
.leaf__head { text-align: center; margin-bottom: clamp(1.5rem, 3vw, 2.2rem); }
.leaf__title { font-size: clamp(1.6rem, 3vw, 2.3rem); font-variant: small-caps; letter-spacing: 0.04em; color: #2b2013; }
.leaf--oxblood .leaf__title { color: var(--cream); }
.leaf__marginalia { width: 92px; aspect-ratio: 1; margin: 1rem auto 0; border: 3px solid var(--walnut); box-shadow: 0 0 0 1px rgba(0,0,0,0.15); }
.leaf__marginalia img { width: 100%; height: 100%; object-fit: cover; }

.menu-item { padding-block: 0.9rem; border-bottom: 1px solid rgba(160,82,45,0.28); }
.menu-item:last-child { border-bottom: none; }
.leaf--oxblood .menu-item { border-bottom-color: rgba(201,168,76,0.28); }
.menu-item .leader__name { font-family: var(--font-primary); font-variant: small-caps; letter-spacing: 0.03em; font-size: 1.28rem; color: #2b2013; }
.leaf--oxblood .menu-item .leader__name { color: var(--cream); }
.menu-item .leader__fill { border-bottom-color: var(--walnut); }
.leaf--oxblood .menu-item .leader__fill { border-bottom-color: var(--brass); }
.menu-item p { margin-top: 0.35rem; color: #5a4a34; font-size: 0.98rem; max-width: 62ch; }
.leaf--oxblood .menu-item p { color: var(--cream-dim); }
.leaf__cta { text-align: center; margin-top: 1.6rem; }
.leaf .chapter-mark { display: flex; }
.leaf__num-row { display: flex; justify-content: center; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.story { background: var(--emerald); }
.story__statement { font-family: var(--font-primary); font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.1; max-width: 20ch; color: var(--cream); }
.story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; margin-top: clamp(2rem, 5vw, 3.5rem); }
.story__grid p { color: var(--cream-dim); margin-bottom: 1.1rem; }
.story__grid p:first-child { color: var(--cream); font-size: 1.12rem; }
.story__facts { list-style: none; display: grid; gap: 1rem; margin-top: 1.5rem; }
.story__facts .leader__name { font-family: var(--font-primary); font-variant: small-caps; font-size: 1.15rem; color: var(--cream); }
.story__facts .desc { color: var(--cream-dim); font-size: 0.92rem; display: block; margin-top: 0.2rem; }
.story__material { position: relative; height: clamp(220px, 30vw, 340px); }
.story__material img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.story__booth .frame-walnut { aspect-ratio: 16 / 10; }

/* ============================================================
   RESERVATIONS PAGE — form over the storefront
   ============================================================ */
.reserve { position: relative; }
.reserve__bg { position: absolute; inset: 0; z-index: 0; }
.reserve__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.reserve__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(15,35,27,0.9), rgba(15,35,27,0.82)); }
.reserve__inner {
  position: relative; z-index: 2;
  width: min(100% - 2 * var(--gutter), var(--shell)); margin-inline: auto;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start;
  padding-block: clamp(3rem, 7vw, 6rem);
}
.panel {
  background: var(--emerald); box-shadow: 0 0 0 1px var(--brass), 0 30px 60px -30px rgba(0,0,0,0.85);
  padding: clamp(1.8rem, 4vw, 2.6rem);
}
.panel h1, .panel h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-variant: small-caps; letter-spacing: 0.03em; margin-bottom: 0.5rem; }
.panel .u-eyebrow { margin-bottom: 0.6rem; }
.panel > p.intro { color: var(--cream-dim); margin-bottom: 1.6rem; }

/* Contact form */
.contact-form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.4rem; }
.field.field--half { }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.contact-form label {
  font-family: var(--font-secondary); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 0.72rem; color: var(--brass);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-secondary); font-size: 1rem;
  padding: 0.75rem 0.9rem; width: 100%;
  background: rgba(245,236,215,0.96); color: #2b2013;
  border: 1px solid var(--walnut); border-radius: 2px;
  transition: box-shadow var(--motion-duration) var(--motion-ease), border-color var(--motion-duration) var(--motion-ease);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(201,168,76,0.6);
}
.contact-form .btn--brass { justify-self: start; margin-top: 0.3rem; }

.reserve-facts { display: grid; gap: 1.6rem; }
.facts-card { background: var(--color-surface); box-shadow: 0 0 0 1px var(--walnut); padding: clamp(1.4rem, 3vw, 2rem); }
.facts-card h2 { font-variant: small-caps; letter-spacing: 0.04em; font-size: 1.3rem; margin-bottom: 1rem; }
.facts-card ul { list-style: none; display: grid; gap: 0.9rem; }
.facts-card li { display: flex; align-items: flex-start; gap: 0.7rem; color: var(--cream); font-size: 0.96rem; }
.facts-card i { color: var(--brass); font-size: 1.2rem; margin-top: 0.1rem; }
.facts-card a { color: var(--cream); }
.facts-card a:hover { color: var(--brass); }
.facts-card .directions { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.3rem; color: var(--gold); font-weight: 600; }

.events { background: var(--oxblood); }
.events__inner { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.events__media .frame-walnut { aspect-ratio: 16 / 10; }
.events__body h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-variant: small-caps; margin-bottom: 0.8rem; }
.events__body p { color: var(--cream-dim); margin-bottom: 1.4rem; max-width: 46ch; }
.events__body .contact-form { max-width: 520px; }

/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-hero { background: var(--emerald); padding-block: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 3vw, 2.5rem); }
.shop-hero__inner { width: min(100% - 2 * var(--gutter), var(--shell)); margin-inline: auto; display: grid; grid-template-columns: auto 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.shop-hero__portrait { width: clamp(160px, 22vw, 240px); }
.shop-hero__portrait .frame-walnut { aspect-ratio: 4 / 5; }
.shop-hero__portrait img { object-position: center 35%; }
.shop-hero__body .u-eyebrow { margin-bottom: 0.8rem; }
.shop-hero__body h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.shop-hero__body p { color: var(--cream-dim); max-width: 52ch; margin-top: 1rem; }

#shop-root { display: block; background: var(--emerald); padding-block: clamp(2rem, 5vw, 4rem) clamp(3rem, 7vw, 6rem); }
.shop-noscript { width: min(100% - 2 * var(--gutter), var(--shell)); margin-inline: auto; color: var(--cream); }

/* Shop state machine */
[data-shop-state="loading"] .shop-loading,
#shop-root[data-shop-state="loading"] { }
.shop-loading {
  width: min(100% - 2 * var(--gutter), var(--shell)); margin-inline: auto;
  padding: 3rem 0; color: var(--cream-dim); font-family: var(--font-primary); font-variant: small-caps; letter-spacing: 0.05em;
  position: relative;
}
#shop-root[data-shop-state="ready"] .shop-loading { display: none; }
#shop-root[data-shop-state="empty"]::after {
  content: "The shelf is being restocked — check back soon.";
  display: block; width: min(100% - 2 * var(--gutter), var(--shell)); margin-inline: auto;
  padding: 3rem 0; color: var(--cream); font-family: var(--font-primary); font-variant: small-caps;
  font-size: 1.3rem; letter-spacing: 0.04em; text-align: center;
}
#shop-root[data-shop-state="error"]::after {
  content: "We couldn't load the shop right now. Please refresh.";
  display: block; width: min(100% - 2 * var(--gutter), var(--shell)); margin-inline: auto;
  padding: 3rem 0; color: var(--cream); font-family: var(--font-primary); font-variant: small-caps;
  font-size: 1.3rem; letter-spacing: 0.04em; text-align: center;
}

/* Product grid brand overrides (frozen class names — overrides only) */
.shop-categories {
  width: min(100% - 2 * var(--gutter), var(--shell)); margin: 0 auto 2rem;
  display: flex; gap: 0.5rem 1rem; flex-wrap: wrap; padding-bottom: 0.5rem;
}
.shop-category {
  font-family: var(--font-secondary); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  font-size: 0.82rem; padding: 0.5rem 0.9rem; background: transparent; color: var(--cream-dim);
  border: none; border-bottom: 2px solid transparent; cursor: pointer;
  transition: color var(--motion-duration) var(--motion-ease), border-color var(--motion-duration) var(--motion-ease);
}
.shop-category:hover { color: var(--cream); }
.shop-category.is-active { color: var(--gold); border-bottom-color: var(--gold); }

.shop-grid {
  width: min(100% - 2 * var(--gutter), var(--shell)); margin-inline: auto;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem;
}
.shop-card {
  background: var(--color-surface); border: 1px solid var(--walnut); border-radius: 4px;
  overflow: hidden; box-shadow: 0 18px 40px -26px rgba(0,0,0,0.8);
  transition: transform var(--motion-duration) var(--motion-ease), border-color var(--motion-duration) var(--motion-ease);
}
.shop-card:hover { transform: translateY(-2px); border-color: var(--brass); }
.shop-card-media { aspect-ratio: 4 / 5; background: var(--emerald-black); }
.shop-card-image { object-position: center 40%; }
.shop-card-body { padding: 1.1rem 1.1rem 1.3rem; }
.shop-card-title { font-family: var(--font-primary); font-variant: small-caps; letter-spacing: 0.03em; font-size: 1.2rem; color: var(--cream); margin-bottom: 0.4rem; }
.shop-card-price { font-family: var(--font-primary); font-variant: small-caps; font-size: 1.4rem; color: var(--gold); }
.shop-card-variations { margin-top: 0.6rem; width: 100%; padding: 0.5rem; background: rgba(245,236,215,0.95); color: #2b2013; border: 1px solid var(--walnut); border-radius: 2px; font-family: var(--font-secondary); }
.shop-card-cta {
  margin-top: 0.8rem; width: 100%; padding: 0.7rem 1rem; border: none; border-radius: 4px;
  background: var(--brass); color: #14261f; font-family: var(--font-secondary); font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.85rem; cursor: pointer;
  transition: background var(--motion-duration) var(--motion-ease);
}
.shop-card-cta:hover { background: #dcbc63; }
.shop-card--unavailable { opacity: 0.5; filter: grayscale(0.4) sepia(0.15); }
.shop-card--unavailable .shop-card-cta { cursor: not-allowed; }

/* Shop quick-view / clamp (build-owned progressive enhancement — restyled, mechanism kept) */
.shop-card-desc {
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4;
  overflow: hidden; line-height: 1.5; color: var(--cream-dim); font-size: 0.92rem; margin-top: 0.4rem;
}
.shop-card-viewmore {
  display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 0.5rem;
  background: none; border: none; padding: 0; font: inherit; font-family: var(--font-secondary);
  font-weight: 600; font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--gold); cursor: pointer; border-bottom: 1.5px solid transparent;
  transition: border-color var(--motion-duration) var(--motion-ease);
}
.shop-card-viewmore:hover, .shop-card-viewmore:focus-visible { border-color: var(--brass); }

.pdp-modal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 1.5rem; opacity: 0; visibility: hidden; transition: opacity var(--motion-duration) var(--motion-ease), visibility var(--motion-duration); }
.pdp-modal.is-open { opacity: 1; visibility: visible; }
.pdp-modal__scrim { position: absolute; inset: 0; background: rgba(15,35,27,0.8); }
.pdp-modal__panel { position: relative; z-index: 1; background: var(--emerald); box-shadow: 0 0 0 1px var(--brass), 0 30px 70px -20px rgba(0,0,0,0.85); width: 100%; max-width: 640px; max-height: 86vh; overflow-y: auto; display: grid; grid-template-columns: 1fr; }
.pdp-modal__media { background: var(--emerald-black); aspect-ratio: 4/5; overflow: hidden; }
.pdp-modal__media img { width: 100%; height: 100%; object-fit: cover; }
.pdp-modal__body { padding: clamp(1.5rem, 3vw, 2.2rem); display: flex; flex-direction: column; gap: 0.9rem; min-width: 0; }
.pdp-modal__body h3 { font-family: var(--font-primary); font-variant: small-caps; font-size: 1.5rem; color: var(--cream); }
.pdp-modal__desc { font-size: 0.96rem; line-height: 1.62; color: var(--cream-dim); white-space: pre-line; }
.pdp-modal__price { font-family: var(--font-primary); font-variant: small-caps; font-size: 1.4rem; color: var(--gold); }
.pdp-modal__cta { align-self: flex-start; margin-top: 0.2rem; padding: 0.7rem 1.5rem; border: none; background: var(--brass); color: #14261f; font-family: var(--font-secondary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer; }
.pdp-modal__cta:disabled { cursor: not-allowed; opacity: 0.5; }
.pdp-modal__close { position: absolute; top: 0.7rem; right: 0.7rem; z-index: 2; background: var(--emerald-black); color: var(--cream); border: 1px solid var(--brass); font-size: 1.2rem; line-height: 1; width: 2.2rem; height: 2.2rem; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.pdp-modal__close:hover { color: var(--brass); }
@media (min-width: 640px) { .pdp-modal__panel { grid-template-columns: 0.9fr 1.1fr; } }

/* Set brass cart accent for shop.js-owned chrome */
:root { --lcrm-cart-accent: #c9a84c; }

/* ============================================================
   404
   ============================================================ */
.notfound { min-height: 70vh; display: grid; place-items: center; text-align: center; background: var(--emerald-black); padding: 4rem var(--gutter); }
.notfound h1 { font-size: clamp(3rem, 10vw, 7rem); color: var(--brass); }
.notfound p { color: var(--cream-dim); margin-block: 1rem 2rem; max-width: 44ch; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .dish-panel__inner,
  .dish-panel--flip .dish-panel__inner { grid-template-columns: 1fr; }
  .dish-panel--flip .dish-media { order: 0; }
  .bar__inner,
  .events__inner { grid-template-columns: 1fr; }
  .reserve__inner { grid-template-columns: 1fr; }
  .story__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Nav → centered logo + hamburger + persistent chip */
  .nav {
    grid-template-columns: auto 1fr auto; gap: 0.8rem;
    padding-inline: 0;
  }
  .nav__group { display: none; }
  .nav__toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; background: transparent; border: none; cursor: pointer; justify-self: start;
  }
  .nav__toggle-bar { display: block; width: 24px; height: 2px; background: var(--cream); transition: transform var(--motion-duration) var(--motion-ease), opacity var(--motion-duration) var(--motion-ease); }
  .nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }
  .nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav__brand { justify-self: center; }
  .nav__chip { justify-self: end; font-size: 0.82rem; padding: 0.45rem 0.85rem; }

  .nav__mobile { display: block; grid-column: 1 / -1; overflow: hidden; max-height: 0; transition: max-height var(--motion-duration-slow) var(--motion-ease); }
  .nav__mobile.is-open { max-height: 320px; }
  .nav__mobile ul { list-style: none; display: grid; gap: 0.2rem; padding: 0.5rem var(--gutter) 1rem; }
  .nav__mobile a { display: block; padding: 0.75rem 0; color: var(--cream); font-family: var(--font-secondary); font-weight: 600; letter-spacing: 0.04em; font-size: 1.05rem; border-bottom: 1px solid rgba(201,168,76,0.2); }
  .nav__mobile a:hover, .nav__mobile a:focus-visible { color: var(--brass); }

  /* Hero re-buttons into a two-lozenge zigzag (tufting seam survives) */
  .hero__mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "typ cen"
      "riv bar"
      "chz str";
    grid-auto-rows: minmax(120px, 30vw);
  }
  .tile--cen { grid-area: cen; }
  .tile--typ .loz-inner { max-width: 78%; }

  /* Rivet rail rotates into a left-margin scroll spine */
  .scroll-spine {
    display: block; position: fixed; left: 5px; top: 0; bottom: 0; width: 12px; z-index: 60; pointer-events: none;
  }
  .scroll-spine::before { content: ""; position: absolute; top: 8%; bottom: 8%; left: 50%; width: 2px; transform: translateX(-50%); background: linear-gradient(180deg, transparent, var(--brass) 5%, var(--brass) 95%, transparent); }
  .scroll-spine::after {
    content: ""; position: absolute; top: 8%; bottom: 8%; left: 50%; width: 10px; transform: translateX(-50%);
    background-image: radial-gradient(circle at center, #e4cd85 0 1.6px, var(--brass) 1.6px 3.2px, rgba(201,168,76,0) 3.6px);
    background-size: 10px 40px; background-repeat: repeat-y; background-position: center;
  }
  .premise__inner { grid-template-columns: 1fr; }
  .premise__swatch { justify-self: start; }
  .footer__inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .shop-hero__inner { grid-template-columns: 1fr; text-align: center; }
  .shop-hero__portrait { margin-inline: auto; }
  .story__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__mosaic { gap: 8px; padding: 8px; }
  .teaser__gallery { grid-template-columns: 1fr; max-width: 320px; }
  .nav__logo { height: 46px; }
}

/* ============================================================
   Reduced motion — never hide content, no reveal transitions
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html.js .rivet-rail { clip-path: none; transition: none; }
  .hero__mosaic::after { display: none; }
  .btn, .nav__chip, .shop-card, .tile img { transition: none; }
}

/* ============================================================
   Self-hosted Google Fonts (localized by 20_performance_sweep)
   ============================================================ */
/* vietnamese */
@font-face {
  font-family: 'Familjen Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/Qw3GZR9ZHiDnImG6-NEMQ41wby8WbHUEj7E49PCrfQ.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Familjen Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/Qw3GZR9ZHiDnImG6-NEMQ41wby8WbHQEj7E49PCrfQ.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Familjen Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/Qw3GZR9ZHiDnImG6-NEMQ41wby8WbHoEj7E49PA.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Familjen Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/Qw3GZR9ZHiDnImG6-NEMQ41wby8WbHUEj7E49PCrfQ.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Familjen Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/Qw3GZR9ZHiDnImG6-NEMQ41wby8WbHQEj7E49PCrfQ.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Familjen Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/Qw3GZR9ZHiDnImG6-NEMQ41wby8WbHoEj7E49PA.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Familjen Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/Qw3GZR9ZHiDnImG6-NEMQ41wby8WbHUEj7E49PCrfQ.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Familjen Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/Qw3GZR9ZHiDnImG6-NEMQ41wby8WbHQEj7E49PCrfQ.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Familjen Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/Qw3GZR9ZHiDnImG6-NEMQ41wby8WbHoEj7E49PA.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Familjen Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/Qw3GZR9ZHiDnImG6-NEMQ41wby8WbHUEj7E49PCrfQ.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Familjen Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/Qw3GZR9ZHiDnImG6-NEMQ41wby8WbHQEj7E49PCrfQ.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Familjen Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/Qw3GZR9ZHiDnImG6-NEMQ41wby8WbHoEj7E49PA.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Marcellus';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/wEO_EBrOk8hQLDvIAF81WPoK_kgXiYvO.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: 'Marcellus';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/wEO_EBrOk8hQLDvIAF81VvoK_kgXiQ.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;
}
