/* =================================================================
   SNOWFALL — cultured greek snow
   ================================================================= */

/* =================================================================
   BRAND FONTS — self-hosted in assets/fonts/.
   • TAN Tangkiwood (display) — real licensed webfont, single weight.
   • Aristotelica Pro (sans)  — TRIAL "Display" cut (ExtraLight 200 +
     DemiBold 600 only). Swap in the licensed text webfont before launch.
   Outfit (Google) remains ONLY as a sans fallback. See assets/fonts/README.md.
   ================================================================= */
@font-face {
  font-family: "TAN Tangkiwood";
  src: url("fonts/tan-tangkiwood.woff2") format("woff2");
  font-weight: 400 900; font-style: normal; font-display: swap;
}
/* Aristotelica — TRIAL "Display" cut, only two weights supplied (ExtraLight 200 +
   DemiBold 600). Good enough to preview the brand sans; swap in the licensed
   Aristotelica Pro *text* webfont (with a true 300–500 weight) before launch. */
/* NB: the TRIAL files watermark all digits (0–9) with "ZETAFONTS.COM".
   unicode-range excludes U+0030–0039 so numbers fall through to the Outfit
   fallback. Drop the unicode-range lines once the licensed font is in. */
@font-face {
  font-family: "Aristotelica Pro";
  src: url("fonts/aristotelica-extralight.woff2") format("woff2");
  font-weight: 200 400; font-style: normal; font-display: swap;
  unicode-range: U+0-2F, U+3A-10FFFF;
}
@font-face {
  font-family: "Aristotelica Pro";
  src: url("fonts/aristotelica-demibold.woff2") format("woff2");
  font-weight: 500 700; font-style: normal; font-display: swap;
  unicode-range: U+0-2F, U+3A-10FFFF;
}

/* ---------- tokens ---------- */
:root {
  /* canvas — "jewellery inspired" warm neutrals */
  --snow:       #ffffff;   /* brightest snow white */
  --oat:        #f7f4ef;   /* Snow — primary canvas */
  --limestone:  #efe9df;   /* soft limestone */
  --sand-deep:  #e4ddd0;   /* deeper sand for edges */
  --warm-stone: #d5cec4;   /* Warm Stone — borders / secondary */

  /* ink — true black (boxes, text, footer) */
  --charcoal:   #000000;
  --ink-70:     rgba(0, 0, 0, 0.74);
  --ink-50:     rgba(0, 0, 0, 0.54);
  --ink-35:     rgba(0, 0, 0, 0.38);
  --ink-15:     rgba(0, 0, 0, 0.14);
  --ink-08:     rgba(0, 0, 0, 0.07);

  /* brand stone accent (eyebrows, hairlines, soft italics) */
  --taupe:      #877d72;
  --taupe-soft: #d5cec4;
  --taupe-15:   rgba(135, 125, 114, 0.16);

  /* ingredient jewels — appear ONLY on the snow, never in chrome */
  --gold:       #c9a063;   /* wild honey */
  --ruby:       #a24d56;   /* Ruby */
  --emerald:    #6f8a6b;   /* Emerald */
  --midnight:   #3b3b44;   /* Midnight (black sesame) */
  --sapphire:   #6d8ba5;   /* Sapphire */

  --jewel-ruby:     #a24d56;
  --jewel-sapphire: #6d8ba5;
  --jewel-emerald:  #6f8a6b;

  /* motion */
  --mist:   cubic-bezier(0.25, 1, 0.5, 1);
  --glide:  cubic-bezier(0.22, 0.61, 0.36, 1);

  /* metrics */
  --maxw: 1320px;
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --nav-h: 76px;
  --announce-h: 36px;

  /* brand fonts — TAN Tangkiwood (display) + Aristotelica Pro (sans), with web fallbacks */
  --display: "TAN Tangkiwood", Georgia, serif;
  --round:   "TAN Tangkiwood", Georgia, serif;
  --accent:  "TAN Tangkiwood", Georgia, serif;
  --label:   "Aristotelica Pro", "Outfit", system-ui, sans-serif;
  --body:    "Aristotelica Pro", "Outfit", system-ui, sans-serif;
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + var(--announce-h));
}

body {
  margin: 0;
  font-family: var(--body);
  font-weight: 300;
  color: var(--charcoal);
  background: #ffffff;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg, canvas { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }

::selection { background: var(--taupe); color: #fff; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(5.5rem, 13vw, 12rem); }

/* shared eyebrow */
.eyebrow {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1.6rem;
}

/* ---------- ambient snow canvas ---------- */
#snow {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 2s ease;
}
#snow.is-on { opacity: 0.9; }

/* =================================================================
   BUTTONS
   ================================================================= */
.btn {
  --bg: transparent;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.05em 2.1em;
  border-radius: 100px;
  color: var(--charcoal);
  background: var(--bg);
  border: 1px solid var(--ink-15);
  overflow: hidden;
  transition: border-color 0.6s var(--mist), background-color 0.6s var(--mist),
              color 0.6s var(--mist), transform 0.6s var(--mist),
              box-shadow 0.6s var(--mist);
  isolation: isolate;
}
.btn > span {
  position: relative;
  transition: transform 0.55s var(--mist);
}
.btn::before {  /* the warm cream bleed */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 140% at 50% 120%, var(--limestone), var(--oat));
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.6s var(--mist), transform 0.7s var(--mist);
  z-index: -1;
}
.btn:hover { border-color: var(--ink-35); box-shadow: 0 18px 40px -24px rgba(26,26,26,0.45); }
.btn:hover::before { opacity: 1; transform: scale(1); }
.btn:hover > span { transform: translateY(-2px); }
.btn:active { transform: scale(0.985); }
.btn:focus-visible { outline: 2px solid var(--taupe); outline-offset: 3px; }

.btn--solid {
  background: var(--charcoal);
  color: var(--oat);
  border-color: var(--charcoal);
}
.btn--solid::before {
  background: radial-gradient(120% 140% at 50% 120%, #161616, var(--charcoal));
}
.btn--solid:hover { color: #fff; }

.btn--ghost {
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}

/* =================================================================
   ANNOUNCEMENT BAR — pop-up notice above the nav
   ================================================================= */
.announce {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  height: var(--announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  padding: 0 1rem;
  background: var(--charcoal);
  color: #fff;
  font-family: var(--label);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  transition: color 0.4s var(--mist);
}
.announce i { font-style: normal; opacity: 0.45; }
.announce:hover { color: var(--oat); }

/* =================================================================
   NAV
   ================================================================= */
.nav {
  position: fixed;
  top: var(--announce-h); left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(253, 251, 247, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background-color 0.6s var(--mist), backdrop-filter 0.6s var(--mist),
              border-color 0.6s var(--mist), height 0.6s var(--mist);
}
.nav.is-scrolled {
  height: 64px;
  background: rgba(253, 251, 247, 0.72);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--ink-08);
}
.nav__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  color: var(--charcoal);
}
.brand__flake { width: 22px; height: 22px; flex: none; }
.brand__word {
  font-family: var(--round);
  font-weight: 600;
  font-size: 1.32rem;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}

.nav__links {
  display: flex;
  gap: 2.4rem;
  margin-left: auto;
  margin-right: 2rem;
}
.nav__links a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--ink-70);
  position: relative;
  padding-block: 0.4em;
  white-space: nowrap;
  transition: color 0.4s var(--mist);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--charcoal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--mist);
}
.nav__links a:hover { color: var(--charcoal); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { padding: 0.85em 1.6em; }

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: calc(var(--nav-h) + var(--announce-h));
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 50% 18%, rgba(255,255,255,0.9), transparent 70%),
    radial-gradient(80% 60% at 70% 90%, rgba(245,242,235,0.8), transparent 60%);
  mix-blend-mode: screen;
}
.hero__content { position: relative; z-index: 2; }

.hero__flake {
  width: clamp(30px, 4.5vw, 54px);
  height: auto;
  margin: 0 auto 0.6rem;
  color: var(--charcoal);
}
.hero__title {
  font-family: var(--round);
  font-size: clamp(3rem, 11vw, 8.5rem);
  color: var(--charcoal);
  margin: 0.1em 0 0.28em;
}
.hero__meta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
}
.hero__meta i { font-style: normal; opacity: 0.6; }
.hero__cta { margin-top: 2.8rem; }

/* =================================================================
   SNOW SURFACE — pure-CSS snow texture (media-slot stand-in)
   ================================================================= */
.snow-surface {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% -10%, #ffffff 0%, #fbfcfd 45%, #eef1f5 100%);
}
.snow-surface::before { /* fine snow grain */
  content: "";
  position: absolute; inset: -20%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: multiply;
}
.snow-surface::after { /* soft drifting highlight */
  content: "";
  position: absolute; inset: -30%;
  background:
    radial-gradient(40% 40% at 30% 30%, rgba(255,255,255,0.9), transparent 60%),
    radial-gradient(45% 45% at 75% 60%, rgba(255,255,255,0.75), transparent 60%),
    radial-gradient(35% 35% at 55% 85%, rgba(236,230,218,0.6), transparent 60%);
  animation: drift 26s ease-in-out infinite alternate;
}
@keyframes drift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-3%, 2%, 0) scale(1.06); }
}
.snow-surface--hero::after { opacity: 0.9; }

/* =================================================================
   OUR STORY
   ================================================================= */
.story { background: #ffffff; }
.story__grid {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.story__title {
  font-family: var(--round);
  font-weight: 500;
  font-size: clamp(2.2rem, 5.2vw, 3.8rem);
  line-height: 1.05;
  margin: 0.5rem 0 0;
}
.story__body { max-width: 62ch; margin: clamp(2.5rem, 5vw, 3.5rem) auto 0; }
.story__body p {
  margin-bottom: 1.4rem;
  color: var(--ink-70);
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.78;
}
.story__lead {
  font-size: clamp(1.2rem, 1.9vw, 1.55rem) !important;
  color: var(--charcoal) !important;
  line-height: 1.5 !important;
}
.story__quote {
  font-family: var(--body);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.1vw, 1.8rem) !important;
  line-height: 1.42 !important;
  color: var(--charcoal) !important;
  margin: 2rem 0 2.2rem !important;
}
.story__sign {
  font-family: var(--round);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem) !important;
  color: var(--charcoal) !important;
  margin-top: 2rem !important;
  line-height: 1.2 !important;
}

/* =================================================================
   CONCEPT
   ================================================================= */
.concept { background: var(--snow); }
.concept__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}
.concept__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: 0;
}
.concept__text { max-width: 52ch; }
.concept__text p { margin-bottom: 1.5rem; color: var(--ink-70); font-size: clamp(1rem, 1.3vw, 1.15rem); }
.concept__text .lead {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.4;
  margin-top: 2rem;
}
.concept__triad {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-family: var(--accent);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  color: var(--taupe) !important;
  margin-top: 2.4rem !important;
}
.concept__media {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 40px 80px -50px rgba(120, 104, 76, 0.5);
}
.concept__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* =================================================================
   THE MENU — six signature snows
   ================================================================= */
.menu { background: #ffffff; }
.menu__head {
  text-align: center;
  max-width: 56ch;
  margin: 0 auto clamp(3rem, 7vw, 5.5rem);
}
.menu__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.1rem, 5.2vw, 4rem);
  line-height: 1.08;
  letter-spacing: 0;
}
.menu__intro {
  margin-top: 1.7rem;
  color: var(--ink-70);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2.8rem, 5vw, 4.5rem) clamp(1.8rem, 4vw, 3.5rem);
}
.menu__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.menu__media { /* transparent bowls float on the page with a soft cast shadow */
  position: relative;
  width: clamp(184px, 24vw, 280px);
  aspect-ratio: 1;
  transition: transform 0.6s var(--mist);
}
.menu__media img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 26px rgba(120, 135, 160, 0.30));
  transition: transform 0.7s var(--mist), filter 0.7s var(--mist);
}
.menu__card:hover .menu__media { transform: translateY(-8px); }
.menu__card:hover .menu__media img {
  transform: scale(1.04);
  filter: drop-shadow(0 34px 32px rgba(120, 135, 160, 0.40));
}

.menu__tag {
  margin-top: 1.7rem;
  font-family: var(--label);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oat);
  background: var(--charcoal);
  padding: 0.46em 0.95em 0.52em;
  border-radius: 100px;
}
.menu__name {
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(1.25rem, 2.1vw, 1.65rem);
  margin: 0.95rem 0 0.65rem;
}
.menu__desc {
  font-family: var(--body);
  color: var(--ink-50);
  font-size: 0.82rem;
  line-height: 1.62;
  letter-spacing: 0.03em;
  max-width: 24ch;
}

/* build-your-own note, sitting under the six signatures */
.menu__byo {
  max-width: 54ch;
  margin: clamp(3.5rem, 8vw, 6rem) auto 0;
  padding-top: clamp(3rem, 6vw, 4.5rem);
  border-top: 1px solid var(--ink-15);
  text-align: center;
}
.menu__byo-title {
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.3;
}
.menu__byo-text {
  margin-top: 1.5rem;
  color: var(--ink-70);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.6;
}
.menu__byo-opts {
  margin-top: 0.9rem;
  font-family: var(--body);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ink-50);
}
.menu__byo-opts span {
  font-family: var(--label);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-right: 0.75em;
}

/* =================================================================
   WHY SNOWFALL
   ================================================================= */
.why { background: var(--snow); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem) clamp(2.5rem, 8vw, 8rem);
  margin-bottom: clamp(4rem, 10vw, 9rem);
}
.why__cell { border-top: 1px solid var(--ink-15); padding-top: 1.8rem; }
.why__index {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--taupe);
}
.why__cell h3 {
  font-family: var(--round);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin: 1rem 0 0.7rem;
}
.why__cell p { color: var(--ink-70); font-size: clamp(0.98rem, 1.2vw, 1.1rem); max-width: 28ch; }

.why__statement {
  margin: 0;
  text-align: center;
  font-family: var(--accent);
  font-weight: 400;
  font-size: clamp(1.9rem, 5.6vw, 4rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.why__statement em { font-weight: 500; color: var(--taupe); }
.why__statement span { color: var(--taupe-soft); }

/* =================================================================
   SNOWROOM
   ================================================================= */
.snowroom { background: #ffffff; }
.snowroom__inner {
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.snowroom__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: 0;
  margin-bottom: 1.4rem;
}
.snowroom__lead {
  color: var(--ink-70);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 42ch;
  margin: 0 auto;
}
.snowroom__addr {
  margin-top: clamp(2rem, 4vw, 2.8rem);
  padding-top: clamp(2rem, 4vw, 2.8rem);
  border-top: 1px solid var(--ink-15);
  font-family: var(--body);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.65;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}
.snowroom__times {
  margin-top: 1.3rem;
  font-family: var(--label);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
}
.snowroom__times a {
  color: var(--charcoal);
  border-bottom: 1px solid var(--ink-35);
  padding-bottom: 1px;
  transition: border-color 0.4s var(--mist);
}
.snowroom__times a:hover { border-color: var(--charcoal); }
.snowroom__cta { margin-top: clamp(2.2rem, 4vw, 2.8rem); }

/* =================================================================
   FOOTER
   ================================================================= */
.footer { background: var(--charcoal); color: var(--oat); padding-block: clamp(4rem, 8vw, 6rem); }
.footer__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; }
.brand--footer { color: var(--taupe-soft); }
.brand--footer .brand__word { color: var(--oat); }
.footer__tag { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe-soft); }
.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.8rem; margin-top: 0.5rem; }
.footer__links a { font-size: 0.8rem; letter-spacing: 0.06em; color: rgba(253,251,247,0.7); transition: color 0.4s var(--mist); }
.footer__links a:hover { color: #fff; }
.footer__fine { font-size: 0.72rem; letter-spacing: 0.1em; color: rgba(253,251,247,0.4); margin-top: 1rem; }

/* =================================================================
   REVEAL / MOTION
   ================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  filter: blur(6px);
  transition:
    opacity 1.2s var(--mist),
    transform 1.2s var(--mist),
    filter 1.2s var(--mist);
  transition-delay: calc(var(--d, 0) * 0.12s);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  filter: none;
}

/* parallax hook */
[data-parallax] { will-change: transform; }

/* =================================================================
   LABELS → Aristotelica Pro (uppercase, tracked)
   ================================================================= */
.eyebrow,
.btn,
.hero__meta,
.footer__tag,
.why__index {
  font-family: var(--label);
}

/* =================================================================
   DISPLAY HEADINGS → TAN Tangkiwood, white-on-black (per the menu)
   ================================================================= */
.hero__title,
.concept__title,
.menu__title,
.snowroom__title,
.story__title {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.012em;
  line-height: 1.38;
}

/* the black highlight box that hugs each line of display type */
.hl,
.brand__word {
  display: inline;
  background: var(--charcoal);
  color: #fff;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0.04em 0.3em 0.16em;
}
.brand__word { text-transform: uppercase; }
/* footer sits on Midnight, so invert the logo box */
.brand--footer .brand__word { background: var(--oat); color: var(--charcoal); }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  :root { --nav-h: 64px; }
  .concept__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .concept__media { max-width: 440px; margin-inline: auto; width: 100%; }
  .why__grid { grid-template-columns: 1fr; gap: 2.6rem; }
  .nav__cta { padding: 0.8em 1.3em; }
}

@media (max-width: 680px) {
  .announce { font-size: 0.54rem; letter-spacing: 0.12em; gap: 0; }
  .announce__sub, .announce i { display: none; }
}

@media (max-width: 460px) {
  .hero__meta { gap: 0.5rem; font-size: 0.62rem; }
  .menu__grid { grid-template-columns: 1fr; gap: 3rem; }
  .menu__media { width: clamp(200px, 60vw, 260px); }
}

/* =================================================================
   REDUCED MOTION
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
  #snow { display: none; }
}
