/* =================================================================
   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. */
@font-face {
  font-family: "Aristotelica Pro";
  src: url("fonts/aristotelica-extralight.woff2") format("woff2");
  font-weight: 200 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Aristotelica Pro";
  src: url("fonts/aristotelica-demibold.woff2") format("woff2");
  font-weight: 500 700; font-style: normal; font-display: swap;
}

/* ---------- 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;

  /* 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: var(--nav-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);
}

/* =================================================================
   NAV
   ================================================================= */
.nav {
  position: fixed;
  top: 0; 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: var(--nav-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__sub {
  font-size: clamp(1.05rem, 2.4vw, 1.55rem);
  font-weight: 300;
  color: var(--ink-70);
  letter-spacing: 0.01em;
}
.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; }

.hero__scroll {
  position: absolute;
  bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px; height: 56px;
  overflow: hidden;
}
.hero__scroll-line {
  position: absolute; inset: 0;
  background: var(--ink-35);
}
.hero__scroll-line::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--charcoal);
  animation: scrollDrip 2.6s var(--mist) infinite;
}
@keyframes scrollDrip {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}

/* =================================================================
   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 {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.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__media {
  position: relative;
  margin-top: clamp(2rem, 4vw, 3rem);
  height: clamp(240px, 30vw, 380px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px -50px rgba(120,104,76,0.45);
}
.snow-surface--macro {
  background: radial-gradient(120% 120% at 45% 25%, #ffffff 0%, #fafbfc 40%, #e9edf2 100%);
}
/* a soft concave press in the snow, with a faint settling ripple */
.texture__press {
  position: absolute;
  width: clamp(220px, 34vw, 520px);
  aspect-ratio: 1.25 / 1;
  left: 54%; top: 46%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(closest-side at 50% 38%, rgba(150,138,114,0.10), rgba(214,205,188,0.30) 62%, transparent 80%);
  box-shadow:
    inset 0 22px 50px rgba(150,138,114,0.40),
    inset 0 -16px 34px rgba(255,255,255,0.72);
}
.texture__press--echo {
  width: clamp(340px, 52vw, 820px);
  aspect-ratio: 1.4 / 1;
  opacity: 0.5;
  background: radial-gradient(closest-side, rgba(214,205,188,0.18), transparent 72%);
  box-shadow: inset 0 14px 40px rgba(150,138,114,0.18);
}
.story__body { max-width: 60ch; padding-top: 0.4rem; }
.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: 1fr 1fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}
.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__right { padding-top: 0.6rem; max-width: 46ch; }
.concept__right p { margin-bottom: 1.5rem; color: var(--ink-70); font-size: clamp(1rem, 1.3vw, 1.15rem); }
.concept__right .lead {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.4;
}
.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;
}

/* =================================================================
   SNOW BUILDER
   ================================================================= */
.builder { background: #ffffff; }
.builder__head { text-align: center; margin-bottom: clamp(3rem, 7vw, 6rem); }
.builder__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.1rem, 5.2vw, 4rem);
  line-height: 1.08;
  letter-spacing: 0;
}
.builder__stage {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

/* ---- the snow object ---- */
.snowobj {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
.snowobj__halo {
  position: absolute;
  width: 92%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,255,255,0.9), rgba(245,242,235,0) 70%);
}
.snowobj__mound {
  position: relative;
  width: 78%;
  aspect-ratio: 1 / 0.82;
  border-radius: 50% 50% 48% 48% / 62% 62% 38% 38%;
  background:
    radial-gradient(72% 64% at 38% 26%, #ffffff 0%, #fbfcfd 42%, #ebeef3 78%, #dde3ea 100%);
  box-shadow:
    inset 18px 22px 44px rgba(255,255,255,0.9),
    inset -22px -26px 50px rgba(150,162,180,0.4),
    0 40px 60px -34px rgba(120,135,160,0.4);
  overflow: hidden;
  z-index: 3;
}
.snowobj__grain {
  position: absolute; inset: -10%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  opacity: 0.06;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.snowobj__sheen {
  position: absolute;
  width: 46%; height: 30%;
  left: 16%; top: 12%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,255,255,0.95), transparent 72%);
  filter: blur(4px);
  pointer-events: none;
}

/* the finish dusting overlay — blur transition driven by JS */
.snowobj__finish {
  position: absolute; inset: 0;
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.6s var(--mist), filter 0.6s var(--mist), background 0.6s var(--mist);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.snowobj__finish.is-on { opacity: 1; filter: blur(0px); }

/* finishes settle from the top, like powder dusted onto snow */
.snowobj[data-finish="gold"]     .snowobj__finish { background: linear-gradient(180deg, rgba(201,160,99,0.62), rgba(201,160,99,0.30) 38%, rgba(201,160,99,0) 72%), radial-gradient(56% 38% at 50% 14%, rgba(216,184,126,0.60), transparent 72%); }
.snowobj[data-finish="ruby"]     .snowobj__finish { background: linear-gradient(180deg, rgba(162,77,86,0.60), rgba(162,77,86,0.28) 38%, rgba(162,77,86,0) 72%), radial-gradient(56% 38% at 50% 14%, rgba(190,112,120,0.56), transparent 72%); }
.snowobj[data-finish="emerald"]  .snowobj__finish { background: linear-gradient(180deg, rgba(111,138,107,0.60), rgba(111,138,107,0.28) 38%, rgba(111,138,107,0) 72%), radial-gradient(56% 38% at 50% 14%, rgba(143,168,138,0.56), transparent 72%); }
.snowobj[data-finish="midnight"] .snowobj__finish { background: linear-gradient(180deg, rgba(59,59,68,0.56), rgba(59,59,68,0.26) 38%, rgba(59,59,68,0) 72%), radial-gradient(56% 38% at 50% 14%, rgba(92,92,104,0.52), transparent 72%); }
.snowobj[data-finish="sapphire"] .snowobj__finish { background: linear-gradient(180deg, rgba(109,139,165,0.60), rgba(109,139,165,0.28) 38%, rgba(109,139,165,0) 72%), radial-gradient(56% 38% at 50% 14%, rgba(142,170,192,0.56), transparent 72%); }

/* speckle layer for dusting realism */
.snowobj__finish::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='s'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23s)'/%3E%3C/svg%3E");
  opacity: 0.12;
  mix-blend-mode: multiply;
}

.snowobj__bowl {
  position: absolute;
  bottom: 6%;
  width: 84%;
  height: 26%;
  border-radius: 50%;
  background: radial-gradient(closest-side at 50% 30%, #eef1f5, #dde3ea 60%, #ccd5e0);
  box-shadow: inset 0 8px 18px rgba(255,255,255,0.75), 0 22px 40px -22px rgba(120,135,160,0.5);
  z-index: 2;
}
.snowobj__shadow {
  position: absolute;
  bottom: 2%;
  width: 64%; height: 7%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(120,135,160,0.34), transparent 75%);
  filter: blur(6px);
  z-index: 1;
}

/* ---- hidden jewel: cross-section reveal nestled in the snow ---- */
.snowobj__reveal {
  position: absolute;
  left: 50%; top: 54%;
  width: 44%; aspect-ratio: 1;
  transform: translate(-50%, -50%) scale(0.18);
  opacity: 0;
  filter: blur(8px);
  transition: transform 0.7s var(--mist), opacity 0.55s var(--mist), filter 0.6s var(--mist);
  z-index: 6;
  pointer-events: none;
}
.snowobj.show-jewel .snowobj__reveal {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  filter: blur(0px);
}

/* the scooped pocket carved into the snow */
.snowobj__pocket {
  position: absolute; inset: -16%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(223,214,197,0.92) 58%, rgba(244,240,232,0) 100%);
  box-shadow:
    inset 0 16px 30px rgba(150,138,114,0.55),
    inset 0 -8px 16px rgba(255,255,255,0.75),
    0 4px 14px rgba(150,138,114,0.22);
}

.snowobj__jewel { position: absolute; inset: 0; }
.jewel { position: absolute; inset: 0; display: none; }
.jewel::after { /* glossy catch-light */
  content: "";
  position: absolute;
  left: 24%; top: 17%;
  width: 32%; height: 24%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,255,255,0.9), transparent 76%);
  filter: blur(1px);
}
.snowobj[data-jewel="ruby"] .jewel--ruby,
.snowobj[data-jewel="sapphire"] .jewel--sapphire,
.snowobj[data-jewel="emerald"] .jewel--emerald { display: block; }

.jewel--ruby {
  background: radial-gradient(58% 58% at 38% 32%, #d2868e, #a24d56 54%, #6f323a 100%);
  border-radius: 46% 54% 48% 52% / 54% 50% 50% 46%;
  box-shadow: inset 3px 3px 9px rgba(255,255,255,0.35), 0 0 32px rgba(162,77,86,0.45);
}
.jewel--sapphire {
  background: radial-gradient(58% 58% at 38% 32%, #a3bdd4, #6d8ba5 54%, #44607a 100%);
  border-radius: 50%;
  box-shadow: inset 3px 3px 9px rgba(255,255,255,0.35), 0 0 32px rgba(109,139,165,0.45);
}
.jewel--emerald {
  background: radial-gradient(58% 58% at 38% 32%, #a6bba0, #6f8a6b 54%, #4a6147 100%);
  border-radius: 50% 50% 48% 48% / 56% 56% 44% 44%;
  box-shadow: inset 3px 3px 9px rgba(255,255,255,0.35), 0 0 32px rgba(111,138,107,0.4);
}

/* ---- controls ---- */
.builder__controls { display: flex; flex-direction: column; gap: clamp(2rem, 4vw, 3.2rem); }
.step__label {
  display: flex;
  align-items: baseline;
  gap: 0.7em;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.1rem;
  color: var(--charcoal);
}
.step__label em {
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-left: 0.2em;
}
.step__no {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--taupe);
}
.step__hint { font-size: 0.92rem; color: var(--ink-50); }

.swatches { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.swatch {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.85rem 1rem 0.9rem;
  border-radius: 16px;
  border: 1px solid var(--ink-08);
  background: rgba(255,255,255,0.5);
  min-width: 92px;
  transition: border-color 0.45s var(--mist), background-color 0.45s var(--mist),
              transform 0.45s var(--mist), box-shadow 0.45s var(--mist);
}
.swatch:hover { transform: translateY(-3px); border-color: var(--ink-15); box-shadow: 0 16px 30px -22px rgba(150,138,114,0.7); background: rgba(255,255,255,0.85); }
.swatch.is-active { border-color: var(--charcoal); background: #fff; box-shadow: 0 18px 36px -24px rgba(26,26,26,0.5); }
.swatch:focus-visible { outline: 2px solid var(--taupe); outline-offset: 2px; }

.swatch__dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  box-shadow: inset 2px 2px 5px rgba(255,255,255,0.5), inset -2px -2px 6px rgba(0,0,0,0.12);
}
.swatch__dot--gold     { background: radial-gradient(circle at 35% 30%, #e3c694, var(--gold)); }
.swatch__dot--ruby     { background: radial-gradient(circle at 35% 30%, #c5868d, var(--ruby)); }
.swatch__dot--emerald  { background: radial-gradient(circle at 35% 30%, #9bb396, var(--emerald)); }
.swatch__dot--midnight { background: radial-gradient(circle at 35% 30%, #70707b, var(--midnight)); }
.swatch__dot--sapphire { background: radial-gradient(circle at 35% 30%, #9cb6cc, var(--sapphire)); }

.swatch__name {
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}
.swatch__desc {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-50);
}

.builder__reset {
  align-self: flex-start;
  margin-top: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-50);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.4s var(--mist), border-color 0.4s var(--mist);
}
.builder__reset:hover { color: var(--charcoal); border-color: var(--ink-35); }

/* =================================================================
   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 {
  position: relative;
  width: clamp(168px, 22vw, 258px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 30px 52px -30px rgba(120, 135, 160, 0.55),
    inset 0 0 0 1px var(--ink-08);
  transition: transform 0.6s var(--mist), box-shadow 0.6s var(--mist);
}
.menu__media::after { /* soft seat shadow so the bowl sits in the disc */
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 -16px 32px rgba(120, 135, 160, 0.10);
  pointer-events: none;
}
.menu__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.8s var(--mist);
}
.menu__card:hover .menu__media {
  transform: translateY(-6px);
  box-shadow:
    0 42px 64px -28px rgba(120, 135, 160, 0.62),
    inset 0 0 0 1px var(--ink-15);
}
.menu__card:hover .menu__media img { transform: scale(1.06); }

.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;
}

/* =================================================================
   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__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

/* CSS architectural interior (media-slot stand-in) */
.snowroom__visual { position: relative; }
.snowroom__room {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(170deg, #efe7d8 0%, #e3d8c4 55%, #d9ccb4 100%);
  box-shadow: 0 50px 90px -50px rgba(120,104,76,0.7);
}
.room__wall {
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 70% 18%, rgba(255,248,232,0.85), transparent 60%),
    linear-gradient(180deg, rgba(255,250,240,0.5), transparent 40%);
}
.room__arch {
  position: absolute;
  left: 12%; top: 14%;
  width: 46%; height: 64%;
  border-radius: 50% 50% 8% 8% / 40% 40% 4% 4%;
  background: linear-gradient(160deg, #d2c4a8, #c4b393);
  box-shadow: inset 0 10px 30px rgba(255,255,255,0.35), inset 0 -20px 40px rgba(120,104,76,0.3);
}
.room__arch::after { /* niche */
  content: "";
  position: absolute;
  left: 50%; top: 22%;
  width: 56%; height: 60%;
  transform: translateX(-50%);
  border-radius: 50% 50% 6% 6% / 40% 40% 4% 4%;
  background: linear-gradient(160deg, #e7dcc6, #d8c9ab);
  box-shadow: inset 0 6px 18px rgba(120,104,76,0.25);
}
.room__counter {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 26%;
  background: linear-gradient(180deg, #b89a6e, #9c7f54);
  box-shadow: inset 0 6px 16px rgba(255,240,214,0.4), 0 -10px 30px rgba(120,104,76,0.25);
}
.room__counter::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 8px;
  background: linear-gradient(180deg, rgba(255,248,232,0.7), transparent);
}
.room__light {
  position: absolute;
  right: 16%; top: 8%;
  width: 16%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(255,250,235,0.95), rgba(255,244,222,0.2) 70%, transparent);
  filter: blur(2px);
}
.room__stool {
  position: absolute;
  right: 18%; bottom: 26%;
  width: 16%; height: 20%;
  border-radius: 14px 14px 10px 10px;
  background: linear-gradient(160deg, #caa877, #a9885c);
  box-shadow: 0 14px 24px -14px rgba(120,104,76,0.7);
}
.snowroom__visual-cap {
  margin-top: 1.1rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  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: 38ch; margin-bottom: 2.6rem; }

.snowroom__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 0 0 2.8rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ink-15);
}
.snowroom__details dt {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.8rem;
}
.snowroom__details dd { margin: 0; font-size: 0.98rem; color: var(--ink-70); line-height: 1.7; }
.hours__row { display: flex; justify-content: space-between; gap: 1.2rem; max-width: 16rem; }
.hours__status {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-top: 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.hours__status::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 0 rgba(147,168,119,0.6);
  animation: pulse 2.4s var(--mist) infinite;
}
.hours__status[data-open="false"]::before { background: var(--ruby); animation: none; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(147,168,119,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(147,168,119,0); }
  100% { box-shadow: 0 0 0 0 rgba(147,168,119,0); }
}

/* =================================================================
   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,
.swatch__desc,
.snowroom__details dt,
.footer__tag,
.hours__status,
.snowroom__visual-cap,
.step__label em,
.builder__reset,
.step__no,
.why__index {
  font-family: var(--label);
}

/* =================================================================
   DISPLAY HEADINGS → TAN Tangkiwood, white-on-black (per the menu)
   ================================================================= */
.hero__title,
.concept__title,
.builder__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: var(--oat);
  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; }
  .builder__stage { grid-template-columns: 1fr; }
  .snowroom__grid { grid-template-columns: 1fr; }
  .story__grid { grid-template-columns: 1fr; }
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .snowobj { max-width: 420px; }
  .snowroom__visual { max-width: 460px; margin-inline: auto; }
  .story__media { max-width: 520px; }
}

@media (max-width: 760px) {
  :root { --nav-h: 64px; }
  .concept__grid { grid-template-columns: 1fr; gap: 2rem; }
  .why__grid { grid-template-columns: 1fr; gap: 2.6rem; }
  .snowroom__details { grid-template-columns: 1fr; gap: 1.8rem; }
  .nav__cta span { font-size: 0; }
  .nav__cta span::after { content: "visit"; font-size: 0.74rem; }
  .nav__cta { padding: 0.8em 1.3em; }
}

@media (max-width: 460px) {
  .hero__meta { gap: 0.5rem; font-size: 0.62rem; }
  .swatch { flex: 1 1 calc(50% - 0.55rem); min-width: 0; }
  .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; }
}
