/* ============================================================
   The Mimosa House — site.css
   Brunch + bubbles. Cream paper, black ink, mint celebration.
   ============================================================ */

/* ---------- 0. Fonts ---------- */
@font-face {
  font-family: "Glacial Indifference";
  src: url("fonts/GlacialIndifference-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Glacial Indifference";
  src: url("fonts/GlacialIndifference-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neutra Text";
  src: url("fonts/NeutraText-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neutra Text";
  src: url("fonts/NeutraText-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neutra Text";
  src: url("fonts/NeutraText-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neutra Text";
  src: url("fonts/NeutraText-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
/* Use BoldItalic as our italic body too — Neutra ships limited italic cuts */
@font-face {
  font-family: "Neutra Text Italic";
  src: url("fonts/NeutraText-BoldItalic.otf") format("opentype");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Amsterdam";
  src: url("fonts/AmsterdamOne.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Amsterdam";
  src: url("fonts/AmsterdamOneSlant.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Amsterdam Display";
  src: url("fonts/AmsterdamFour.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- 1. Tokens ---------- */
:root {
  --mh-cream:      #FFFBEF;
  --mh-cream-warm: #F7F2E0;
  --mh-mint:       #C1E6DF;
  --mh-mint-deep:  #8FC8BD;
  --mh-teal:       #1f7a6e;
  --mh-black:      #000000;
  --mh-ink-soft:   #1A1A1A;
  --mh-ink-mute:   #5A5A55;
  --mh-rule:       #E6E0CC;

  /* Type families — provided fonts.
     Display = Glacial Indifference Bold (wall-painted feel)
     Body    = Neutra Text (warm humanist sans, real italics)
     Script  = Amsterdam (handwritten flourishes) */
  --mh-display:  "Glacial Indifference", "Helvetica Neue", "Arial Black", Arial, sans-serif;
  --mh-body:     "Neutra Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mh-italic:   "Neutra Text Italic", "Neutra Text", Georgia, "Times New Roman", serif;
  --mh-script:   "Amsterdam", "Amsterdam Display", "Apple Chancery", cursive;
  --mh-mono:     ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --mh-max:      1320px;
  --mh-gutter:   clamp(20px, 4vw, 56px);
  --mh-nav-h:    72px;
}

/* ---------- 2. Reset-ish ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--mh-cream);
  color: var(--mh-ink-soft);
  font-family: var(--mh-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
hr { border: 0; border-top: 1px solid var(--mh-rule); margin: 0; }

::selection { background: var(--mh-mint); color: var(--mh-black); }

/* ---------- 3. Typography ---------- */
.display {
  font-family: var(--mh-display);
  font-weight: 900;
  font-stretch: 90%;
  letter-spacing: -0.01em;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--mh-black);
}

.eyebrow {
  font-family: var(--mh-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--mh-black);
}

.italic-lead {
  font-family: var(--mh-body);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--mh-ink-soft);
}

.script {
  font-family: var(--mh-script);
  font-style: italic;
}

h1, h2, h3, h4 { margin: 0; }

.h-hero {
  font-family: var(--mh-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 0.88;
  font-size: clamp(56px, 10vw, 168px);
  color: var(--mh-black);
}

.h-section {
  font-family: var(--mh-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.92;
  font-size: clamp(40px, 6vw, 88px);
  color: var(--mh-black);
}

.h-card {
  font-family: var(--mh-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 0.95;
  font-size: clamp(28px, 3.2vw, 44px);
  color: var(--mh-black);
}

p { margin: 0 0 1em; }
.lede {
  font-family: var(--mh-body);
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.45;
  font-style: italic;
  color: var(--mh-ink-soft);
}

/* Mint highlight behind a word */
.mint-mark {
  background: linear-gradient(transparent 62%, var(--mh-mint) 62%);
  padding: 0 0.08em;
}

/* Mint underline (animated draw on hover for links) */
.mh-underline {
  background-image: linear-gradient(var(--mh-mint), var(--mh-mint));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 6px;
  padding-bottom: 2px;
}
.mh-link {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  background-image: linear-gradient(var(--mh-mint), var(--mh-mint));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 4px;
  transition: background-size 300ms ease;
}
.mh-link:hover { background-size: 100% 4px; }

/* ---------- 4. Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--mh-max);
  margin: 0 auto;
  padding: 0 var(--mh-gutter);
}
.container-wide {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 var(--mh-gutter);
}
.section { padding: clamp(64px, 9vw, 140px) 0; }
.section-tight { padding: clamp(40px, 6vw, 80px) 0; }
.warm { background: var(--mh-cream-warm); }
.ink { background: var(--mh-black); color: var(--mh-cream); }
.ink .display, .ink h1, .ink h2, .ink h3 { color: var(--mh-cream); }
.center { text-align: center; }

/* ---------- 5. Navigation ---------- */
.mh-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255, 251, 239, 0.72);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, color 240ms ease;
}
.mh-nav.is-scrolled {
  background: var(--mh-mint);
  border-bottom-color: var(--mh-mint-deep);
}

/* Transparent nav over the homepage's dark hero photo.
   Toggled off as soon as the user scrolls (then standard nav resumes). */
body.home .mh-nav:not(.is-scrolled) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: var(--mh-cream);
}
body.home .mh-nav:not(.is-scrolled) .mh-nav__link,
body.home .mh-nav:not(.is-scrolled) .mh-nav__toggle { color: var(--mh-cream); }
body.home .mh-nav:not(.is-scrolled) .mh-nav__link::after { background: var(--mh-cream); }
body.home .mh-nav:not(.is-scrolled) .mh-nav__toggle-bar { background: var(--mh-cream); }
body.home .mh-nav__logo {
  /* The hero already shows the brand — hide the small nav logo on the index page entirely. */
  display: none;
}
.mh-nav__row {
  height: var(--mh-nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mh-nav__brand {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.mh-nav__links {
  display: flex;
  gap: clamp(18px, 2.8vw, 40px);
  align-items: center;
}
.mh-nav__links--right { /* legacy — same as base now */ }
.mh-nav__link {
  font-family: var(--mh-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--mh-black);
  padding: 6px 2px;
  position: relative;
}
.mh-nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--mh-black);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms ease;
}
.mh-nav__link:hover::after,
.mh-nav__link.is-active::after { transform: scaleX(1); }

.mh-nav__brand {
  font-family: var(--mh-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.mh-nav__brand-mark {
  width: 28px; height: 28px;
  border: 1.5px solid var(--mh-black);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}
.mh-nav__logo {
  height: 38px;
  width: auto;
  display: block;
}
@media (max-width: 540px) {
  .mh-nav__logo { height: 30px; }
}

/* Mobile nav toggle */
.mh-nav__toggle { display: none; }
@media (max-width: 820px) {
  .mh-nav__links { display: none; }
  .mh-nav__toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mh-display);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .mh-nav__toggle-bar { width: 22px; height: 2px; background: var(--mh-black); display: block; }
  .mh-nav.is-open .mh-nav__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    position: absolute;
    top: var(--mh-nav-h);
    left: 0; right: 0;
    background: var(--mh-mint);
    padding: 20px var(--mh-gutter) 28px;
    border-bottom: 1px solid var(--mh-mint-deep);
  }
}

.nav-spacer { height: var(--mh-nav-h); }

/* ---------- 6. Buttons & pills ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--mh-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  border: 1.5px solid var(--mh-black);
  background: var(--mh-mint);
  color: var(--mh-black);
  transition: background 200ms ease, transform 200ms ease;
  cursor: pointer;
}
.btn:hover { background: var(--mh-mint-deep); transform: translateY(-1px); }
.btn--ink { background: var(--mh-black); color: var(--mh-cream); border-color: var(--mh-black); }
.btn--ink:hover { background: var(--mh-ink-soft); }
.btn--ghost { background: transparent; }
.btn--ghost:hover { background: var(--mh-mint); transform: translateY(-1px); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--mh-mint);
  border: 1.5px solid var(--mh-black);
  border-radius: 999px;
  font-family: var(--mh-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--mh-black);
  transition: background 200ms ease, transform 200ms ease;
}
.pill:hover { background: var(--mh-mint-deep); transform: translateY(-1px); }
.pill--ghost { background: transparent; }
.pill--ghost:hover { background: var(--mh-mint); }

.pill-row { display: flex; flex-wrap: wrap; gap: 12px; }

.menu-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(8px, 1vw, 16px);
}
.menu-cta-row .pill {
  padding: 16px 26px;
  font-size: 12px;
}

/* ---------- 7. Placeholder image boxes ---------- */
.ph {
  position: relative;
  background: var(--mh-cream-warm);
  border: 1px solid var(--mh-mint-deep);
  color: var(--mh-ink-mute);
  font-family: var(--mh-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 18px,
    rgba(193, 230, 223, 0.35) 18px 19px
  );
}
.ph__label {
  background: var(--mh-cream);
  padding: 6px 10px;
  border: 1px solid var(--mh-mint-deep);
  border-radius: 2px;
  max-width: 80%;
  text-transform: uppercase;
}
.ph--dark {
  background-color: var(--mh-black);
  color: var(--mh-mint);
  border-color: var(--mh-mint);
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 18px,
    rgba(193, 230, 223, 0.12) 18px 19px
  );
}
.ph--dark .ph__label { background: var(--mh-black); color: var(--mh-mint); border-color: var(--mh-mint); }

.ph--1x1 { aspect-ratio: 1 / 1; }
.ph--4x3 { aspect-ratio: 4 / 3; }
.ph--3x4 { aspect-ratio: 3 / 4; }
.ph--3x2 { aspect-ratio: 3 / 2; }
.ph--16x9 { aspect-ratio: 16 / 9; }
.ph--2x3 { aspect-ratio: 2 / 3; }

/* Logo placeholder */
.logo-ph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1.5px dashed var(--mh-mint-deep);
  font-family: var(--mh-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mh-ink-mute);
  background: var(--mh-cream);
}

/* ---------- 8. Location chooser (home) ---------- */
.chooser {
  padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 100px);
}

/* Intro band — white subway tile pattern (real offset brick layout) */
.chooser-intro {
  padding: clamp(80px, 11vw, 130px) 0 clamp(72px, 9vw, 100px);
  background-color: #d8d0bd; /* warm grey grout */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='120' viewBox='0 0 240 120'><g fill='%23fbf7ea'><rect x='2' y='2' width='116' height='56'/><rect x='122' y='2' width='116' height='56'/><rect x='-58' y='62' width='116' height='56'/><rect x='62' y='62' width='116' height='56'/><rect x='182' y='62' width='116' height='56'/></g></svg>");
  background-size: 240px 120px;
  background-repeat: repeat;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: relative;
  text-align: center;
}
.chooser-intro .chooser__intro {
  align-items: center;
  text-align: center;
}
.chooser-intro .h-section {
  font-family: var(--mh-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  line-height: 1.0;
  font-size: clamp(36px, 6.4vw, 96px);
  color: var(--mh-black);
}
.chooser-intro .h-section .script-word {
  font-family: var(--mh-script);
  text-transform: none;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0;
  font-size: 1.15em;
  line-height: 0.7;
  display: inline-block;
  margin-top: -0.18em;
  color: var(--mh-mint);
}

/* Photo-backed band that holds the location card grid */
.chooser-band {
  position: relative;
  padding: clamp(64px, 8vw, 100px) 0 clamp(80px, 10vw, 140px);
  overflow: hidden;
  isolation: isolate;
}
.chooser-band__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.chooser-band__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.chooser-band__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.65) 100%);
}
.chooser-band > .container {
  position: relative;
  z-index: 2;
}

/* Editorial location list — Neutra text, character-spaced, stacked over photo */
.locations-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.locations-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(18px, 2.2vw, 30px) 8px;
  border-top: 1px solid rgba(255,251,239,0.14);
  font-family: var(--mh-body);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  line-height: 1;
  font-size: clamp(20px, 2.6vw, 34px);
  color: var(--mh-mint);
  text-decoration: none;
  transition: color 240ms ease, letter-spacing 320ms ease;
  position: relative;
}
.locations-list__item:last-child {
  border-bottom: 1px solid rgba(255,251,239,0.14);
}
.locations-list__item .locations-list__name {
  display: inline-block;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), letter-spacing 320ms ease;
}
.locations-list__item .locations-list__arrow {
  font-family: var(--mh-display);
  font-weight: 400;
  font-size: 0.9em;
  color: var(--mh-cream);
  letter-spacing: 0;
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity 280ms ease, transform 280ms ease;
}
.locations-list__item:hover { color: var(--mh-cream); }
.locations-list__item:hover .locations-list__name { letter-spacing: 0.32em; }
.locations-list__item:hover .locations-list__arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--mh-mint);
}

.locations-list__item--soon {
  color: rgba(193, 230, 223, 0.4);
  pointer-events: none;
}
.locations-list__item--soon .locations-list__badge {
  font-family: var(--mh-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: clamp(10px, 1vw, 13px);
  color: var(--mh-mint);
  padding: 7px 14px;
  border: 1px solid var(--mh-mint);
  background: transparent;
  white-space: nowrap;
  line-height: 1;
}

/* Full-bleed cinematic homepage hero with photo background.
   Replace .home-hero__photo's <div class="ph"> with an <img> when ready. */
.home-hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.home-hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-hero__photo .ph,
.home-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  border: 0;
}
.home-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.20) 40%, rgba(0,0,0,0.35) 75%, rgba(0,0,0,0.65) 100%);
}
.home-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--mh-max);
  margin: 0 auto;
  padding: clamp(120px, 16vw, 200px) var(--mh-gutter) clamp(80px, 10vw, 140px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  color: var(--mh-cream);
}
.home-hero__logo {
  width: clamp(360px, 62vw, 880px);
  max-width: 100%;
  aspect-ratio: 2 / 1; /* matches logo file 4320x2160 */
  display: block;
  background-color: var(--mh-cream);
  -webkit-mask: url('assets/logo.png') center / contain no-repeat;
          mask: url('assets/logo.png') center / contain no-repeat;
  margin-bottom: 4px;
}
.home-hero__eyebrow {
  font-family: var(--mh-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 11px;
  color: var(--mh-mint);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.home-hero__eyebrow::before,
.home-hero__eyebrow::after {
  content: "";
  width: 36px; height: 1px;
  background: var(--mh-mint);
  display: inline-block;
}
.home-hero__title {
  font-family: var(--mh-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  line-height: 1.2;
  font-size: clamp(20px, 2.6vw, 36px);
  color: var(--mh-cream);
  max-width: 22ch;
  margin-top: 12px;
}
.home-hero__title .mint-mark {
  background: none;
  color: var(--mh-mint);
  font-family: var(--mh-script);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  padding: 0 0.06em;
  font-size: 1.55em;
  line-height: 0.85;
  display: inline-block;
  vertical-align: -0.05em;
}
.home-hero__sub {
  font-family: var(--mh-italic), var(--mh-body);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  max-width: 520px;
  color: rgba(255,251,239,0.9);
}
.home-hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--mh-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 10px;
  color: var(--mh-cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.9;
}
.home-hero__scroll::after {
  content: "";
  width: 1px;
  height: 36px;
  background: var(--mh-cream);
  animation: mh-scroll-pulse 1.8s ease-in-out infinite;
  transform-origin: top center;
}
@keyframes mh-scroll-pulse {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

.chooser__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.chooser__intro .italic-lead { max-width: 540px; }

.chooser__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 28px);
}
@media (max-width: 900px) { .chooser__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .chooser__grid { grid-template-columns: 1fr; } }

.loc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--mh-cream-warm);
  border: 1px solid var(--mh-rule);
  padding: 18px 18px 22px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), border-color 320ms ease;
  overflow: hidden;
}
.loc-card:hover { transform: translateY(-6px); border-color: var(--mh-mint-deep); }
.loc-card__photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
  background: var(--mh-cream-warm);
}
.loc-card__photo .ph { width: 100%; height: 100%; transition: transform 600ms ease; }
.loc-card:hover .loc-card__photo .ph { transform: scale(1.03); }
.loc-card__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  background: var(--mh-cream-warm);
  transition: transform 600ms ease;
}
.loc-card:hover .loc-card__photo img { transform: scale(1.03); }

/* "Coming soon" state — for locations without artwork yet */
.loc-card__photo--soon {
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(
      135deg,
      var(--mh-cream-warm) 0 22px,
      rgba(193, 230, 223, 0.35) 22px 23px
    );
  border-bottom: 1.5px solid var(--mh-mint-deep);
}
.loc-card__soon-stamp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--mh-cream);
  border: 1.5px solid var(--mh-black);
  padding: 12px 18px;
  font-family: var(--mh-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--mh-black);
  transform: rotate(-3deg);
}
.loc-card__soon-stamp::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--mh-mint);
  border: 1.5px solid var(--mh-black);
  border-radius: 50%;
  display: inline-block;
}

.loc-card__city {
  font-family: var(--mh-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 0.95;
  font-size: clamp(26px, 2.6vw, 38px);
  margin-bottom: 6px;
  position: relative;
  display: inline-block;
}
.loc-card__city::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -4px;
  height: 4px;
  background: var(--mh-mint);
  transition: right 320ms ease;
}
.loc-card:hover .loc-card__city::after { right: 0; }

.loc-card__sub {
  font-family: var(--mh-body);
  font-style: italic;
  font-size: 14px;
  color: var(--mh-ink-mute);
  margin-bottom: 18px;
}
.loc-card__cta {
  margin-top: auto;
}

.celebrate-band {
  border-top: 1px solid var(--mh-rule);
  border-bottom: 1px solid var(--mh-rule);
  padding: clamp(36px, 6vw, 64px) 0;
  text-align: center;
  background: var(--mh-cream);
}
.celebrate-band__text {
  font-family: var(--mh-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: clamp(20px, 3.2vw, 42px);
  line-height: 1.15;
  max-width: 22ch;
  margin: 0 auto;
}
.celebrate-band__text .mint-mark {
  background: none;
  color: var(--mh-mint);
  font-family: var(--mh-script);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  padding: 0 0.04em;
  font-size: 1.45em;
  line-height: 0.85;
  display: inline-block;
  vertical-align: -0.08em;
}

/* ---------- 9. Location hero ---------- */
.loc-hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: flex-end;
  background: var(--mh-cream-warm);
  overflow: hidden;
}
.loc-hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.loc-hero__photo .ph { width: 100%; height: 100%; border: 0; }
.loc-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.loc-hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.18) 45%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.loc-hero__sub { color: var(--mh-mint); }
.loc-hero__eyebrow {
  background: rgba(0,0,0,0.55);
  color: var(--mh-cream);
  border-color: var(--mh-cream);
}
.loc-hero__body {
  position: relative;
  z-index: 1;
  padding: clamp(80px, 12vw, 140px) 0 clamp(48px, 6vw, 80px);
  width: 100%;
}
/* Location hero title — render in off-white over the photo */
.loc-hero .h-hero {
  color: var(--mh-cream);
  text-shadow: 0 1px 24px rgba(0,0,0,0.45), 0 0 1px rgba(0,0,0,0.2);
}
.loc-hero__eyebrow {
  display: inline-block;
  background: var(--mh-cream);
  padding: 8px 14px;
  border: 1px solid var(--mh-black);
  font-family: var(--mh-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  margin-bottom: 24px;
}
.loc-hero__sub {
  margin-top: 18px;
  font-family: var(--mh-body);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  max-width: 640px;
  color: var(--mh-mint);
}
.loc-hero__ctas {
  margin-top: clamp(28px, 4vw, 40px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- 10. Quick hits bar ---------- */
.quick-hits {
  background: var(--mh-cream);
  border-top: 1px solid var(--mh-rule);
  border-bottom: 1px solid var(--mh-rule);
  padding: 18px 0;
}
.quick-hits__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  font-family: var(--mh-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
}
.quick-hits__item { display: inline-flex; align-items: center; gap: 8px; }
.quick-hits__dot {
  width: 6px; height: 6px;
  background: var(--mh-mint-deep);
  border-radius: 50%;
  display: inline-block;
}

/* ---------- 11. Horizontal photo reel ---------- */
.reel {
  padding: clamp(56px, 8vw, 96px) 0 0;
}
.reel__head {
  padding: 0 var(--mh-gutter);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.reel__track {
  display: flex;
  gap: 14px;
  padding: 0 var(--mh-gutter) 36px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: var(--mh-mint-deep) transparent;
}
.reel__track.is-grabbing { cursor: grabbing; user-select: none; }
.reel__track::-webkit-scrollbar { height: 6px; }
.reel__track::-webkit-scrollbar-thumb { background: var(--mh-mint-deep); border-radius: 6px; }
.reel__track::-webkit-scrollbar-track { background: transparent; }

.reel__item {
  flex: 0 0 auto;
  scroll-snap-align: start;
}
.reel__item .ph {
  width: clamp(280px, 36vw, 460px);
  height: clamp(360px, 50vw, 600px);
}
.reel__item--tall .ph { width: clamp(240px, 28vw, 360px); height: clamp(360px, 50vw, 600px); }
.reel__caption {
  margin-top: 12px;
  font-family: var(--mh-body);
  font-style: italic;
  font-size: 13px;
  color: var(--mh-ink-mute);
  max-width: 360px;
}

/* ---------- 12. Menu tabs ---------- */
.menu-block { background: var(--mh-cream); }
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 48px);
  border-bottom: 1px solid var(--mh-rule);
  margin-bottom: clamp(36px, 5vw, 56px);
  padding-bottom: 2px;
}
.menu-tab {
  font-family: var(--mh-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  padding: 12px 0;
  position: relative;
  color: var(--mh-ink-mute);
  transition: color 200ms ease;
}
.menu-tab::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 4px;
  background: var(--mh-mint);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 240ms ease;
}
.menu-tab.is-active { color: var(--mh-black); }
.menu-tab.is-active::after { transform: scaleX(1); }
.menu-tab:hover { color: var(--mh-black); }

.menu-panel { display: none; }
.menu-panel.is-active { display: block; }

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
}
@media (max-width: 720px) { .menu-grid { grid-template-columns: 1fr; } }

.menu-item {
  padding: 16px 0;
  border-bottom: 1px dashed var(--mh-rule);
}
.menu-item__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.menu-item__name {
  font-family: var(--mh-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 16px;
  color: var(--mh-black);
}
.menu-item__price {
  font-family: var(--mh-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--mh-black);
  white-space: nowrap;
}
.menu-item__desc {
  margin-top: 6px;
  font-family: var(--mh-body);
  font-style: italic;
  font-size: 15px;
  color: var(--mh-ink-mute);
  line-height: 1.5;
}

.menu-subhead {
  grid-column: 1 / -1;
  margin: clamp(20px, 3vw, 40px) 0 4px;
  font-family: var(--mh-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--mh-black);
}

/* ---------- 13. Events ---------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
@media (max-width: 900px) { .events-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .events-grid { grid-template-columns: 1fr; } }

.event-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px 22px 24px;
  background: var(--mh-cream-warm);
  border: 1px solid var(--mh-rule);
  transition: border-color 240ms ease, transform 240ms ease;
}
.event-card:hover { border-color: var(--mh-mint-deep); transform: translateY(-3px); }
.event-card__date {
  font-family: var(--mh-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 0.85;
  font-size: 44px;
  color: var(--mh-black);
  min-width: 78px;
}
.event-card__date small {
  display: block;
  font-size: 14px;
  letter-spacing: 0.12em;
  margin-top: 6px;
}
.event-card__title {
  font-family: var(--mh-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 16px;
  margin-bottom: 6px;
}
.event-card__blurb {
  font-family: var(--mh-body);
  font-style: italic;
  font-size: 14px;
  color: var(--mh-ink-mute);
  margin-bottom: 12px;
}
.event-card__link {
  font-family: var(--mh-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
}

/* ---------- 14. Masonry brunch grid ---------- */
.brunch-grid {
  column-count: 4;
  column-gap: 14px;
}
@media (max-width: 1100px) { .brunch-grid { column-count: 3; } }
@media (max-width: 720px)  { .brunch-grid { column-count: 2; } }
@media (max-width: 420px)  { .brunch-grid { column-count: 1; } }
.brunch-grid .ph {
  width: 100%;
  margin: 0 0 14px;
  break-inside: avoid;
}

/* ---------- 15. Contact / Get in touch ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form {
  display: grid;
  gap: 18px;
}
.field { display: grid; gap: 8px; }
.field label {
  font-family: var(--mh-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
}
.field input,
.field textarea {
  font: inherit;
  font-family: var(--mh-body);
  background: var(--mh-cream);
  border: 1px solid var(--mh-rule);
  border-bottom: 1.5px solid var(--mh-black);
  padding: 12px 14px;
  color: var(--mh-ink-soft);
  outline: none;
  transition: border-color 200ms ease, background 200ms ease;
}
.field input:focus,
.field textarea:focus { border-bottom-color: var(--mh-mint-deep); background: #fff; }
.field textarea { resize: vertical; min-height: 140px; }

/* ---------- 15b. Weekly specials calendar ---------- */
.weekly-agenda {
  margin-top: clamp(20px, 3vw, 36px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--mh-rule);
  background: var(--mh-cream);
}
@media (max-width: 760px) { .weekly-agenda { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .weekly-agenda { grid-template-columns: 1fr; } }
.weekly-agenda__day {
  border-right: 1px solid var(--mh-rule);
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.weekly-agenda__day:last-child { border-right: 0; }
@media (max-width: 760px) {
  .weekly-agenda__day { border-right: 1px solid var(--mh-rule); border-bottom: 1px solid var(--mh-rule); }
  .weekly-agenda__day:nth-child(2n) { border-right: 0; }
  .weekly-agenda__day:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 460px) {
  .weekly-agenda__day { border-right: 0; border-bottom: 1px solid var(--mh-rule); }
  .weekly-agenda__day:last-child { border-bottom: 0; }
}
.weekly-agenda__date {
  font-family: var(--mh-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--mh-rule);
  background: var(--mh-cream-warm);
  color: var(--mh-black);
}
.weekly-agenda__date small {
  display: block;
  font-family: var(--mh-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-transform: none;
  margin-top: 4px;
  color: var(--mh-ink-soft);
}
.weekly-agenda__slot {
  flex: 1;
  padding: 16px;
  font-family: var(--mh-body);
  font-style: italic;
  font-size: 14px;
  color: var(--mh-ink-mute);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.5;
}
.weekly-agenda__slot::before {
  content: "On the chalkboard — call your local";
  opacity: 0.55;
}

/* ---------- 16. Map block ---------- */
.map-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--mh-rule);
}
@media (max-width: 820px) { .map-block { grid-template-columns: 1fr; } }
.map-block__info {
  padding: clamp(40px, 6vw, 80px) var(--mh-gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.map-block__map { min-height: 560px; position: relative; }

/* SVG-style stylized map */
.map-art {
  position: absolute; inset: 0;
  background: var(--mh-mint);
  overflow: hidden;
}
.map-art::before,
.map-art::after {
  content: "";
  position: absolute;
  background: var(--mh-cream);
}
.map-art::before { /* horizontal road */
  left: -10%; right: -10%;
  top: 45%;
  height: 14px;
  transform: rotate(-4deg);
}
.map-art::after { /* vertical road */
  top: -10%; bottom: -10%;
  left: 55%;
  width: 12px;
  transform: rotate(8deg);
}
.map-pin {
  position: absolute;
  top: 42%;
  left: 53%;
  transform: translate(-50%, -100%);
  width: 22px;
  height: 22px;
  background: var(--mh-black);
  border-radius: 50% 50% 50% 0;
  transform-origin: bottom left;
  rotate: -45deg;
  z-index: 2;
}
.map-pin::after {
  content: "";
  position: absolute;
  inset: 6px;
  background: var(--mh-mint);
  border-radius: 50%;
}
.map-label {
  position: absolute;
  top: 56%; left: 53%;
  transform: translateX(-50%);
  font-family: var(--mh-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  background: var(--mh-cream);
  padding: 6px 10px;
  border: 1px solid var(--mh-black);
}

/* ---------- 17. Footer ---------- */
.mh-foot {
  background: var(--mh-black);
  color: var(--mh-cream);
  padding: clamp(56px, 8vw, 96px) 0 32px;
}
.mh-foot .h-section { color: var(--mh-cream); }
.mh-foot__band {
  border-bottom: 1px solid #1c1c1c;
  padding-bottom: clamp(40px, 6vw, 56px);
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: end;
}
@media (max-width: 760px) { .mh-foot__band { grid-template-columns: 1fr; } }
.mh-foot__signup {
  display: flex;
  gap: 0;
  border: 1px solid var(--mh-cream);
  background: transparent;
}
.mh-foot__signup input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--mh-cream);
  padding: 16px 18px;
  font-family: var(--mh-body);
  font-style: italic;
  font-size: 16px;
  outline: none;
}
.mh-foot__signup input::placeholder { color: rgba(255,251,239,0.5); }
.mh-foot__signup button {
  background: var(--mh-mint);
  color: var(--mh-black);
  padding: 0 22px;
  font-family: var(--mh-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  transition: background 200ms ease;
}
.mh-foot__signup button:hover { background: var(--mh-mint-deep); }

.mh-foot__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 820px) { .mh-foot__cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .mh-foot__cols { grid-template-columns: 1fr; } }
.mh-foot__col h4 {
  font-family: var(--mh-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  margin-bottom: 14px;
  color: var(--mh-mint);
}
.mh-foot__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.mh-foot__col a {
  font-family: var(--mh-body);
  font-style: italic;
  font-size: 15px;
  color: var(--mh-cream);
  opacity: 0.85;
  transition: opacity 200ms ease, color 200ms ease;
}
.mh-foot__col a:hover { color: var(--mh-mint); opacity: 1; }

.mh-foot__base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--mh-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  color: rgba(255,251,239,0.65);
}
.mh-foot__socials { display: flex; gap: 14px; }
.mh-foot__socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--mh-cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 200ms ease, color 200ms ease;
}
.mh-foot__socials a:hover { background: var(--mh-mint); color: var(--mh-black); border-color: var(--mh-mint); }

/* ---------- 18. Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 19. Page header (non-home pages) ---------- */
.page-head {
  padding: clamp(120px, 16vw, 200px) 0 clamp(40px, 6vw, 80px);
  border-bottom: 1px solid var(--mh-rule);
}
.page-head__eyebrow {
  font-family: var(--mh-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--mh-mint-deep);
  margin-bottom: 24px;
}
.page-head .lede { max-width: 620px; margin-top: 22px; }

/* ---------- 20. Journal cards ---------- */
.journal-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 64px) clamp(28px, 4vw, 56px);
}
@media (max-width: 800px) { .journal-list { grid-template-columns: 1fr; } }
.journal-card { display: block; }
.journal-card .ph { aspect-ratio: 3/2; margin-bottom: 22px; }
.journal-card__cat {
  font-family: var(--mh-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--mh-mint-deep);
  margin-bottom: 10px;
}
.journal-card__title {
  font-family: var(--mh-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 0.95;
  font-size: clamp(26px, 2.6vw, 36px);
  margin-bottom: 12px;
}
.journal-card__dek {
  font-family: var(--mh-body);
  font-style: italic;
  font-size: 17px;
  color: var(--mh-ink-mute);
  margin-bottom: 14px;
}
.journal-card__link {
  font-family: var(--mh-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
}

/* ---------- 21. Story (long-form) ---------- */
.long-body {
  max-width: 720px;
  margin: 0 auto;
}
.long-body p {
  font-family: var(--mh-body);
  font-size: 19px;
  line-height: 1.65;
  margin: 0 0 1.4em;
  color: var(--mh-ink-soft);
}
.long-body p:first-of-type::first-letter {
  font-family: var(--mh-display);
  font-weight: 900;
  font-size: 4.2em;
  float: left;
  line-height: 0.85;
  margin: 0.08em 0.12em 0 0;
  color: var(--mh-black);
}
.pull-quote {
  margin: clamp(40px, 6vw, 72px) auto;
  max-width: 880px;
  text-align: center;
  font-family: var(--mh-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 0.95;
  font-size: clamp(28px, 4.4vw, 56px);
}
.pull-quote em {
  font-family: var(--mh-body);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  display: block;
  font-size: 0.42em;
  margin-top: 18px;
  color: var(--mh-ink-mute);
}

/* ---------- 22. Gallery filters ---------- */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.filter-pill {
  padding: 10px 18px;
  border: 1.5px solid var(--mh-black);
  border-radius: 999px;
  background: transparent;
  font-family: var(--mh-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  transition: background 200ms ease, color 200ms ease;
}
.filter-pill.is-active,
.filter-pill:hover { background: var(--mh-mint); }

/* ---------- 22b. Instagram grid + Location blurb ---------- */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
@media (max-width: 1000px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px)  { .ig-grid { grid-template-columns: repeat(2, 1fr); } }
.ig-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--mh-cream-warm);
}
.ig-tile img,
.ig-tile .ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.ig-tile:hover img { transform: scale(1.05); }
.ig-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 280ms ease;
  pointer-events: none;
}
.ig-tile:hover::after { background: rgba(0,0,0,0.15); }

/* ---------- IG-feed gallery (Explore-style mosaic) ---------- */
.ig-feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: clamp(8px, 1vw, 16px) 0 clamp(28px, 3vw, 40px);
  border-bottom: 1px solid var(--mh-rule);
  margin-bottom: clamp(20px, 2vw, 28px);
}
.ig-feed-head__handle {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mh-display);
  font-weight: 800;
  text-transform: lowercase;
  letter-spacing: 0;
  font-size: clamp(20px, 2.4vw, 28px);
}
.ig-feed-head__avatar {
  width: clamp(48px, 5vw, 64px);
  height: clamp(48px, 5vw, 64px);
  border-radius: 50%;
  border: 2px solid var(--mh-mint-deep);
  padding: 3px;
  background: var(--mh-cream);
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.ig-feed-head__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  background: var(--mh-cream);
}
.ig-feed-head__stats {
  display: flex;
  gap: clamp(18px, 2.4vw, 36px);
  font-family: var(--mh-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--mh-ink-mute);
}
.ig-feed-head__stats strong {
  display: block;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--mh-black);
  margin-bottom: 2px;
}

/* Mosaic — 4 cols on desktop, varied row/col spans for IG-explore feel */
.ig-feed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, 1fr);
  grid-auto-flow: dense;
  gap: 6px;
}
@media (max-width: 900px) {
  .ig-feed { grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(140px, 1fr); }
}
@media (max-width: 560px) {
  .ig-feed { grid-template-columns: repeat(2, 1fr); grid-auto-rows: minmax(140px, 1fr); gap: 4px; }
}
.ig-feed__tile {
  position: relative;
  overflow: hidden;
  background: var(--mh-cream-warm);
  display: block;
}
.ig-feed__tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.ig-feed__tile:hover img { transform: scale(1.05); }
.ig-feed__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 260ms ease;
  pointer-events: none;
}
.ig-feed__tile:hover::after { background: rgba(0,0,0,0.12); }
.ig-feed__tile--wide  { grid-column: span 2; }
.ig-feed__tile--tall  { grid-row: span 2; }
.ig-feed__tile--big   { grid-column: span 2; grid-row: span 2; }
@media (max-width: 560px) {
  .ig-feed__tile--wide { grid-column: span 2; }
  .ig-feed__tile--big  { grid-column: span 2; grid-row: span 2; }
  .ig-feed__tile--tall { grid-row: span 2; }
}
.ig-feed__corner {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  color: var(--mh-cream);
  opacity: 0.92;
}

/* Location blurb — "About this location" */
.loc-blurb {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--mh-cream);
  border-bottom: 1px solid var(--mh-rule);
}
.loc-blurb__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 820px) { .loc-blurb__grid { grid-template-columns: 1fr; } }
.loc-blurb__head .h-section {
  font-family: var(--mh-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  line-height: 1.05;
  font-size: clamp(28px, 3.8vw, 52px);
}
.loc-blurb__body p {
  font-family: var(--mh-body);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--mh-ink-soft);
}
.loc-blurb__body p + p { margin-top: 1.1em; }

/* ---------- 22c. Careers / Join the Team ---------- */
.careers-hero {
  position: relative;
  min-height: 84vh;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
}
.careers-hero__photo { position: absolute; inset: 0; z-index: 0; }
.careers-hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.careers-hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.05) 35%, rgba(0,0,0,0.75) 100%);
}
.careers-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(140px, 16vw, 200px) 0 clamp(64px, 8vw, 96px);
  color: var(--mh-cream);
}
.careers-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mh-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: var(--mh-mint);
  margin-bottom: 24px;
}
.careers-hero__eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--mh-mint);
  display: inline-block;
}
.careers-hero__title {
  font-family: var(--mh-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.9;
  font-size: clamp(56px, 11vw, 168px);
  color: var(--mh-cream);
  margin: 0;
}
.careers-hero__title .script-word {
  font-family: var(--mh-script);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--mh-mint);
  font-size: 1.1em;
  line-height: 0.7;
  display: inline-block;
}
.careers-hero__sub {
  margin-top: 22px;
  font-family: var(--mh-body);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255,251,239,0.95);
  max-width: 580px;
}

.careers-stats {
  background: var(--mh-mint);
  padding: clamp(24px, 3vw, 36px) 0;
  border-top: 1.5px solid var(--mh-black);
  border-bottom: 1.5px solid var(--mh-black);
}
.careers-stats__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 4vw, 64px);
  font-family: var(--mh-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--mh-black);
  text-align: center;
}
.careers-stats__item strong {
  display: block;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 6px;
  font-weight: 900;
}

/* Polaroid scattered photos */
.polaroid-wrap {
  position: relative;
  padding: clamp(56px, 8vw, 100px) 0;
  background: var(--mh-cream);
}
.polaroid-wrap__head {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.polaroid-cluster {
  position: relative;
  min-height: clamp(460px, 50vw, 600px);
  margin: clamp(20px, 3vw, 40px) auto;
  max-width: 920px;
}
.polaroid {
  background: #fff;
  padding: 10px 10px 14px;
  box-shadow:
    0 16px 36px rgba(0,0,0,0.18),
    0 2px 6px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), box-shadow 320ms ease;
  width: 220px;
  display: block;
}
.polaroid:hover {
  transform: scale(1.06) rotate(0deg) !important;
  z-index: 30;
  box-shadow: 0 24px 48px rgba(0,0,0,0.24);
}
.polaroid::before {
  content: "";
  position: absolute;
  top: -10px; left: 50%;
  width: 72px; height: 18px;
  background: rgba(193, 230, 223, 0.72);
  border: 1px solid rgba(0,0,0,0.06);
  transform: translateX(-50%) rotate(-3deg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.polaroid__inner {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.polaroid__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.polaroid__caption {
  position: absolute;
  bottom: 10px;
  left: 12px;
  right: 12px;
  text-align: center;
  font-family: var(--mh-script);
  font-style: italic;
  font-size: 20px;
  color: var(--mh-ink-soft);
  line-height: 1;
}
.polaroid--floating {
  position: absolute;
  z-index: 2;
}
@media (max-width: 760px) {
  .polaroid-cluster { min-height: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .polaroid-cluster .polaroid {
    position: relative !important;
    left: auto !important; right: auto !important;
    top: auto !important; bottom: auto !important;
    transform: none !important;
    margin: 0;
    width: 100%;
  }
}
@media (max-width: 460px) {
  .polaroid-cluster { grid-template-columns: 1fr; }
}

/* Vibe band quote — between sections */
.vibe-band {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--mh-cream-warm);
  text-align: center;
}
.vibe-band__quote {
  font-family: var(--mh-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 0.95;
  font-size: clamp(34px, 5.4vw, 76px);
  max-width: 18ch;
  margin: 0 auto;
}
.vibe-band__quote .script-word {
  font-family: var(--mh-script);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--mh-teal);
  font-size: 1.1em;
  line-height: 0.7;
  display: inline-block;
}
.vibe-band__byline {
  font-family: var(--mh-body);
  font-style: italic;
  color: var(--mh-ink-mute);
  margin-top: 20px;
  font-size: 15px;
}

/* Application form */
.apply-shell {
  background: var(--mh-cream);
  padding: clamp(56px, 9vw, 120px) 0;
  position: relative;
}
.apply-card {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  background: var(--mh-cream-warm);
  border: 1px solid var(--mh-rule);
  padding: clamp(28px, 5vw, 64px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}
.apply-card__head {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.apply-card__head .h-section { font-size: clamp(36px, 5vw, 56px); }
.apply-section {
  padding: clamp(20px, 3vw, 32px) 0;
  border-top: 1px solid var(--mh-rule);
}
.apply-section:first-of-type { border-top: 0; padding-top: 0; }
.apply-section__title {
  font-family: var(--mh-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  margin-bottom: 16px;
  color: var(--mh-black);
}
.apply-section__title small {
  font-family: var(--mh-body);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  color: var(--mh-ink-mute);
  margin-left: 10px;
}
.apply-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .apply-grid-2 { grid-template-columns: 1fr; } }

/* House choice cards */
.house-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) { .house-choice { grid-template-columns: 1fr; } }
.house-choice > div { position: relative; }
.house-choice input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.house-choice__label {
  display: block;
  padding: 22px 22px;
  border: 1.5px solid var(--mh-black);
  background: var(--mh-cream);
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}
.house-choice__name {
  font-family: var(--mh-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 14px;
  margin-bottom: 6px;
}
.house-choice__hint {
  font-family: var(--mh-body);
  font-style: italic;
  font-size: 13px;
  color: var(--mh-ink-mute);
}
.house-choice__label:hover { background: var(--mh-mint); transform: translateY(-2px); }
.house-choice input[type="radio"]:checked + .house-choice__label {
  background: var(--mh-mint);
  box-shadow: inset 0 0 0 2px var(--mh-black);
}

.position-block { display: none; margin-top: 16px; }
.position-block.is-active { display: block; }
.apply-select {
  width: 100%;
  font: inherit;
  font-family: var(--mh-body);
  background: var(--mh-cream);
  border: 1px solid var(--mh-rule);
  border-bottom: 1.5px solid var(--mh-black);
  padding: 12px 14px;
  color: var(--mh-ink-soft);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23000' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  padding-right: 38px;
}
.apply-select:focus { outline: none; border-bottom-color: var(--mh-mint-deep); background-color: #fff; }

/* Availability grid */
.avail {
  display: grid;
  grid-template-columns: 110px repeat(3, 1fr);
  border: 1px solid var(--mh-rule);
  background: var(--mh-cream);
}
.avail__cell {
  padding: 12px 10px;
  border-right: 1px solid var(--mh-rule);
  border-bottom: 1px solid var(--mh-rule);
  font-family: var(--mh-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  text-align: center;
  background: var(--mh-cream-warm);
}
.avail__cell:nth-child(4n) { border-right: 0; }
.avail__row { display: contents; }
.avail__day {
  padding: 14px 14px;
  border-right: 1px solid var(--mh-rule);
  border-bottom: 1px solid var(--mh-rule);
  font-family: var(--mh-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  display: flex;
  align-items: center;
  background: var(--mh-cream-warm);
}
.avail__check {
  position: relative;
  border-right: 1px solid var(--mh-rule);
  border-bottom: 1px solid var(--mh-rule);
}
.avail__check:last-child { border-right: 0; }
.avail__row:last-of-type .avail__day,
.avail__row:last-of-type .avail__check { border-bottom: 0; }
.avail__check input { position: absolute; opacity: 0; inset: 0; cursor: pointer; margin: 0; }
.avail__check label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 8px;
  font-family: var(--mh-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--mh-ink-mute);
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
  height: 100%;
}
.avail__check input:checked + label {
  background: var(--mh-mint);
  color: var(--mh-black);
}
.avail__check label:hover { background: rgba(193, 230, 223, 0.4); }
.avail__all {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mh-body);
  font-style: italic;
  color: var(--mh-ink-soft);
  cursor: pointer;
}
.avail__all input { width: 18px; height: 18px; accent-color: #1f7a6e; cursor: pointer; }

/* File input drop area */
.file-drop {
  position: relative;
  border: 1.5px dashed var(--mh-mint-deep);
  background: var(--mh-cream);
  padding: 28px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  cursor: pointer;
  text-align: center;
  transition: background 200ms ease, border-color 200ms ease;
}
.file-drop:hover { background: rgba(193, 230, 223, 0.25); border-color: var(--mh-black); }
.file-drop input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.file-drop__icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1.5px solid var(--mh-black);
  border-radius: 50%;
  flex: 0 0 auto;
}
.file-drop__copy {
  font-family: var(--mh-body);
  text-align: left;
}
.file-drop__copy strong {
  font-family: var(--mh-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  display: block;
  margin-bottom: 4px;
}
.file-drop__copy span {
  font-style: italic;
  font-size: 13px;
  color: var(--mh-ink-mute);
}
.file-drop.has-file {
  border-style: solid;
  border-color: var(--mh-mint-deep);
  background: var(--mh-mint);
}
.file-drop.has-file .file-drop__copy span { color: var(--mh-black); font-style: normal; }

.apply-submit {
  padding-top: clamp(28px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.apply-success {
  display: none;
  padding: 28px 24px;
  background: var(--mh-mint);
  border: 1.5px solid var(--mh-black);
  text-align: center;
  font-family: var(--mh-body);
  font-size: 17px;
  margin-bottom: 18px;
}
.apply-success.is-visible { display: block; }
.apply-success strong {
  font-family: var(--mh-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}

/* ---------- 23. Utility ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }

.stack-tight > * + * { margin-top: 12px; }
.stack > * + * { margin-top: 20px; }
.stack-loose > * + * { margin-top: 36px; }

.kicker {
  display: inline-block;
  font-family: var(--mh-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  margin-bottom: 16px;
  color: var(--mh-black);
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--mh-mint-deep);
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 3px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: clamp(32px, 4vw, 56px);
}

/* Page sub-band */
.sub-band {
  background: var(--mh-mint);
  padding: clamp(28px, 4vw, 44px) 0;
  text-align: center;
}
.sub-band__text {
  font-family: var(--mh-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  font-size: clamp(22px, 3vw, 36px);
}
