/* ===================================================================
   POLAR BROS — Nitro Ice Cream
   Editorial · Black / White / Cream · Bold
   =================================================================== */

:root {
  --black:   #0e0d0b;
  --near:    #17150f;
  --cream:   #efe6d5;   /* warm cream */
  --cream-2: #f6f0e4;   /* lighter paper */
  --white:   #ffffff;
  --ink:     #14120c;   /* text on cream */
  --muted:   #6b6559;   /* muted on cream */
  --muted-d: #a49c8c;   /* muted on dark */
  --line:    rgba(20, 18, 12, 0.16);
  --line-d:  rgba(239, 230, 213, 0.16);

  /* Brand: Rockwell (slab) for display, League Spartan for UI/body.
     Zilla Slab loads as a web fallback where Rockwell isn't installed. */
  --serif: 'Rockwell', 'Rockwell Nova', 'Zilla Slab', Georgia, serif;
  --sans:  'League Spartan', 'Space Grotesk', system-ui, sans-serif;
  /* Heavy geometric slab for the wordmark lockup — matches the logo type. */
  --wordmark: 'Roboto Slab', 'Rockwell', 'Zilla Slab', Georgia, serif;

  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 72px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.62;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
i { font-style: italic; }
/* keep anchored sections clear of the fixed nav bar */
section[id] { scroll-margin-top: 84px; }

/* ---------- Shared ---------- */
.kicker {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-block;
  margin-bottom: 26px;
}
.kicker--light { color: var(--muted-d); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 17px 30px; border-radius: 0;
  border: 1px solid transparent; cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s;
}
.btn--light { background: var(--cream); color: var(--black); }
.btn--light:hover { background: var(--white); }
.btn--line-light { background: transparent; color: var(--cream); border-color: var(--line-d); }
.btn--line-light:hover { background: var(--cream); color: var(--black); border-color: var(--cream); }
.btn--dark { background: var(--black); color: var(--cream); }
.btn--dark:hover { background: var(--near); }
.btn--full { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 1100;
  transition: background 0.4s var(--ease), color 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
  color: var(--cream);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 22px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: padding 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(239, 230, 213, 0.9);
  backdrop-filter: saturate(150%) blur(14px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}
.nav.scrolled .nav__inner { padding-top: 14px; padding-bottom: 14px; }

.brand { display: inline-flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; line-height: 1; }
.brand__name {
  font-family: var(--wordmark); font-weight: 900; font-style: normal; text-transform: uppercase;
  font-size: 1.32rem; letter-spacing: -0.01em; line-height: 0.9;
}
.brand__name sup { font-size: 1em; top: 0; vertical-align: baseline; }
.brand__tag {
  font-family: var(--sans); font-weight: 600; text-transform: uppercase;
  font-size: 0.5rem; letter-spacing: 0.34em; margin-top: 5px; opacity: 0.9;
}

.nav__links { display: flex; gap: 38px; }
.nav__links a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  position: relative; opacity: 0.85; transition: opacity 0.25s;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: currentColor; transition: width 0.35s var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__book,
.nav__buy {
  font-family: var(--sans); font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 11px 20px; background: var(--cream); color: var(--black);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.25s var(--ease);
}
.nav__book:hover,
.nav__buy:hover { transform: translateY(-1px); background: var(--white); }
.nav.scrolled .nav__book,
.nav.scrolled .nav__buy { background: var(--black); color: var(--cream); }
.nav.scrolled .nav__book:hover,
.nav.scrolled .nav__buy:hover { background: var(--near); }

.nav__toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 1.5px; background: currentColor; transition: 0.3s var(--ease); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--pad) clamp(32px, 4vw, 56px);
  color: var(--cream); overflow: hidden;
  background: var(--black);
}
.hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 42%;
  filter: grayscale(0.12) contrast(1.04) brightness(0.9);
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,13,11,0.62) 0%, rgba(14,13,11,0.10) 24%, rgba(14,13,11,0.14) 52%, rgba(14,13,11,0.9) 100%);
}
.hero__foot { position: relative; z-index: 2; }

/* ---------- Nitro fog (rolls off the bottom of the hero) ---------- */
.hero__fog {
  position: absolute; inset: 0; z-index: 1; overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 16%, #000 66%);
          mask-image: linear-gradient(180deg, transparent 16%, #000 66%);
}
.fog { position: absolute; will-change: transform, opacity; }
.fog--a, .fog--b, .fog--c {
  left: 50%; bottom: -20%; width: 150%; height: 75%;
  background: radial-gradient(55% 100% at 50% 100%,
    rgba(240, 245, 251, 0.5) 0%,
    rgba(224, 234, 247, 0.26) 32%,
    rgba(210, 226, 244, 0.07) 58%,
    transparent 76%);
  mix-blend-mode: screen;
}
.fog--a { filter: blur(26px); opacity: 0.85; animation: fog-a 24s ease-in-out infinite; }
.fog--b { width: 178%; height: 68%; bottom: -22%; filter: blur(40px); opacity: 0.62; animation: fog-b 32s ease-in-out infinite -9s; }
.fog--c { width: 128%; height: 56%; bottom: -10%; filter: blur(18px); opacity: 0.52; animation: fog-c 19s ease-in-out infinite -13s; }
.fog--tex {
  left: 50%; bottom: -14%; width: 160%; height: 66%;
  mix-blend-mode: screen; opacity: 0.12; filter: blur(4px);
  animation: fog-tex 46s linear infinite;
}
@keyframes fog-a {
  0%, 100% { transform: translate(-52%, 0)   scale(1);    }
  50%      { transform: translate(-48%, -3%) scale(1.07); }
}
@keyframes fog-b {
  0%, 100% { transform: translate(-49%, 0)   scale(1.05); }
  50%      { transform: translate(-53%, -5%) scale(1.14); }
}
@keyframes fog-c {
  0%, 100% { transform: translate(-50%, 0)   scale(1);    }
  50%      { transform: translate(-47%, -6%) scale(1.1);  }
}
@keyframes fog-tex {
  0%   { transform: translate(-52%, 0)   scale(1.2);  }
  100% { transform: translate(-46%, -7%) scale(1.42); }
}
@media (prefers-reduced-motion: reduce) {
  .fog, .bfog { animation: none !important; }
}
.hero__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.5rem, 7vw, 5.4rem);
  line-height: 1.0; letter-spacing: -0.01em;
  text-transform: none;
}
.hero__row {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 40px;
  margin-top: clamp(24px, 3vw, 40px); flex-wrap: wrap;
}
.hero__lead { max-width: 40ch; font-size: 1.05rem; color: rgba(239,230,213,0.9); }
.hero__meta {
  display: flex; gap: 28px; align-items: center;
  margin-top: clamp(28px, 3vw, 44px);
  padding-top: 22px; border-top: 1px solid var(--line-d);
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(239,230,213,0.8);
}
.hero__meta .hero__scroll { margin-left: auto; opacity: 0.7; }

/* ---------- Story ---------- */
.story { max-width: var(--maxw); margin: 0 auto; padding: clamp(64px, 8vw, 120px) var(--pad); }
.story__statement {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.9rem, 5vw, 3.8rem); line-height: 1.04; letter-spacing: -0.005em;
  margin-bottom: clamp(36px, 5vw, 68px);
}
.story__statement i { font-weight: 500; }
.story__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 90px);
  padding-top: 40px; border-top: 1px solid var(--line);
}
.story__lead { font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.8rem); line-height: 1.35; }
.story__grid p:last-child { color: var(--muted); font-size: 1.02rem; max-width: 46ch; }

/* ---------- Process ---------- */
.process {
  background: var(--black); color: var(--cream);
  display: grid; grid-template-columns: 0.92fr 1.08fr; align-items: stretch;
}
.process__media { position: relative; min-height: 520px; overflow: hidden; }
.process__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.2) contrast(1.05); }
.process__body { padding: clamp(56px, 7vw, 104px) var(--pad); }
.process__title {
  font-family: var(--serif); font-weight: 600; letter-spacing: -0.005em;
  font-size: clamp(1.85rem, 3.8vw, 3.2rem); line-height: 1.04; margin-bottom: 30px;
}
.process__intro { color: var(--muted-d); font-size: 1.08rem; max-width: 48ch; margin-bottom: 20px; }
.process__intro i { color: var(--cream); }

.steps { list-style: none; margin-top: 30px; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: baseline;
  padding: 28px 0; border-top: 1px solid var(--line-d);
}
.step:last-child { border-bottom: 1px solid var(--line-d); }
.step__num { font-family: var(--serif); font-size: 1.5rem; font-style: italic; color: var(--muted-d); }
.step h3 { font-family: var(--serif); font-weight: 500; font-size: 1.7rem; margin-bottom: 4px; }
.step p { color: var(--muted-d); font-size: 0.98rem; max-width: 42ch; }

/* ---------- Offerings index ---------- */
.offerings { max-width: var(--maxw); margin: 0 auto; padding: clamp(40px, 5vw, 72px) var(--pad) clamp(56px, 7vw, 104px); }
.offerings__head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: 50px; }
.offerings__title { font-family: var(--serif); font-weight: 600; font-size: clamp(1.8rem, 3.4vw, 3rem); letter-spacing: -0.005em; line-height: 1.02; }

.index { list-style: none; border-top: 1px solid var(--line); }
.index__row {
  position: relative;
  display: grid; grid-template-columns: 56px 1fr minmax(200px, 300px);
  align-items: center; gap: clamp(16px, 3vw, 36px);
  padding: clamp(26px, 3vw, 44px) 8px;
  border-bottom: 1px solid var(--line);
}
.index__media { overflow: hidden; border-radius: 2px; }
.index__media img {
  display: block; width: 100%; aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.index__row:hover .index__media img { transform: scale(1.04); }
.index__row > * { position: relative; z-index: 1; }
.index__no { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.1em; color: var(--muted); align-self: start; padding-top: 6px; }
.index__block { display: grid; gap: 10px; }
.index__name { font-family: var(--serif); font-weight: 600; font-size: clamp(1.45rem, 2.8vw, 2.3rem); letter-spacing: 0; line-height: 1.05; }
.index__desc { color: var(--muted); font-size: 0.98rem; max-width: 62ch; }
.index__tags { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.index__cta {
  justify-self: start; margin-top: 8px;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 11px 22px; border: 1px solid var(--line); color: var(--ink);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s;
}
.index__cta:hover { background: var(--black); color: var(--cream); border-color: var(--black); }

/* ---------- Flavors ---------- */
.flavors { max-width: var(--maxw); margin: 0 auto; padding: clamp(60px, 7vw, 108px) var(--pad) clamp(40px, 5vw, 64px); }
.flavors__head { max-width: 640px; margin-bottom: clamp(40px, 6vw, 70px); }
.flavors__title { font-family: var(--serif); font-weight: 600; font-size: clamp(1.85rem, 3.8vw, 3.2rem); line-height: 1.04; letter-spacing: -0.005em; margin-bottom: 24px; }
.flavors__title i { font-weight: 500; }
.flavors__lead { color: var(--muted); font-size: 1.05rem; max-width: 52ch; }
.flavors__list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(30px, 5vw, 80px); border-top: 1px solid var(--line); }
.flavor { display: grid; grid-template-columns: auto 1fr; column-gap: 20px; align-items: baseline; padding: clamp(22px, 2.4vw, 30px) 4px; border-bottom: 1px solid var(--line); }
.flavor__no { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.1em; color: var(--muted); }
.flavor__name { font-family: var(--serif); font-weight: 600; font-size: clamp(1.3rem, 2.2vw, 1.85rem); line-height: 1.06; letter-spacing: 0; }
.flavor__desc { grid-column: 2; color: var(--muted); font-size: 0.96rem; margin-top: 6px; max-width: 40ch; }
.flavors__foot { margin-top: clamp(30px, 4vw, 50px); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

/* ---------- Gallery ---------- */
.gallery { max-width: var(--maxw); margin: 0 auto; padding: clamp(44px, 5vw, 72px) var(--pad) clamp(60px, 7vw, 108px); }
.gallery__head { margin-bottom: clamp(36px, 5vw, 60px); }
.gallery__title { font-family: var(--serif); font-weight: 600; font-size: clamp(1.8rem, 3.4vw, 3rem); letter-spacing: -0.005em; line-height: 1.02; margin-bottom: 14px; }
.gallery__lead { color: var(--muted); font-size: 1.02rem; }
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery__item { position: relative; margin: 0; overflow: hidden; background: var(--cream-2); aspect-ratio: 4 / 5; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.1); transition: transform 0.6s var(--ease), filter 0.6s; }
.gallery__item:hover img { transform: scale(1.04); filter: none; }
@media (max-width: 900px) { .gallery__grid { grid-template-columns: repeat(2, 1fr); } .flavors__list { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .gallery__grid { grid-template-columns: 1fr; gap: 14px; } }

/* ---------- Experience band ---------- */
.band { position: relative; height: clamp(420px, 70vh, 680px); overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--black); }
.band__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.band__scrim { position: absolute; inset: 0; background: rgba(14,13,11,0.4); }
.band__fog {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 10%, #000 60%);
          mask-image: linear-gradient(180deg, transparent 10%, #000 60%);
}
.bfog {
  position: absolute; left: 50%; bottom: -20%; width: 165%; height: 82%;
  background: radial-gradient(55% 100% at 50% 100%,
    rgba(240, 245, 251, 0.5) 0%,
    rgba(224, 234, 247, 0.24) 34%,
    rgba(210, 226, 244, 0.07) 60%,
    transparent 78%);
  mix-blend-mode: screen; will-change: transform, opacity;
}
.bfog--a { filter: blur(30px); opacity: 0.62; animation: fog-a 26s ease-in-out infinite; }
.bfog--b { width: 185%; height: 66%; bottom: -26%; filter: blur(46px); opacity: 0.46; animation: fog-b 34s ease-in-out infinite -10s; }
.bfog--c { width: 130%; height: 54%; bottom: -12%; filter: blur(20px); opacity: 0.4; animation: fog-c 21s ease-in-out infinite -14s; }
.band__quote {
  position: relative; z-index: 1; color: var(--white);
  font-family: var(--serif); font-weight: 500; font-style: italic;
  font-size: clamp(1.7rem, 4vw, 3.4rem); line-height: 1.08; letter-spacing: 0;
  padding: 0 var(--pad); text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}

/* ---------- Chef ---------- */
.chef {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(64px, 8vw, 120px) var(--pad) clamp(40px, 5vw, 72px);
  display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(40px, 7vw, 100px); align-items: center;
}
.chef__name { font-family: var(--serif); font-weight: 600; font-size: clamp(2.4rem, 5.5vw, 4.6rem); line-height: 0.98; letter-spacing: -0.005em; margin-bottom: 34px; }
.chef__name i { font-weight: 500; }
.chef__text p { color: var(--muted); font-size: 1.05rem; margin-bottom: 18px; max-width: 46ch; }
.chef__figure { position: relative; }
.chef__figure img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; object-position: center; }
.chef__figure figcaption {
  margin-top: 20px; font-family: var(--serif); font-style: italic; font-size: 1.15rem; line-height: 1.4; color: var(--ink);
}
.chef__figure figcaption span { display: block; margin-top: 10px; font-family: var(--sans); font-style: normal; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

/* ---------- Contact ---------- */
.contact {
  background: var(--black); color: var(--cream);
  padding: clamp(64px, 8vw, 120px) var(--pad);
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-areas: "head form" "meta form";
  gap: clamp(40px, 5vw, 64px) clamp(50px, 8vw, 120px); align-items: start;
}
.contact__head { grid-area: head; }
.form { grid-area: form; }
.contact__meta { grid-area: meta; }
.contact__title { font-family: var(--serif); font-weight: 600; font-size: clamp(2.8rem, 6vw, 5.4rem); line-height: 1.0; letter-spacing: -0.01em; margin-bottom: 30px; }
.contact__lead { color: var(--muted-d); font-size: 1.08rem; max-width: 40ch; margin-bottom: 44px; }
.contact__meta { list-style: none; display: grid; gap: 22px; }
.contact__meta li { display: flex; flex-direction: column; gap: 4px; padding-bottom: 18px; border-bottom: 1px solid var(--line-d); }
.contact__meta span { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-d); }
.contact__meta a, .contact__meta li { font-family: var(--serif); font-size: 1.2rem; }
.contact__meta a:hover { text-decoration: underline; text-underline-offset: 4px; }

.form { display: grid; gap: 30px; padding-top: 8px; }
.form__field { position: relative; }
.form__field input, .form__field textarea, .form__field select {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line-d);
  color: var(--cream); font-family: var(--sans); font-size: 1.05rem;
  padding: 12px 0; resize: vertical; transition: border-color 0.3s;
}
.form__field select option { color: #111; }
.form__field label {
  position: absolute; left: 0; top: 12px; color: var(--muted-d);
  font-size: 1.05rem; pointer-events: none; transition: transform 0.3s var(--ease), font-size 0.3s, color 0.3s;
}
.form__field .form__label--static { position: static; display: block; margin-bottom: 10px; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-d); }
.form__note { margin-top: -14px; font-size: 0.82rem; letter-spacing: 0.02em; color: var(--muted-d); }
.form__field--select { position: relative; }
.form__field--select select { appearance: none; -webkit-appearance: none; padding-right: 26px; cursor: pointer; }
.form__field--select::after { content: '↓'; position: absolute; right: 2px; bottom: 12px; pointer-events: none; color: var(--muted-d); font-size: 0.9rem; }
.form__field input:focus, .form__field textarea:focus, .form__field select:focus { outline: none; border-color: var(--cream); }
.form__field input:focus + label,
.form__field input:not(:placeholder-shown) + label,
.form__field textarea:focus + label,
.form__field textarea:not(:placeholder-shown) + label {
  transform: translateY(-24px); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-d);
}
.form .btn { margin-top: 6px; }

/* ---------- Footer ---------- */
.footer { background: var(--cream-2); padding: clamp(48px, 6vw, 84px) var(--pad) 40px; }
.footer__logo { width: clamp(84px, 10vw, 120px); height: auto; margin-bottom: 28px; }
.footer__mark { display: inline-block; text-align: center; margin-bottom: 60px; }
.footer__word {
  font-family: var(--wordmark); font-weight: 900; font-style: normal; text-transform: uppercase;
  font-size: clamp(2.4rem, 10vw, 7.5rem); line-height: 0.9; letter-spacing: -0.02em;
  display: block; color: var(--ink);
}
.footer__word sup { font-size: 1em; top: 0; vertical-align: baseline; }
.footer__tag {
  font-family: var(--sans); font-weight: 600; text-transform: uppercase;
  font-size: clamp(0.7rem, 1.6vw, 1.05rem); letter-spacing: 0.42em;
  display: block; margin-top: 14px; color: var(--muted);
}
.footer__cols { display: grid; grid-template-columns: repeat(2, auto) 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line); }
.footer__cols nav { display: flex; flex-direction: column; gap: 12px; }
.footer__cols nav span { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.footer__cols nav a { font-size: 0.98rem; transition: opacity 0.25s; }
.footer__cols nav a:hover { opacity: 0.6; }
.footer__note { justify-self: end; max-width: 34ch; text-align: right; color: var(--muted); font-size: 0.95rem; }
.footer__base { display: flex; justify-content: space-between; gap: 20px; padding-top: 26px; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); flex-wrap: wrap; }

/* ---------- Page header (interior pages) ---------- */
.pagehead { background: var(--black); color: var(--cream); padding: clamp(140px, 16vw, 220px) var(--pad) clamp(60px, 8vw, 100px); }
.pagehead__inner { max-width: var(--maxw); margin: 0 auto; }
.pagehead__title { font-family: var(--serif); font-weight: 600; font-size: clamp(2.6rem, 7vw, 5rem); line-height: 1.0; letter-spacing: -0.01em; margin-bottom: 20px; }
.pagehead__lead { color: var(--muted-d); font-size: 1.08rem; max-width: 48ch; }

/* ---------- Stockists (map page) ---------- */
.stockists { max-width: var(--maxw); margin: 0 auto; padding: clamp(70px, 9vw, 120px) var(--pad) clamp(80px, 10vw, 140px); }
.stockists__map { position: relative; z-index: 0; width: 100%; aspect-ratio: 16 / 9; border: 1px solid var(--line); margin-bottom: clamp(44px, 6vw, 72px); background: var(--cream-2); overflow: hidden; }
.stockists__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.stockists__map-empty { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--muted); font-size: 0.9rem; letter-spacing: 0.02em; padding: 24px; }
#map { width: 100%; height: 100%; background: var(--cream-2); }
#map .pb-pin span {
  display: block; width: 16px; height: 16px; border-radius: 50%;
  background: var(--black); border: 3px solid var(--cream);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}
.leaflet-popup-content { font-family: var(--sans); font-size: 0.9rem; line-height: 1.45; color: var(--ink); }
.leaflet-popup-content strong { font-family: var(--serif); font-weight: 600; font-size: 1rem; }
.leaflet-popup-content a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.leaflet-container { font-family: var(--sans); }
.stockists__grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 clamp(30px, 5vw, 70px); border-top: 1px solid var(--line); }
.place { padding: clamp(24px, 2.6vw, 34px) 0; border-bottom: 1px solid var(--line); }
.place__city { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.place__name { font-family: var(--serif); font-weight: 600; font-size: 1.4rem; line-height: 1.12; margin-bottom: 8px; }
.place__addr { color: var(--muted); font-size: 0.95rem; line-height: 1.5; }
.place__addr a { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 900px) { .stockists__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .stockists__grid { grid-template-columns: 1fr; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .process { grid-template-columns: 1fr; }
  .process__media { min-height: 60vh; }
  .chef { grid-template-columns: 1fr; }
  .chef__figure { max-width: 460px; }
  .contact { grid-template-columns: 1fr; grid-template-areas: "head" "form" "meta"; }
  .contact__meta { margin-top: 8px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__note { grid-column: 1 / -1; justify-self: start; text-align: left; }
  .index__row { grid-template-columns: 36px 1fr; align-items: start; }
  .index__media { grid-column: 2; margin-top: 18px; max-width: 460px; }
}

@media (max-width: 640px) {
  .nav__links, .nav__book { display: none; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); height: 100vh;
    background: var(--black); color: var(--cream);
    flex-direction: column; justify-content: center; gap: 30px; padding: 48px;
    transform: translateX(100%); transition: transform 0.45s var(--ease);
  }
  .nav__links.open { display: flex; transform: none; }
  .nav__links a { font-size: 1rem; }
  .nav__toggle { display: flex; z-index: 101; }
  .nav__toggle.active span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
  .nav__toggle.active span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .story__grid { grid-template-columns: 1fr; }
  .hero__row { flex-direction: column; align-items: flex-start; gap: 26px; }
  .hero__meta { flex-wrap: wrap; gap: 16px 22px; }
  .hero__meta .hero__scroll { display: none; }
  .footer__cols { grid-template-columns: 1fr; }
}

/* ---------- Sticky mobile CTA bar ---------- */
.mobar { display: none; }
@media (max-width: 640px) {
  .mobar {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(14, 13, 11, 0.92);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(239, 230, 213, 0.14);
  }
  .mobar__btn {
    display: flex; align-items: center; justify-content: center;
    height: 46px; border-radius: 3px;
    font-family: var(--sans); font-weight: 600; font-size: 0.8rem;
    letter-spacing: 0.12em; text-transform: uppercase;
  }
  .mobar__btn--ghost { color: var(--cream); border: 1px solid rgba(239, 230, 213, 0.4); }
  .mobar__btn--solid { background: var(--cream); color: var(--black); }
  /* keep the last section clear of the fixed bar */
  .contact { padding-bottom: calc(clamp(64px, 8vw, 120px) + 76px); }
  .footer { padding-bottom: calc(clamp(48px, 6vw, 84px) + 64px); }
}
