/* =====================================================
   POST · Vermont microsite
   site.css — page styles. Reads tokens from tokens.css.
   ===================================================== */

/* ---------- Resets / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body { margin: 0; min-height: 100dvh; overflow-x: clip; }
img, picture, video, svg { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
a { text-decoration: none; color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: 1440px; margin: 0 auto; padding-inline: var(--container-padding); }

/* Anchor scroll — sit below the sticky nav */
section[id] { scroll-margin-top: 84px; }
@media (max-width: 720px) { section[id] { scroll-margin-top: 64px; } }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 12px; top: 12px; background: var(--post-green); color: var(--ivory); padding: 10px 14px; z-index: 200; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: block;
  font-family: var(--font-primary);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 18px;
}
.eyebrow--light { color: rgba(237,235,224,0.66); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-primary); font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 14px 22px; border-radius: 999px;
  border: 1px solid currentColor; background: transparent;
  transition: background var(--dur-base) var(--ease), color var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: scale(0.98); }
.btn--accent { background: var(--accent); color: var(--ivory); border-color: var(--accent); }
.btn--accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn--ghost { color: var(--post-green); }
.btn--ghost:hover { background: var(--post-green); color: var(--ivory); }
.btn--ghost-light { color: var(--ivory); }
.btn--ghost-light:hover { background: var(--ivory); color: var(--post-green); }
.btn--lg { padding: 18px 28px; font-size: 13px; }

/* ---------- Top event ribbon ---------- */
.ribbon {
  background: var(--post-green); color: var(--ivory);
  position: relative; z-index: 30;
}
.ribbon__inner {
  display: flex; align-items: center; gap: 16px;
  min-height: 38px;
  padding-block: 8px;
  font-size: 12px; letter-spacing: 0.06em;
  flex-wrap: wrap;
}
.ribbon__seal { display: inline-flex; flex-shrink: 0; width: 30px; height: 30px; opacity: 0.92; }
.ribbon__text { display: inline-flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.ribbon__text strong { font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 11px; }
.ribbon__sep { opacity: 0.45; }
.ribbon__cta {
  margin-left: auto;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sand);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease);
}
.ribbon__cta:hover { border-color: var(--sand); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(237,235,224,0.85);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid var(--border);
  transition: padding var(--dur-base) var(--ease);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
}
.nav__brand {
  display: inline-flex; align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.nav__brand img { width: 44px; height: 44px; display: block; }
.nav__brand--inverse img { width: 56px; height: 56px; }

.nav__links {
  display: flex; gap: 28px; align-items: center;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.nav__links a {
  color: var(--post-green);
  position: relative;
  padding-block: 6px;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%;
  bottom: 0; height: 1px; background: var(--accent);
  transition: right var(--dur-base) var(--ease);
}
.nav__links a:hover::after { right: 0; }

.nav__cta { font-size: 11px; padding: 11px 18px; }
.nav__hamburger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  padding: 0;
}
.nav__hamburger span {
  display: block; width: 18px; height: 1.5px;
  background: var(--post-green); border-radius: 1px;
  transition: transform var(--dur-base) var(--ease);
}

/* ---------- Mobile overlay menu ---------- */
.overlay {
  position: fixed; inset: 0; z-index: 90;
  background: var(--post-green); color: var(--ivory);
  transform: translateY(-100%);
  transition: transform 520ms var(--ease);
  display: flex; flex-direction: column;
  pointer-events: none;
}
body.is-menu-open .overlay {
  transform: translateY(0);
  pointer-events: auto;
}
body.is-menu-open { overflow: hidden; }
.overlay__head {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 18px;
  border-bottom: 1px solid rgba(237,235,224,0.15);
}
.overlay__close {
  width: 44px; height: 44px; border-radius: 999px;
  background: transparent; border: 1px solid rgba(237,235,224,0.25);
  color: var(--ivory); font-size: 18px; padding: 0;
}
.overlay__nav { padding-block: 40px 24px; flex: 1; overflow-y: auto; }
.overlay__nav a {
  display: flex; align-items: baseline; justify-content: space-between;
  font-family: var(--font-display);
  font-size: clamp(34px, 8.5vw, 56px); font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ivory);
  padding-block: 14px;
  border-bottom: 1px solid rgba(237,235,224,0.15);
  opacity: 0; transform: translateY(20px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}
body.is-menu-open .overlay__nav a { opacity: 1; transform: translateY(0); }
.overlay__nav a > em {
  font-style: normal; font-family: var(--font-primary);
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
  opacity: 0.5;
}
.overlay__nav-italic { font-style: italic; }
.overlay__nav a:nth-child(1) { transition-delay: 80ms; }
.overlay__nav a:nth-child(2) { transition-delay: 130ms; }
.overlay__nav a:nth-child(3) { transition-delay: 180ms; }
.overlay__nav a:nth-child(4) { transition-delay: 230ms; }
.overlay__nav a:nth-child(5) { transition-delay: 280ms; }
.overlay__nav a:nth-child(6) { transition-delay: 330ms; }
.overlay__nav a:nth-child(7) { transition-delay: 380ms; }
.overlay__nav a:nth-child(8) { transition-delay: 430ms; }
.overlay__nav a:nth-child(9) { transition-delay: 480ms; }
.overlay__nav a:nth-child(10) { transition-delay: 530ms; }
.overlay__foot {
  padding-block: 22px 32px;
  border-top: 1px solid rgba(237,235,224,0.15);
  display: flex; align-items: end; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.overlay__foot .eyebrow { color: rgba(237,235,224,0.55); margin-bottom: 4px; }
.overlay__foot a:not(.btn) { color: var(--ivory); font-size: 14px; letter-spacing: 0.04em; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 94vh; min-height: 94dvh;
  color: var(--ivory);
  background: var(--post-green);
  overflow: hidden;
  display: grid;
  isolation: isolate;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,67,48,0.55) 0%,
      rgba(0,67,48,0.18) 22%,
      rgba(0,67,48,0.05) 45%,
      rgba(0,67,48,0.55) 78%,
      rgba(0,67,48,0.92) 100%);
}
.hero__content {
  align-self: end;
  padding-block: clamp(64px, 12vw, 140px) clamp(80px, 14vw, 160px);
  position: relative; z-index: 1;
  max-width: 1100px;
}
.hero__eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sand);
  margin: 0 0 24px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 11vw, 168px);
  font-weight: 400; line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  text-shadow: 0 2px 32px rgba(0,0,0,0.35);
  display: flex; flex-direction: column; gap: 4px;
}
.hero__title-italic { font-style: italic; color: var(--sand); }
.hero__sub {
  font-family: var(--font-primary);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.55;
  max-width: 540px; margin: 0 0 28px;
  text-shadow: 0 1px 16px rgba(0,0,0,0.4);
}
.hero__sub strong { font-weight: 700; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__edition {
  position: absolute;
  left: 24px; top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(237,235,224,0.55);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
}
.hero__corner {
  position: absolute;
  z-index: 1;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ivory);
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
}
.hero__corner--tl { top: 24px; left: var(--container-padding); }
.hero__corner--tr { top: 24px; right: var(--container-padding); }

.hero__scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(237,235,224,0.85);
  z-index: 2;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
  animation: heroScrollFloat 3.6s ease-in-out infinite;
}
@keyframes heroScrollFloat {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 6px); }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--post-green); color: var(--ivory);
  border-top: 1px solid var(--border-on-dark);
  border-bottom: 1px solid var(--border-on-dark);
  overflow: hidden;
  padding-block: 18px;
  position: relative;
}
.marquee__track {
  display: inline-flex; gap: 0; align-items: center;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
}
.marquee__track > * { padding-inline: 24px; }
.marquee__track i { color: var(--accent); font-style: normal; opacity: 0.9; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Awards variant — endless logo strip in place of the text marquee */
.marquee--awards { padding-block: 22px; }
.marquee__track--awards {
  animation-duration: 55s;             /* logos legible but moving with energy */
  align-items: center;
}
.marquee__track--awards img {
  height: 56px; width: auto;
  max-width: none;
  padding-inline: clamp(28px, 3vw, 56px);
  /* Force every (mixed-color) source SVG into a uniform ivory silhouette
     against the post-green band: brightness(0) → all black, invert(1) → all white. */
  filter: brightness(0) invert(1) opacity(0.85);
  transition: opacity var(--dur-base) var(--ease), filter var(--dur-base) var(--ease);
}
.marquee--awards:hover .marquee__track--awards { animation-play-state: paused; }
.marquee__track--awards img:hover { filter: brightness(0) invert(1) opacity(1); }

/* ---------- Section heads ---------- */
.section-head { margin-bottom: clamp(40px, 5vw, 64px); max-width: 900px; }
.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 400; line-height: 1.02; letter-spacing: -0.02em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.section-head__title em { font-style: italic; color: var(--accent); }
.section-head__title--light { color: var(--ivory); }
.section-head__title--light em { color: var(--sand); }
.section-head__lede {
  font-size: 16px; line-height: 1.55;
  color: var(--ink-muted); margin: 0; max-width: 600px;
}
.section-head__lede--light { color: rgba(237,235,224,0.78); }
.section-head--mosaic {
  display: flex; gap: 32px; align-items: end; justify-content: space-between; flex-wrap: wrap;
}
.section-head--mosaic .section-head__lede { max-width: 320px; }

/* ---------- The pitch ---------- */
.pitch { padding-block: clamp(96px, 14vw, 180px); background: var(--ivory); }
.pitch__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.pitch__label {
  writing-mode: vertical-rl; transform: rotate(180deg);
  margin-top: 12px;
}
.pitch__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 96px);
  font-weight: 400; line-height: 1.02; letter-spacing: -0.02em;
  margin: 0 0 48px;
  max-width: 1100px;
  text-wrap: balance;
}
.pitch__title em { font-style: italic; color: var(--accent); }
.pitch__cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  max-width: 880px;
  font-size: 16px; line-height: 1.65;
  color: var(--ink);
}
.pitch__cols p { margin: 0; }
.pitch__cols strong { font-weight: 700; color: var(--post-green); }

/* ---------- Why POST ---------- */
.why { padding-block: clamp(80px, 12vw, 160px); background: var(--ivory-soft); border-top: 1px solid var(--border); }
.why__grid {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
  counter-reset: why;
}
.why-tile {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}
.why-tile:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.why-tile__num {
  font-family: var(--font-display);
  font-size: 36px; line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.why-tile h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 400; line-height: 1.1; letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
.why-tile p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink-muted); }

/* ---------- Unki signature strip (compact, lives inside .why) ---------- */
.unki-strip {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding: clamp(20px, 2.4vw, 32px) clamp(20px, 2.4vw, 36px);
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}
.unki-strip::after {
  /* sunrise corner accent so the strip reads as "branded sticker" */
  content: ""; position: absolute;
  right: -60px; bottom: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(225,125,68,0.12), transparent 70%);
  pointer-events: none;
}
.unki-strip__art {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(8px, 1.4vw, 18px);
  align-items: end;
  position: relative; z-index: 1;
}
.unki-strip__fig {
  margin: 0;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.unki-strip__fig img {
  width: 100%; max-width: 150px; height: auto;
  filter: drop-shadow(0 10px 20px rgba(0,67,48,0.16));
}
.unki-strip__fig figcaption {
  font-family: var(--font-accent);
  font-size: 18px; line-height: 1;
  color: var(--accent);
  letter-spacing: 0.01em;
}
.unki-strip__copy { position: relative; z-index: 1; }
.unki-strip__copy .eyebrow { margin-bottom: 10px; }
.unki-strip__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px); font-weight: 400;
  line-height: 1.05; letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--post-green);
}
.unki-strip__title em { font-style: italic; color: var(--accent); }
.unki-strip__lede { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-muted); max-width: 60ch; }

/* ---------- Guest profile ---------- */
.profile { padding-block: clamp(80px, 12vw, 160px); background: var(--ivory); border-top: 1px solid var(--border); }
.profile__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
  counter-reset: profile;
}
.profile-card {
  background: var(--post-green); color: var(--ivory);
  border-radius: var(--radius-md);
  padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  overflow: hidden;
}
.profile-card:nth-child(2) { background: var(--forest); }
.profile-card:nth-child(3) { background: var(--olive); }
.profile-card__num {
  font-family: var(--font-display);
  font-size: 56px; line-height: 1;
  color: var(--sand);
  font-style: italic;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.profile-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 400; line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}
.profile-card p {
  margin: 0; font-size: 15px; line-height: 1.55;
  color: rgba(237,235,224,0.86);
}
.profile-card__sell {
  margin-top: auto; padding-top: 16px;
  border-top: 1px solid rgba(237,235,224,0.18);
  font-size: 14px; line-height: 1.5;
  color: var(--sand);
}
.profile-card__sell strong { color: var(--ivory); font-weight: 700; }

/* ---------- Photo mosaic — horizontal scroll rail ---------- */
.mosaic { padding-block: clamp(72px, 10vw, 140px); background: var(--ivory); border-top: 1px solid var(--border); }
.mosaic__grid {
  display: flex; gap: clamp(14px, 1.6vw, 22px);
  overflow-x: auto;
  padding: 4px clamp(20px, 4vw, 64px) 18px;
  margin-inline: calc(-1 * var(--container-padding));
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--container-padding);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,67,48,0.35) transparent;
}
.mosaic__grid::-webkit-scrollbar { height: 8px; }
.mosaic__grid::-webkit-scrollbar-thumb { background: rgba(0,67,48,0.32); border-radius: 999px; }
.mosaic__grid::-webkit-scrollbar-track { background: transparent; }
.mosaic__cell {
  margin: 0; position: relative;
  flex: 0 0 auto;
  width: clamp(260px, 30vw, 360px);
  scroll-snap-align: start;
  display: flex; flex-direction: column;
}
.mosaic__cell picture {
  display: block;
  height: clamp(360px, 42vw, 480px);
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.mosaic__cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1200ms var(--ease);
}
.mosaic__cell:hover img { transform: scale(1.025); }
.mosaic__cell figcaption {
  margin-top: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-muted);
}

/* ---------- Spa ---------- */
.spa { background: var(--post-green); color: var(--ivory); }
.spa__hero { position: relative; margin: 0; }
.spa__hero img {
  width: 100%; height: clamp(360px, 60vh, 640px); object-fit: cover;
}
.spa__hero-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding-block: var(--container-padding);
  background: linear-gradient(180deg, transparent, rgba(0,67,48,0.7) 60%, rgba(0,67,48,0.92));
}
.spa__hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 400; line-height: 1.02; letter-spacing: -0.02em;
  margin: 0;
  max-width: 18ch;
  text-wrap: balance;
}
.spa__hero-title em { font-style: italic; color: var(--sand); }
.spa__intro {
  max-width: 760px;
  padding-block: clamp(48px, 6vw, 80px);
  font-size: 17px; line-height: 1.6;
  color: rgba(237,235,224,0.86);
}
.spa__intro p { margin: 0; }
.spa__intro strong { color: var(--ivory); font-weight: 700; }
.spa__grid {
  list-style: none;
  margin: 0;
  /* preserve .container's horizontal padding — only override the block axis */
  padding-block: 0 clamp(80px, 12vw, 160px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
.spa-tile {
  display: flex; flex-direction: column; gap: 14px;
}
.spa-tile picture {
  display: block;
  height: clamp(300px, 28vw, 380px);
  overflow: hidden; border-radius: var(--radius-md);
  background: rgba(237,235,224,0.06);
}
.spa-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1200ms var(--ease); }
.spa-tile:hover img { transform: scale(1.03); }
.spa-tile h3 {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(20px, 2vw, 26px);
  line-height: 1.1; letter-spacing: -0.01em; margin: 0;
}
.spa-tile p { margin: 0; font-size: 14px; line-height: 1.55; color: rgba(237,235,224,0.78); }

/* ---------- Seasons ---------- */
.seasons { padding-block: clamp(80px, 12vw, 160px); background: var(--forest); color: var(--ivory); }
.seasons__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.season {
  background: rgba(237,235,224,0.04);
  border: 1px solid rgba(237,235,224,0.14);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--dur-base) var(--ease);
}
.season:hover { transform: translateY(-3px); }
.season__photo { display: block; }
.season__photo img { width: 100%; height: clamp(220px, 22vw, 320px); object-fit: cover; }
.season__body {
  padding: clamp(20px, 2.4vw, 32px);
  display: flex; flex-direction: column; gap: 14px;
  flex: 1;
}
.season__body header {
  display: flex; align-items: baseline; gap: 16px;
}
.season__body h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px); font-weight: 400; line-height: 1;
  letter-spacing: -0.02em; margin: 0;
}
.season__num {
  font-family: var(--font-primary);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sand);
}
.season__pill {
  margin-left: auto;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--accent); color: var(--ivory);
  padding: 4px 10px; border-radius: 999px;
}
.season__body p { margin: 0; font-size: 15px; line-height: 1.55; color: rgba(237,235,224,0.82); }
.season__tags {
  list-style: none; padding: 0; margin: auto 0 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.season__tags li {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid rgba(237,235,224,0.22);
  padding: 5px 10px; border-radius: 999px;
  color: rgba(237,235,224,0.82);
}

.winter-strip {
  margin-top: clamp(48px, 6vw, 88px);
  padding-block: clamp(28px, 3.5vw, 48px);
  padding-inline: var(--container-padding);
  border-top: 1px solid rgba(237,235,224,0.14);
  max-width: 1440px; margin-inline: auto;
}
.winter-strip__label { margin-bottom: 12px; }
.winter-strip__note {
  margin: 0 0 22px;
  max-width: 70ch;
  font-size: 14px; line-height: 1.55;
  color: rgba(237,235,224,0.75);
  font-style: italic;
}
.winter-strip__row {
  display: flex;
  gap: clamp(14px, 1.6vw, 22px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  scrollbar-width: thin;
  scrollbar-color: rgba(237,235,224,0.35) transparent;
}
.winter-strip__row::-webkit-scrollbar { height: 8px; }
.winter-strip__row::-webkit-scrollbar-thumb { background: rgba(237,235,224,0.28); border-radius: 999px; }
.winter-strip__row::-webkit-scrollbar-track { background: transparent; }
.winter-strip__row > figure {
  flex: 0 0 auto;
  width: clamp(260px, 28vw, 360px);
  scroll-snap-align: start;
}
.winter-strip figure { margin: 0; display: flex; flex-direction: column; gap: 10px; }
.winter-strip figure picture {
  display: block;
  height: clamp(340px, 40vw, 460px);
  overflow: hidden; border-radius: var(--radius-sm);
  background: rgba(237,235,224,0.05);
}
.winter-strip figure img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; transition: transform 1200ms var(--ease); }
.winter-strip figure:hover img { transform: scale(1.03); }
.winter-strip figcaption {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(237,235,224,0.7);
}
/* Unki snowboard card — looks like a sticker, transparent rounded square */
.winter-card--unki picture {
  background: rgba(237,235,224,0.08);
  border: 1px dashed rgba(237,235,224,0.22);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.winter-card--unki img {
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.25));
}
.winter-card--unki figcaption { color: var(--sand); font-style: italic; letter-spacing: 0.08em; text-transform: none; font-family: var(--font-display); font-size: 13px; }

/* ---------- Suites ---------- */
.suites { padding-block: clamp(80px, 12vw, 160px); background: var(--ivory); border-top: 1px solid var(--border); }
.suites__strip {
  display: flex;
  gap: clamp(14px, 1.6vw, 22px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  margin-bottom: clamp(32px, 4vw, 56px);
  scrollbar-width: thin;
  scrollbar-color: rgba(0,67,48,0.35) transparent;
}
.suites__strip::-webkit-scrollbar { height: 8px; }
.suites__strip::-webkit-scrollbar-thumb { background: rgba(0,67,48,0.3); border-radius: 999px; }
.suites__strip::-webkit-scrollbar-track { background: transparent; }
.suites__strip figure {
  margin: 0; display: flex; flex-direction: column; gap: 10px;
  flex: 0 0 auto;
  width: clamp(280px, 32vw, 380px);
  scroll-snap-align: start;
}
.suites__strip picture {
  display: block;
  height: clamp(360px, 42vw, 475px);
  overflow: hidden; border-radius: var(--radius-md);
  background: var(--ivory-soft);
}
.suites__strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 1200ms var(--ease); }
.suites__strip figure:hover img { transform: scale(1.02); }
.suites__strip figcaption {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-muted);
}
.suites__list { border-top: 1px solid var(--border); }
.suite-row {
  display: grid;
  grid-template-columns: 56px minmax(220px, 2.2fr) auto minmax(170px, 1fr) auto;
  align-items: start; gap: 24px;
  padding-block: 28px;
  border-bottom: 1px solid var(--border);
  transition: background var(--dur-base) var(--ease);
}
.suite-row:hover { background: var(--ivory-soft); }
.suite-row__idx {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 400;
  color: var(--ink-subtle);
  letter-spacing: -0.01em;
}
.suite-row__name h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 400; line-height: 1.05; letter-spacing: -0.015em;
  margin: 0 0 4px;
}
.suite-row__name span {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-muted);
}
.suite-row__variants {
  margin: 8px 0 0;
  font-size: 12px; line-height: 1.5;
  color: var(--ink-subtle);
  max-width: 60ch;
}
.suite-row__variants em {
  font-style: italic; color: var(--ink-muted);
}
.suite-row__meta { font-size: 14px; color: var(--ink-muted); font-variant-numeric: tabular-nums; white-space: nowrap; }
.suite-row__sleeps {
  font-size: 13px; line-height: 1.5;
  color: var(--ink-muted);
}
.suite-row__sleeps b { color: var(--post-green); font-weight: 700; }
.suite-row__price {
  display: flex; flex-direction: column; align-items: flex-end; gap: 2px;
  text-align: right;
}
.suite-row__price span {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-muted);
}
.suite-row__price strong {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--post-green); font-variant-numeric: tabular-nums;
  line-height: 1;
}
.suite-row__price em {
  font-style: normal;
  font-size: 11px; line-height: 1.4;
  color: var(--ink-muted);
  margin-top: 4px;
  max-width: 200px;
}
/* Trade commission callout — sits between suite list and footnote */
.suites__trade[hidden] { display: none !important; }
.suites__trade {
  margin-top: clamp(32px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  padding: clamp(24px, 3vw, 36px) clamp(24px, 3vw, 40px);
  background: var(--champagne);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
  position: relative;
  overflow: hidden;
}
.suites__trade::before {
  content: ""; position: absolute;
  right: -10%; top: -40%;
  width: 40vw; height: 40vw;
  background: radial-gradient(circle at center, rgba(225,125,68,0.10), transparent 60%);
  pointer-events: none;
}
.suites__trade-key {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  border-right: 1px solid var(--border);
  padding-right: clamp(24px, 3vw, 40px);
}
.suites__trade-key .eyebrow { color: var(--ink-muted); }
.suites__trade-key strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 7.5vw, 96px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
}
.suites__trade-key-label {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--post-green);
}
.suites__trade-body { position: relative; z-index: 1; }
.suites__trade-body p {
  margin: 0 0 10px;
  font-size: 15px; line-height: 1.6;
  color: var(--ink);
}
.suites__trade-body p:last-child { margin-bottom: 0; }
.suites__trade-body strong { font-weight: 700; color: var(--post-green); }
.suites__trade-meta {
  font-size: 13px !important;
  color: var(--ink-muted) !important;
}
.suites__trade-meta a {
  color: var(--post-green); border-bottom: 1px solid var(--post-green);
  transition: color var(--dur-base), border-color var(--dur-base);
}
.suites__trade-meta a:hover { color: var(--accent); border-color: var(--accent); }

.suites__foot {
  margin-top: 32px; font-size: 14px; line-height: 1.6; color: var(--ink-muted);
}
.suites__foot em { font-style: italic; color: var(--post-green); }
.suites__foot a {
  color: var(--post-green); border-bottom: 1px solid var(--post-green);
  transition: color var(--dur-base), border-color var(--dur-base);
}
.suites__foot a:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Access ---------- */
.access { padding-block: clamp(80px, 12vw, 160px); background: var(--ivory-soft); border-top: 1px solid var(--border); }
.access__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  margin-bottom: clamp(48px, 6vw, 80px);
}
.access__col h4 { margin-bottom: 18px; }
.access__note {
  margin: 16px 0 0;
  font-size: 13px; line-height: 1.55;
  color: var(--ink-muted);
  font-style: italic;
}
.access__note strong { color: var(--post-green); font-style: normal; font-weight: 700; }
.access__list { list-style: none; padding: 0; margin: 0; }
.access__list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-block: 14px;
  border-top: 1px solid var(--border);
  font-size: 15px;
}
.access__list li:last-child { border-bottom: 1px solid var(--border); }
.access__list span { color: var(--ink); }
.access__list b {
  font-family: var(--font-display); font-weight: 400;
  font-size: 18px; letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
}
.access__photo { margin: 0; }
.access__photo picture { display: block; aspect-ratio: 16/9; overflow: hidden; border-radius: var(--radius-md); background: var(--ivory); }
.access__photo img { width: 100%; height: 100%; object-fit: cover; }
.access__photo figcaption {
  margin-top: 14px; text-align: center;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-muted);
}

/* Map */
.access__map {
  margin: clamp(64px, 9vw, 120px) 0 0;
  padding: clamp(16px, 2vw, 28px);
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
#post-map {
  width: 100%;
  height: clamp(420px, 56vw, 640px);
  background: var(--ivory-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
  z-index: 0;             /* keep markers below sticky nav */
  isolation: isolate;
}
/* Brand-tint the OSM tiles toward warm POST ivory + green.
   Light, readable filter — labels stay legible; geography reads clearly. */
#post-map .post-tiles--base {
  filter:
    sepia(0.16)
    saturate(0.78)
    hue-rotate(8deg)
    brightness(1.02)
    contrast(1.02);
}
#post-map .post-tiles--labels {
  /* Labels get nearly no tint so they stay sharp and readable. */
  filter: contrast(1.18) saturate(0);
  opacity: 0.95;
  mix-blend-mode: multiply;     /* ink-onto-paper feel */
}
/* Leaflet chrome restyled */
.leaflet-container { font: inherit; background: var(--ivory-soft); }
.leaflet-control-attribution {
  background: rgba(237,235,224,0.86) !important;
  color: var(--ink-muted) !important;
  font-size: 10px !important;
  letter-spacing: 0.04em;
  padding: 4px 8px !important;
}
.leaflet-control-attribution a { color: var(--post-green) !important; }
.leaflet-control-zoom a {
  background: var(--ivory) !important;
  color: var(--post-green) !important;
  border: 1px solid var(--border) !important;
  width: 32px !important; height: 32px !important; line-height: 30px !important;
  font-size: 18px !important;
}
.leaflet-control-zoom a:hover { background: var(--post-green) !important; color: var(--ivory) !important; }
.leaflet-control-zoom a:first-child { border-top-left-radius: 8px !important; border-top-right-radius: 8px !important; }
.leaflet-control-zoom a:last-child  { border-bottom-left-radius: 8px !important; border-bottom-right-radius: 8px !important; }

/* Custom pin styles */
.post-pin {
  background: transparent !important;
  border: none !important;
  filter: drop-shadow(0 4px 8px rgba(0,67,48,0.25));
  transition: transform 240ms var(--ease);
}
.post-pin:hover { transform: scale(1.08); }
.post-pin--post { z-index: 1000 !important; filter: drop-shadow(0 8px 18px rgba(0,67,48,0.45)); }

/* Popup styling */
.leaflet-popup-content-wrapper {
  background: var(--post-green) !important;
  color: var(--ivory) !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: 0 12px 32px rgba(0,67,48,0.32) !important;
}
.leaflet-popup-content {
  font-family: var(--font-primary) !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
  margin: 12px 16px !important;
}
.leaflet-popup-content strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ivory);
  display: block;
  margin-bottom: 2px;
}
.post-popup__sub { color: var(--sand); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; }
.leaflet-popup-tip { background: var(--post-green) !important; }
.leaflet-popup-close-button { color: rgba(237,235,224,0.7) !important; }
.leaflet-popup-close-button:hover { color: var(--sand) !important; }

/* Legend */
.map-legend {
  display: flex; flex-wrap: wrap; gap: 18px;
  margin-top: 14px; padding: 4px 2px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-muted);
}
.map-legend span { display: inline-flex; align-items: center; gap: 8px; }
.map-legend__dot {
  display: inline-block; width: 14px; height: 14px; border-radius: 999px;
  /* layered ring: post-green outline → ivory ring → coloured core */
  box-shadow:
    0 0 0 1.5px var(--ivory) inset,
    0 0 0 1.5px var(--post-green);
}
.map-legend__dot--post { background: var(--post-green); width: 16px; height: 16px; }
.map-legend__dot--city { background: var(--sunrise); }
.map-legend__dot--ski  { background: var(--olive); }
.map-legend__dot--som  { background: var(--sunrise); position: relative; }
.map-legend__dot--som::after {
  content: "♪";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic;
  color: var(--post-green); font-size: 11px;
  line-height: 1;
}

.access__map figcaption {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-style: italic;
  color: var(--post-green);
  text-align: center;
  letter-spacing: -0.01em;
}

/* ---------- Familie POST · brand-anchor section (between pitch and SoM) ---------- */
.family {
  padding-block: clamp(96px, 14vw, 180px);
  background: var(--post-green);
  color: var(--ivory);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.family::before {
  /* soft sand-tone glow in the bottom-left, mirrors SoM's sunrise glow */
  content: ""; position: absolute; left: -15%; bottom: -25%;
  width: 55vw; height: 55vw;
  background: radial-gradient(circle at center, rgba(240, 191, 132, 0.12), transparent 60%);
  pointer-events: none;
}
.family__inner { position: relative; z-index: 1; max-width: 980px; }
.family__label { display: inline-block; margin-bottom: clamp(20px, 2.4vw, 32px); }
.family__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.4vw, 88px);
  font-weight: 400; line-height: 1.02; letter-spacing: -0.02em;
  margin: 0 0 clamp(36px, 5vw, 56px);
  text-wrap: balance;
}
.family__title em { font-style: italic; color: var(--sand); }
.family__title-emph { display: inline-block; }
.family__cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  font-size: clamp(15px, 1.2vw, 17px); line-height: 1.7;
  color: rgba(237, 235, 224, 0.88);
  margin-bottom: clamp(36px, 5vw, 56px);
}
.family__cols p { margin: 0; }
.family__cols strong { color: var(--ivory); font-weight: 700; }
.family__punch {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.25; letter-spacing: -0.01em;
  max-width: 780px;
  margin: 0 0 clamp(32px, 4vw, 48px);
  color: var(--ivory);
  text-wrap: balance;
}
.family__punch em { font-style: italic; color: var(--sand); }
.family__sell {
  margin: 0;
  padding: clamp(20px, 2.4vw, 28px) clamp(22px, 3vw, 32px);
  border-left: 3px solid var(--sunrise);
  background: rgba(0, 0, 0, 0.18);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  max-width: 760px;
}
.family__sell .eyebrow { display: block; margin-bottom: 8px; }
.family__sell blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.4;
  color: var(--ivory);
  text-wrap: balance;
}

/* ---------- Sound of Music feature (prominent section after pitch) ---------- */
.som-feature {
  padding-block: clamp(80px, 12vw, 160px);
  background: var(--champagne);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.som-feature::before {
  /* soft sunrise glow in the corner — keeps the section from looking flat */
  content: ""; position: absolute; right: -20%; top: -30%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle at center, rgba(225,125,68,0.18), transparent 60%);
  pointer-events: none;
}
.som-feature__rule {
  display: flex; gap: 22px; justify-content: center;
  font-family: var(--font-display); font-style: italic;
  font-size: 26px; line-height: 1;
  color: var(--accent);
  margin-bottom: clamp(24px, 3vw, 40px);
  opacity: 0.8;
}
.som-feature__inner { position: relative; z-index: 1; }
.som-feature__head { max-width: 880px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.som-feature__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 80px); font-weight: 400;
  line-height: 1.02; letter-spacing: -0.02em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.som-feature__title em { font-style: italic; color: var(--accent); }
.som-feature__lede {
  margin: 0; font-size: clamp(15px, 1.4vw, 17px); line-height: 1.6;
  color: var(--ink); max-width: 64ch; margin-inline: auto;
}
.som-feature__list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.som-feature__list li {
  background: var(--ivory);
  border: 1px solid rgba(0,67,48,0.08);
  border-radius: var(--radius-md);
  padding: clamp(20px, 2.4vw, 28px);
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.som-feature__list li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.som-feature__time {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px); font-style: italic;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.som-feature__list h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px); font-weight: 400;
  line-height: 1.12; letter-spacing: -0.01em;
  margin: 0;
  color: var(--post-green);
}
.som-feature__list p {
  margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink-muted);
}
.som-feature__foot {
  margin: clamp(28px, 4vw, 48px) auto 0;
  text-align: center;
  font-size: 13px; color: var(--ink-muted);
  letter-spacing: 0.02em;
}
.som-feature__foot a {
  color: var(--post-green); border-bottom: 1px solid var(--post-green);
  transition: color var(--dur-base), border-color var(--dur-base);
}
.som-feature__foot a:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Press / contacts ---------- */
.press { padding-block: clamp(80px, 12vw, 160px); background: var(--ivory); border-top: 1px solid var(--border); }
.press__cards {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
}
.press-card {
  background: var(--champagne);
  border-radius: var(--radius-md);
  padding: clamp(28px, 3.5vw, 48px);
  display: flex; flex-direction: column; gap: 14px;
  border: 1px solid rgba(0,67,48,0.08);
  transition: transform var(--dur-base) var(--ease);
}
.press-card:hover { transform: translateY(-3px); }
.press-card__role {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 4px;
}
.press-card h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400; line-height: 1.05; letter-spacing: -0.015em;
  margin: 0;
}
.press-card__lede { margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink); }
.press-card__contact {
  list-style: none; padding: 0; margin: auto 0 0;
  border-top: 1px solid rgba(0,67,48,0.18);
  padding-top: 14px;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 14px;
}
.press-card__contact a {
  color: var(--post-green);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base), color var(--dur-base);
}
.press-card__contact a:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Inquire form ---------- */
.inquire { padding-block: clamp(96px, 14vw, 180px); background: var(--post-green); color: var(--ivory); }
.inquire__inner { max-width: 980px; }
.inquire .section-head__title { color: var(--ivory); }
.inquire .section-head__title em { color: var(--sand); }
.inquire .section-head__lede { color: rgba(237,235,224,0.78); }

.form { display: flex; flex-direction: column; gap: 22px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(237,235,224,0.66);
}
.field__label em { font-style: normal; color: rgba(237,235,224,0.4); margin-left: 4px; letter-spacing: 0.08em; text-transform: none; font-size: 10px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(237,235,224,0.04);
  border: 1px solid rgba(237,235,224,0.18);
  color: var(--ivory);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px; line-height: 1.4;
  transition: border-color var(--dur-base), background var(--dur-base);
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(237,235,224,0.32); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: rgba(237,235,224,0.07);
}
.field textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.field select {
  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' fill='none' stroke='%23EDEBE0' stroke-width='1.5' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 38px;
}
.field select option { background: var(--post-green); color: var(--ivory); }
.field--checks { border: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.field--checks legend { padding: 0; margin-bottom: 4px; }
.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.check {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(237,235,224,0.18);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--dur-base), background var(--dur-base);
  font-size: 14px;
}
.check:hover { border-color: rgba(237,235,224,0.36); background: rgba(237,235,224,0.04); }
.check input { accent-color: var(--accent); width: 16px; height: 16px; }
.check input:checked + span { color: var(--ivory); }
.check span { color: rgba(237,235,224,0.86); }
.form__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid rgba(237,235,224,0.14);
}
.form__note {
  font-size: 12px; color: rgba(237,235,224,0.6);
  margin: 0; max-width: 540px; line-height: 1.55;
}
.form__note strong { color: var(--ivory); font-weight: 700; }

/* ---------- Footer ---------- */
.footer {
  background: var(--forest); color: var(--ivory);
  padding-block: clamp(64px, 9vw, 120px) 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: clamp(28px, 3vw, 48px);
  margin-bottom: clamp(48px, 6vw, 88px);
}
.footer h4 { margin-bottom: 14px; color: rgba(237,235,224,0.55); }
.footer p { margin: 0; font-size: 14px; line-height: 1.7; color: rgba(237,235,224,0.85); }
.footer a {
  color: rgba(237,235,224,0.85);
  border-bottom: 1px solid transparent;
  transition: color var(--dur-base), border-color var(--dur-base);
}
.footer a:hover { color: var(--sand); border-color: var(--sand); }
.footer__brand .footer__mark { width: 96px; height: 96px; margin-bottom: 18px; display: block; }
.footer__tag { color: rgba(237,235,224,0.7); max-width: 32ch; }
.footer__legal {
  display: flex; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(237,235,224,0.14);
  font-size: 12px; color: rgba(237,235,224,0.55);
}
.footer__legal p { margin: 0; font-size: inherit; color: inherit; }

/* ---------- Sticky mobile CTA ---------- */
.cta-stick {
  display: none;
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  z-index: 50;
  align-items: center; justify-content: space-between;
  padding: 16px 22px;
  border-radius: 999px;
  background: var(--accent); color: var(--ivory);
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(0,67,48,0.32);
  transform: translateY(120%);
  transition: transform var(--dur-base) var(--ease);
  pointer-events: none;
}
.cta-stick.is-visible { transform: translateY(0); pointer-events: auto; }

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* tablet */
@media (max-width: 1100px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: inline-flex; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .profile__list { grid-template-columns: 1fr; }
  .som-feature__list { grid-template-columns: 1fr 1fr; }
  .pitch__cols { grid-template-columns: 1fr; }
  .family__cols { grid-template-columns: 1fr; }
  .access__grid { grid-template-columns: 1fr 1fr; }
  .spa__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer__grid > div:nth-child(5) { display: none; }

  .unki-strip { grid-template-columns: 240px 1fr; }
}

/* phone */
@media (max-width: 720px) {
  body { padding-bottom: 80px; } /* room for sticky CTA */

  .ribbon__inner { font-size: 11px; gap: 10px; }
  .ribbon__cta { display: none; }
  .ribbon__sep { display: none; }

  .nav__brand-sub { display: none; }

  .hero { min-height: 94vh; min-height: 94dvh; }
  .hero__edition { display: none; }
  .hero__corner--tr { display: none; }
  .hero__corner--tl { font-size: 9px; letter-spacing: 0.18em; }
  .hero__title { font-size: clamp(48px, 14vw, 88px); }
  .hero__sub { font-size: 15px; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__ctas { width: 100%; }

  .marquee { padding-block: 14px; }
  .marquee__track { font-size: 11px; letter-spacing: 0.18em; }

  .pitch__grid { grid-template-columns: 1fr; }
  .pitch__label { writing-mode: horizontal-tb; transform: none; margin-top: 0; }
  .pitch__title { font-size: clamp(34px, 9vw, 56px); margin-bottom: 28px; }

  .family__title { font-size: clamp(36px, 10vw, 60px); }
  .family__punch { font-size: clamp(18px, 5vw, 24px); }

  .why__grid { grid-template-columns: 1fr; }

  .unki-strip { grid-template-columns: 1fr; gap: 18px; padding: 22px 22px 26px; }
  .unki-strip__art { max-width: 320px; margin: 0 auto; }
  .unki-strip__fig img { max-width: 140px; }

  .mosaic__cell { width: 78vw; }
  .mosaic__cell picture { height: 92vw; }

  .spa__hero img { height: 60vh; }
  .spa__hero-title { font-size: clamp(32px, 9vw, 56px); }
  .spa__intro { font-size: 16px; padding-block: 36px 8px; }
  .spa__grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .spa-tile picture { height: 56vw; }

  .seasons__grid { grid-template-columns: 1fr; }
  .winter-strip__row > figure { width: 72vw; }
  .winter-strip figure picture { height: 88vw; }

  .suites__strip > figure { width: 72vw; }
  .suites__strip picture { height: 90vw; }
  .awards__grid { grid-template-columns: repeat(3, 1fr); }
  .suites__trade {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 22px;
  }
  .suites__trade-key {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0; padding-bottom: 16px;
    flex-direction: row; align-items: baseline; gap: 12px;
  }
  .suites__trade-key strong { font-size: clamp(48px, 13vw, 64px); }
  .suite-row {
    grid-template-columns: 36px 1fr auto;
    grid-template-areas:
      "idx  name  price"
      "idx  meta  meta"
      ".    sleeps sleeps";
    gap: 8px 16px;
    padding-block: 24px;
  }
  .suite-row__idx { grid-area: idx; align-self: start; font-size: 22px; }
  .suite-row__name { grid-area: name; }
  .suite-row__name h3 { font-size: 22px; }
  .suite-row__meta { grid-area: meta; font-size: 13px; }
  .suite-row__sleeps { grid-area: sleeps; font-size: 13px; }
  .suite-row__price { grid-area: price; align-items: flex-end; max-width: 60%; }
  .suite-row__price strong { font-size: 22px; }
  .suite-row__price em { font-size: 11px; }

  .access__grid { grid-template-columns: 1fr; gap: 24px; margin-bottom: 36px; }
  .access__list b { font-size: 16px; }

  .access__map { padding: 12px; }
  /* Hide non-essential map labels on phones to keep it readable; keep POST + cities */
  .access__map svg text { font-size: 14px; }
  .som-feature__list { grid-template-columns: 1fr; }
  .som-feature__rule { gap: 14px; font-size: 22px; }

  .press__cards { grid-template-columns: 1fr; }

  .form__row { grid-template-columns: 1fr; }
  .checks { grid-template-columns: 1fr; }
  .form__foot { flex-direction: column; align-items: stretch; }
  .form__foot .btn { justify-content: center; width: 100%; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__brand { grid-column: span 2; }
  .footer__legal { flex-direction: column; gap: 8px; align-items: flex-start; }

  .cta-stick { display: flex; }
}

/* small phone */
@media (max-width: 420px) {
  .ribbon__text { font-size: 10px; gap: 6px; }
  .ribbon__text strong { font-size: 10px; }
  .nav__brand { font-size: 20px; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .hero__scroll { animation: none; }
  .hero__video { display: none; }
  .hero__media::after {
    content: ""; position: absolute; inset: 0;
    background: url("../media/hero-poster.jpg") center/cover no-repeat;
  }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
