/* ============ Explora-style top banner ============ */
.nav-explora {
  position: relative;
  z-index: 60;
  background: #000;
  color: #fff;
  display: block;
}
.nav-explora__top {
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 11px;
  letter-spacing: 0.12em;
}
.nav-explora__top-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 8px 32px;
  display: flex; align-items: center; justify-content: flex-end;
}
.nav-explora__lang { display: flex; gap: 8px; align-items: center; color: rgba(255,255,255,0.55); }
.nav-explora__lang button {
  background: transparent; border: 0; color: inherit;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.12em;
  padding: 4px 2px;
  cursor: pointer;
  text-transform: uppercase;
}
.nav-explora__lang button.is-active { color: #fff; font-weight: 500; }
.nav-explora__top-links { display: flex; gap: 24px; align-items: center; }
.nav-explora__top-links--right { margin-left: auto; }
.nav-explora__top-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-explora__top-links a:hover { color: #fff; }
.nav-explora__top-cta {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff !important;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.2);
}
.nav-explora__main {
  background: #000;
  padding-bottom: 0;
}
.nav-explora__main-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 56px;
}
.nav-explora__menu {
  display: none;
}
.nav-explora__menu span {
  display: block; height: 1px; background: #fff; width: 22px;
}
.nav-explora__logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  max-width: 120px;
}
.nav-explora__logo > a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 160ms ease;
}
.nav-explora__logo > a:hover { opacity: 0.78; }
.nav-explora__logo img {
  display: block;
  height: 70px;
  width: auto;
  max-width: 120px;
  max-height: 70px;
  object-fit: contain;
}
.nav-explora__reserve {
  flex: 0 0 auto;
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.4);
  transition: all .2s ease;
}
.nav-explora__reserve:hover { background: #fff; color: #000; }
.nav-explora__links {
  display: flex; gap: 36px;
  flex: 1 1 auto;
  padding: 0;
  border-bottom: none;
}
.nav-explora__links a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  transition: color .2s ease;
}
.nav-explora__links a:hover { color: #fff; }
.nav-explora__links a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--ev-terracotta);
}

/* Hamburger — hidden on desktop */
.nav-explora__hamburger {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-explora__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  border-radius: 1px;
}

@media (max-width: 880px) {
  .nav-explora__top { display: none; }
  .nav-explora__main { padding-bottom: 0; }
  .nav-explora__main-inner {
    padding: 12px 16px !important;
    display: grid !important;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px;
  }
  .nav-explora__hamburger {
    display: flex;
    justify-self: start;
    grid-column: 1;
  }
  .nav-explora__logo {
    grid-column: 2;
    justify-self: center;
    max-width: none;
  }
  .nav-explora__logo img { height: 38px; max-height: 38px; max-width: 110px; }
  .nav-explora__reserve {
    grid-column: 3;
    justify-self: end;
    margin-left: 0;
    padding: 6px 10px;
    font-size: 9px;
    line-height: 1.15;
    text-align: center;
    letter-spacing: 0.14em;
    flex-direction: column;
    gap: 2px;
    max-width: 90px;
  }
  .nav-explora__reserve svg { display: none; }
  .nav-explora__reserve-text {
    display: inline-block;
    word-spacing: 9999px;
  }

  /* Off-canvas / dropdown nav */
  .nav-explora__links {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 0;
    padding: 16px 0 8px;
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 12px;
    flex: 0 0 100%;
  }
  .nav-explora__links.is-open { display: flex; }
  .nav-explora__links a {
    font-size: 13px;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    letter-spacing: 0.18em;
  }
  .nav-explora__links a:last-child { border-bottom: none; }
}

/* ============ (legacy transparent nav classes — kept unused) ============ */
.nav {
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 50;
}
.nav__inner {
  max-width: 1440px; margin: 0 auto;
  padding: 24px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  font-size: 28px;
  letter-spacing: 0.02em;
  font-style: italic;
}
.nav--dark .nav__logo, .nav--dark .nav__links a, .nav--dark .nav__phone { color: #fff; }
.nav--light .nav__logo, .nav--light .nav__links a, .nav--light .nav__phone { color: var(--ev-ink); }
.nav__links {
  display: flex; gap: 28px;
}
.nav__links a {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; font-weight: 500;
  opacity: 0.85;
}
.nav__links a:hover { opacity: 1; }
.nav__cta { display: flex; align-items: center; gap: 24px; }
.nav__phone {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-decoration: none;
  opacity: 0.85;
}
.nav__btn { padding: 12px 20px; font-size: 11px; }

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__phone { display: none; }
}

/* ============ Sticky bar ============ */
.sticky-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--ev-evergreen);
  color: #fff;
  z-index: 100;
  transform: translateY(-100%);
  transition: transform .35s cubic-bezier(.5,0,.2,1);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sticky-bar.is-visible { transform: translateY(0); }
.sticky-bar__inner {
  max-width: 1440px; margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.sticky-bar__msg { display: flex; flex-direction: column; gap: 2px; }
.sticky-bar__title { font-size: 18px; }
.sticky-bar__actions { display: flex; gap: 12px; align-items: center; }
.sticky-bar__btn-secondary {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.4);
  padding: 12px 18px; font-size: 11px;
}
.sticky-bar__btn-secondary:hover { background: rgba(255,255,255,0.08); color: #fff; }
.sticky-bar .btn-primary { padding: 12px 18px; font-size: 11px; }

@media (max-width: 720px) {
  .sticky-bar__title { font-size: 14px; }
  .sticky-bar__btn-secondary { display: none; }
}

/* ============ HERO A ============ */
.hero { position: relative; }
.hero-a {
  min-height: 760px;
  height: 92vh;
  max-height: 920px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-a__media { position: absolute; inset: 0; }
.hero-a__photo { position: absolute; inset: 0; }
.hero-a__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,32,28,0.5) 0%, rgba(20,32,28,0) 30%, rgba(20,32,28,0.4) 60%, rgba(20,32,28,0.85) 100%);
}
.hero-a__content {
  position: relative;
  padding-bottom: 80px;
  padding-top: 80px;
  width: 100%;
}
.hero-a__eyebrow {
  display: flex; align-items: center; gap: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}
.hero-a__rule { width: 40px; height: 1px; background: rgba(255,255,255,0.5); }
.hero-a__title {
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  font-weight: 400;
  max-width: 1100px;
}
.hero-a__lede {
  font-size: 18px;
  line-height: 1.55;
  max-width: 540px;
  color: rgba(255,255,255,0.9);
  margin: 0 0 40px;
}
.hero-a__cta-row { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; margin-bottom: 64px; }
.hero-a__play {
  background: transparent; border: 0; color: #fff;
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 16px 0;
}
.hero-a__play-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.4);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .25s ease;
}
.hero-a__play:hover .hero-a__play-icon { background: rgba(255,255,255,0.2); transform: scale(1.05); }
.hero-a__meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 32px;
  max-width: 720px;
}
.hero-a__meta-item { display: flex; flex-direction: column; gap: 6px; }
.hero-a__meta-num { font-size: 44px; line-height: 1; font-weight: 400; }
.hero-a__meta-item .eyebrow { color: rgba(255,255,255,0.7); }
.hero-a__scroll {
  position: absolute; bottom: 32px; right: 40px;
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.7);
  writing-mode: vertical-rl;
}

/* ============ HERO B ============ */
.hero-b {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  min-height: 760px;
  height: 92vh;
  max-height: 920px;
}
.hero-b__media { position: relative; overflow: hidden; }
.hero-b__photo { position: absolute; inset: 0; }
.hero-b__caption {
  position: absolute; bottom: 32px; left: 32px;
  color: #fff;
}
.hero-b__caption-text { font-size: 18px; }
.hero-b__panel {
  background: var(--ev-evergreen);
  color: #fff;
  display: flex; align-items: center;
  position: relative;
}
.hero-b__panel::before {
  content: "";
  position: absolute; left: -1px; top: 0; bottom: 0;
  width: 1px; background: rgba(255,255,255,0.06);
}
.hero-b__inner {
  padding: 80px 64px;
  max-width: 560px;
  width: 100%;
}
.hero-b__topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 24px;
  margin-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.hero-b__logo { font-size: 28px; font-style: italic; }
.hero-b__topbar .eyebrow { color: rgba(255,255,255,0.6); }
.hero-b__eyebrow { color: var(--ev-terracotta); margin-bottom: 24px; }
.hero-b__title {
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.02;
  margin: 0 0 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.hero-b__lede {
  font-size: 16px; line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0 0 36px;
}
.hero-b__field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 4px;
}
.hero-b__field input {
  background: transparent; border: 0; color: #fff;
  padding: 16px 0; font-size: 15px; outline: none;
  font-family: var(--sans);
}
.hero-b__field input::placeholder { color: rgba(255,255,255,0.5); }
.hero-b__field .btn { padding: 14px 22px; font-size: 11px; }
.hero-b__finep {
  display: flex; align-items: center; gap: 8px;
  margin-top: 14px;
  font-size: 12px; color: rgba(255,255,255,0.6);
}
.hero-b__trust {
  display: flex; align-items: center; gap: 14px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-b__trust-stars { color: #ffffff; display: flex; gap: 2px; }
.hero-b__trust-text { font-size: 13px; color: rgba(255,255,255,0.7); }

@media (max-width: 980px) {
  .hero-b { grid-template-columns: 1fr; height: auto; max-height: none; }
  .hero-b__media { min-height: 50vh; }
  .hero-b__inner { padding: 56px 32px; }
}

/* ============ HERO C ============ */
.hero-c {
  min-height: 820px;
  height: 100vh;
  max-height: 980px;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.hero-c__media { position: absolute; inset: 0; }
.hero-c__photo { position: absolute; inset: 0; }
.hero-c__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(20,32,28,0.2) 0%, rgba(20,32,28,0.7) 100%);
}
.hero-c__content {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 32px;
}
.hero-c__center { text-align: center; max-width: 960px; }
.hero-c__crest { margin: 0 auto 32px; opacity: 0.95; }
.hero-c__eyebrow { color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.hero-c__title {
  font-size: clamp(48px, 7.5vw, 108px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  font-weight: 400;
}
.hero-c__title em { color: var(--ev-terracotta); font-style: italic; }
.hero-c__lede {
  font-size: 17px; line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255,255,255,0.85);
}
.hero-c__offer {
  margin-top: 56px;
  background: rgba(20,32,28,0.55);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 24px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  max-width: 1020px;
  width: 100%;
}
.hero-c__offer-side { display: flex; flex-direction: column; gap: 6px; }
.hero-c__offer-title { font-size: 22px; }
.hero-c__offer-perks {
  display: flex; gap: 28px; flex-wrap: wrap;
  border-left: 1px solid rgba(255,255,255,0.18);
  padding-left: 32px;
}
.hero-c__perk {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.85);
}
.hero-c__perk svg { color: var(--ev-terracotta); }
.hero-c__offer-btn { padding: 14px 22px; font-size: 11px; }

@media (max-width: 880px) {
  .hero-c__offer { grid-template-columns: 1fr; gap: 20px; }
  .hero-c__offer-perks { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.18); padding-top: 20px; }
}

/* ============ Section heads ============ */
.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head--center { margin: 0 auto 64px; text-align: center; }
.section-head__title {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 16px 0 20px;
  font-weight: 400;
}
.section-head__lede {
  font-size: 17px; line-height: 1.6;
  color: var(--ev-muted);
  margin: 0;
  max-width: 620px;
  text-wrap: pretty;
}
.section-head--center .section-head__lede { margin-left: auto; margin-right: auto; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ev-terracotta);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; font-weight: 500;
  transition: gap .25s ease;
}
.link-arrow:hover { gap: 14px; }
.link-arrow--dark { color: var(--ev-ink); }

/* ============ Lodges ============ */
.lodges { padding: 128px 0; background: var(--ev-bone); }
.lodges__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.lodge-card {
  background: #fff;
  display: flex; flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.lodge-card:hover { transform: translateY(-4px); box-shadow: var(--ev-shadow); }
.lodge-card__media { aspect-ratio: 4/5; cursor: pointer; overflow: hidden; }
.lodge-card__media img { transition: transform .6s ease; }
.lodge-card__media:hover img { transform: scale(1.04); }
.lodge-card__body { padding: 28px 28px 32px; }
.lodge-card__kicker { color: #666666; margin-bottom: 12px; }
.lodge-card__name { font-size: 26px; line-height: 1.1; margin: 0 0 12px; }
.lodge-card__meta {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 13px; color: var(--ev-muted);
  margin-bottom: 16px;
}
.lodge-card__meta svg { vertical-align: -2px; margin-right: 4px; color: var(--ev-terracotta); }
.lodge-card__excursions {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.05em;
  padding: 6px 10px;
  background: var(--ev-bone-2);
  margin-bottom: 24px;
}
.lodge-card__actions { border-top: 1px solid var(--ev-line); padding-top: 20px; }

@media (max-width: 960px) {
  .lodges__grid { grid-template-columns: 1fr; }
}

/* ============ Stay & Explore ============ */
.stay { padding: 0 0 12px; background: var(--ev-bone); }
.stay__container { padding-top: 70px; }
.stay__bullets {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 620px;
}
.stay__bullet {
  display: flex; align-items: center; gap: 14px;
  font-family: "Objektiv MK1", "Inter", sans-serif;
  font-size: 16px;
  color: var(--ev-ink);
  line-height: 1.5;
}
.stay__bullet-mark {
  width: 6px; height: 6px;
  background: #333333;
  border-radius: 0;
  flex-shrink: 0;
}
.stay__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.stay__tile {
  background: #fff;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  display: flex; flex-direction: column;
  font-family: var(--sans);
  transition: transform .35s ease, box-shadow .35s ease;
}
.stay__tile:hover { transform: translateY(-4px); box-shadow: var(--ev-shadow); }
.stay__media { aspect-ratio: 16/10; position: relative; }
.stay__credit {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-family: "objektiv-mk1", "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  background: rgba(0,0,0,0.45);
  padding: 6px 10px;
  border-radius: 2px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
  max-width: calc(100% - 28px);
}
.stay__body { padding: 28px 32px 32px; }
.stay__tag { color: #666666; margin-bottom: 12px; }
.stay__title { font-size: 26px; line-height: 1.15; margin-bottom: 10px; color: var(--ev-ink); }
.stay__caption { font-size: 14px; line-height: 1.6; color: var(--ev-muted); }

.stay__lightbox {
  position: fixed; inset: 0;
  background: rgba(20,32,28,0.92);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px 32px;
  cursor: zoom-out;
  animation: fade-up .25s ease;
}
.stay__lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 78vh;
  object-fit: contain;
  cursor: default;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6);
}
.stay__lightbox-cap {
  margin-top: 24px;
  color: #fff;
  text-align: center;
}
.stay__lightbox-cap .serif { font-size: 22px; }
.stay__lightbox-sub { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 4px; }
.stay__lightbox-close {
  position: absolute; top: 24px; right: 28px;
  background: transparent; border: 0;
  color: #fff;
  font-size: 32px; line-height: 1;
  cursor: pointer;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
}
.stay__lightbox-close:hover { background: rgba(255,255,255,0.1); }

@media (max-width: 880px) {
  .stay__grid { grid-template-columns: 1fr; }
}
.press {
  background: var(--ev-bone);
  padding: 96px 0;
}
.press--editorial { padding: 10px 0 80px; }
.press--editorial .press__head { margin: 90px 0 72px; }
.press__head { text-align: center; margin-bottom: 64px; }

/* ===== Editorial awards treatment ===== */
.press--editorial {
  background: #F4F4F4;
  color: #333333;
  border-top: 0;
  border-bottom: 0;
  padding: 140px 0 132px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.press__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.press__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.85);
}
.press__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 42, 38, 0.78) 0%, rgba(31, 42, 38, 0.86) 50%, rgba(31, 42, 38, 0.95) 100%),
    linear-gradient(90deg, rgba(31, 42, 38, 0.65) 0%, rgba(31, 42, 38, 0.35) 55%, rgba(31, 42, 38, 0.55) 100%);
}
.press__inner {
  position: relative;
}
.press__top {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  margin-bottom: 80px;
}
.press--editorial .press__head {
  text-align: left;
  margin: 0 0 72px;
  max-width: 60ch;
}
.press--editorial .press__eyebrow {
  color: #999999 !important;
  font-size: 14px !important;
  letter-spacing: 0.32em;
}
.press--editorial .press__title {
  color: #333333;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 18px 0 24px;
  text-wrap: balance;
}
.press--editorial .press__lede {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55;
  color: #333333;
  margin: 0;
}
.press__list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(51, 51, 51, 0.18);
  border-bottom: 1px solid rgba(51, 51, 51, 0.18);
}
.press__list .press__row {
  border-bottom: none !important;
  border-right: 1px solid rgba(51, 51, 51, 0.18);
  padding: 36px 32px !important;
  display: flex !important;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.press__list .press__row:last-child { border-right: none; }
.press__list .press__row-body {
  display: flex !important;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
}
.press__list .press__year {
  text-align: left !important;
}
@media (max-width: 880px) {
  .press__list { grid-template-columns: 1fr; }
  .press__list .press__row { border-right: none; border-bottom: 1px solid rgba(51,51,51,0.18) !important; }
  .press__list .press__row:last-child { border-bottom: none !important; }
}
.press__list--legacy {
  display: none;
}

/* ===== Editorial awards card grid ===== */
.press__awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(51, 51, 51, 0.18);
  border-bottom: 1px solid rgba(51, 51, 51, 0.18);
}
.press__award-card {
  padding: 56px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  border-right: 1px solid rgba(51, 51, 51, 0.18);
}
.press__award-card:last-child { border-right: none; }
.press__award-logo {
  width: 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  opacity: 0.92;
  flex: 0 0 auto;
}
.press__award-logo svg { display: block; width: 140px !important; height: 80px !important; max-width: 140px; max-height: 80px; }
.press__award-name {
  font-family: "Objektiv MK1", "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
}
.press__award-quote {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.35;
  color: #1a1a1a;
  font-style: italic;
  text-wrap: balance;
  max-width: 22ch;
}
.press__award-year {
  font-family: "Objektiv MK1", "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #666;
  margin-top: 4px;
}
@media (max-width: 880px) {
  .press__awards-grid { grid-template-columns: 1fr; }
  .press__award-card { border-right: none; border-bottom: 1px solid rgba(51, 51, 51, 0.18); padding: 40px 24px; }
  .press__award-card:last-child { border-bottom: none; }
}
.press__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: baseline;
  padding: 28px 0 26px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.18);
}
.press__num {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  color: #333333;
  letter-spacing: 0;
  line-height: 1;
  padding-top: 4px;
}
.press__row-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 80px;
  align-items: baseline;
}
.press--editorial .press__name {
  font-family: "Objektiv MK1", "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  font-weight: 600;
  color: #333333;
  text-transform: uppercase;
  grid-column: 1 / -1;
}
.press__quote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.3;
  color: #333333;
  letter-spacing: -0.005em;
  margin: 0;
  text-wrap: pretty;
}
.press__year {
  font-family: "Objektiv MK1", "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: #333333;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: right;
}
.press__figure {
  display: none;
}

@media (max-width: 980px) {
  .press--editorial { padding: 88px 0; }
  .press__row { grid-template-columns: 1fr; gap: 16px; padding: 22px 0; }
  .press__row-body { grid-template-columns: 1fr; }
  .press__year { text-align: left; }
}
.press__title {
  font-size: clamp(36px, 4.5vw, 56px);
  margin: 16px 0 0;
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.press__head .eyebrow { color: var(--ev-muted); }
.press__grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 32px; align-items: center;
}
.press__grid--three {
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  max-width: 980px;
  margin: 0 auto;
}
.press__item {
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.press__item--logo img.press__logo {
  max-height: 120px;
  width: auto;
  display: block;
}
.press__text { display: flex; flex-direction: column; gap: 8px; }
.press__name {
  font-family: "Objektiv MK1", "Inter", sans-serif;
  font-size: 13px; letter-spacing: 0.22em; font-weight: 600;
  color: var(--ev-ink);
}
.press__sub {
  font-family: var(--serif);
  font-size: 16px; font-style: italic;
  color: var(--ev-muted);
}

@media (max-width: 880px) {
  .press__grid, .press__grid--three { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* ============ Included ============ */
.included { padding: 128px 0; background: var(--ev-evergreen); color: #fff; }
.included .section-head__title { color: #fff; }
.included .section-head__lede { color: rgba(255,255,255,0.7); }
.included__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px 64px;
  margin-top: 24px;
}
.included__item {
  display: grid; grid-template-columns: auto 1fr;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.included__check {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  color: #ffffff;
  display: flex; align-items: center; justify-content: center;
}
.included__title { font-size: 22px; margin-bottom: 8px; }
.included__desc { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.7); }

@media (max-width: 880px) {
  .included__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============ Map ============ */
.map-sec { padding: 12px 0 128px; background: var(--ev-bone); }
.map-sec__layout {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.map-sec__canvas {
  position: relative;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
}
.map-sec__svg {
  width: 100%;
  height: auto;
  max-height: 720px;
  display: block;
}
.map-sec__wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-pin-btn {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  z-index: 2;
}
.map-pin-btn__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  pointer-events: none;
}
.map-pin-btn:hover .map-pin-btn__ring {
  border-color: rgba(0,0,0,0.4);
}
.map-pin-btn.is-active .map-pin-btn__ring {
  border-color: #000;
  animation: mapPulseRing 2.4s ease-out infinite;
}
@keyframes mapPulseRing {
  0% { box-shadow: 0 0 0 0 rgba(0,0,0,0.35); }
  100% { box-shadow: 0 0 0 14px rgba(0,0,0,0); }
}
.map-pin-btn__popup {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
  animation: mapPopFade 0.3s ease-out;
}
.map-pin-btn__popup img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.map-pin-btn__popup-name {
  display: block;
  padding: 8px 10px 10px;
  font-family: 'Objektiv MK1', 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #333;
  text-align: left;
  line-height: 1.3;
  font-weight: 500;
}
.map-pin-btn__popup::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.06);
}
@keyframes mapPopFade {
  0% { opacity: 0; transform: translateX(-50%) translateY(6px); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.map-sec__img {
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: contain;
}

.map-sec__info { display: flex; flex-direction: column; justify-content: center; }
.map-sec__info .eyebrow { color: var(--ev-muted); }
.map-sec__name { font-size: 38px; line-height: 1.05; margin: 16px 0 16px; font-weight: 400; }
.map-sec__desc { font-size: 16px; color: var(--ev-muted); line-height: 1.6; margin-bottom: 32px; max-width: 480px; }
.map-sec__cta { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 32px; font-family: var(--sans); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; }
.map-sec__list { display: flex; flex-direction: column; border-top: 1px solid var(--ev-line); }
.map-sec__row {
  background: transparent;
  border: 0; border-bottom: 1px solid var(--ev-line);
  padding: 18px 0;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-family: var(--sans);
  transition: padding .25s ease;
}
.map-sec__row:hover { padding-left: 8px; }
.map-sec__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #999; opacity: 0.4;
}
.map-sec__row.is-active .map-sec__dot { background: #000; opacity: 1; }
.map-sec__rowname {
  font-family: "Objektiv MK1", "Inter", sans-serif;
  font-size: 15px; font-weight: 500; letter-spacing: 0.01em;
  color: var(--ev-ink);
}
.map-sec__row svg { color: var(--ev-muted); }

@media (max-width: 980px) {
  .map-sec__layout { grid-template-columns: 1fr; gap: 32px; }
}

/* ============ FAQ ============ */
.faq { padding: 128px 0; background: var(--ev-bone-2); }
.faq__layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; }
.faq__title { font-size: clamp(36px, 4vw, 52px); margin: 16px 0 16px; line-height: 1.05; font-weight: 400; }
.faq__lede { font-size: 16px; color: var(--ev-muted); line-height: 1.6; margin-bottom: 32px; max-width: 380px; }
.faq__list { border-top: 1px solid var(--ev-line-strong); }
.faq__item { border-bottom: 1px solid var(--ev-line-strong); }
.faq__q {
  width: 100%;
  background: transparent; border: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0;
  text-align: left;
  cursor: pointer;
  font-size: 22px;
  font-family: var(--serif);
  color: var(--ev-ink);
}
.faq__icon {
  width: 32px; height: 32px;
  border: 1px solid var(--ev-line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.faq__item.is-open .faq__icon { background: var(--ev-evergreen); color: #fff; border-color: var(--ev-evergreen); }
.faq__a {
  padding: 0 0 28px;
  font-size: 15px; line-height: 1.65;
  color: var(--ev-muted);
  max-width: 720px;
  animation: fade-up .35s ease;
}

@media (max-width: 880px) {
  .faq__layout { grid-template-columns: 1fr; gap: 32px; }
}

/* ============ Lead form ============ */
.lead {
  position: relative;
  padding: 160px 0;
  color: #fff;
  overflow: hidden;
}
.lead__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.lead__bg img { filter: brightness(0.85) saturate(1.05); }
.lead__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 100%);
}
.lead__container { position: relative; z-index: 1; }
.lead__card {
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.lead__intro { color: #000; }
.lead__intro .eyebrow,
.lead__intro-eyebrow { color: #000; margin-bottom: 16px; display: block; }
.lead__offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid #000;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #000;
  margin-bottom: 24px;
}
.lead__offer-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #B8553A;
  flex-shrink: 0;
}
.lead__date-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 8px;
}
.lead__date-row select { width: 100%; }
.field .req { color: #B8553A; margin-left: 4px; font-weight: 600; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.lead__required-note {
  font-size: 12px;
  color: #666666;
  margin: 0;
}
.lead__required-note span { color: #B8553A; font-weight: 600; }

/* ============ A11y: skip link + focus-visible ============ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  z-index: 9999;
  padding: 12px 20px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #fff;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 8px;
  outline: 2px solid #B8553A;
  outline-offset: 2px;
}
/* Restore visible focus rings — never hide :focus-visible */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid #B8553A;
  outline-offset: 2px;
}
main:focus { outline: none; }
.lead__title { font-size: clamp(32px, 3.5vw, 48px); line-height: 1.05; margin: 0 0 24px; font-weight: 400; color: #000; }
.lead__lede { font-size: 16px; line-height: 1.6; color: #333333; margin-bottom: 32px; }
.lead__bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.lead__bullets li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  color: #333333;
}
.lead__bullets svg { color: #000; }

.lead__form { display: flex; flex-direction: column; gap: 28px; }
.lead__row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.lead__cta-row { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.lead__submit {
  background: #000000;
  color: #ffffff;
  padding: 18px 28px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #000000;
}
.lead__submit:hover { background: #222; color: #fff; transform: translateY(-1px); }
.lead__submit svg { color: #fff; }
.lead__fineprint { font-size: 11px; color: #666666; line-height: 1.5; }

.lead__success { text-align: center; max-width: 600px; margin: 0 auto; padding: 24px 0; grid-column: 1 / -1; }
.lead__check {
  width: 72px; height: 72px; border-radius: 50%;
  background: #ffffff;
  color: #000;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.lead__success-title { font-size: 44px; margin: 0 0 16px; font-weight: 400; color: #000; }
.lead__success-text { font-size: 16px; color: #333333; line-height: 1.6; margin: 0 0 24px; }
.lead__success-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Objektiv MK1", "Inter", sans-serif;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #000; text-decoration: none; padding-bottom: 4px;
  border-bottom: 1px solid #000; transition: gap .2s ease;
}
.lead__success-cta:hover { gap: 12px; }

/* Hero email form — success state */
.hero-b__success {
  display: flex; gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 20px 22px; border-radius: 4px;
  max-width: 480px;
  animation: heroFadeIn .35s ease;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-b__success-check {
  flex: 0 0 36px; width: 36px; height: 36px; border-radius: 50%;
  background: #BAA34F; color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.hero-b__success-body { flex: 1; min-width: 0; }
.hero-b__success-title {
  font-family: "Objektiv MK1", "Inter", sans-serif;
  font-size: 15px; font-weight: 500; color: #fff; margin: 0 0 6px;
}
.hero-b__success-text {
  font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.5; margin: 0 0 12px;
}
.hero-b__success-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: "Objektiv MK1", "Inter", sans-serif;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #BAA34F; text-decoration: none; transition: gap .2s ease;
}
.hero-b__success-cta:hover { gap: 10px; }

@media (max-width: 980px) {
  .lead__card { grid-template-columns: 1fr; gap: 48px; padding: 48px 32px; }
  .lead__row { grid-template-columns: 1fr; gap: 24px; }
}

/* ============ Footer ============ */
.footer {
  background: var(--ev-evergreen);
  color: rgba(255,255,255,0.7);
  padding: 96px 0 40px;
}
.footer__top { display: grid; grid-template-columns: 1.2fr 2fr; gap: 80px; margin-bottom: 64px; }
.footer__logo { font-size: 36px; color: #fff; font-style: italic; margin-bottom: 16px; }
.footer__tag { font-size: 14px; line-height: 1.6; max-width: 360px; margin-bottom: 32px; }
.footer__follow {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.footer__follow-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.footer__follow-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: #fff;
  line-height: 1.4;
}
.footer__social { display: flex; gap: 24px; }
.footer__social a {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s ease;
}
.footer__social a:hover { opacity: 0.7; }
.footer__social svg { flex-shrink: 0; }
.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__heading { color: #fff; margin-bottom: 8px; }
.footer__col a { color: rgba(255,255,255,0.65); font-size: 13px; text-decoration: none; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; padding-top: 32px;
  font-family: var(--mono);
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { color: rgba(255,255,255,0.55); text-decoration: none; }

@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; gap: 16px; }
}

/* ============================================================
   Mobile section padding rebalance — section padding tokens
   are sized for desktop (128–160px). On phones they collapse
   into giant whitespace gaps. This block tightens them.
   ============================================================ */
@media (max-width: 720px) {
  .stay { padding: 56px 0; }
  .press { padding: 48px 0; }
  .press--editorial { padding: 10px 0 48px; }
  .press--editorial .press__head { margin: 32px 0 32px; }
  .included { padding: 64px 0; }
  .map-sec { padding: 12px 0 64px; }
  .faq { padding: 64px 0; }
  .lead { padding: 72px 0; }

  /* Tighten internal section-head spacing too */
  .section-head { margin-bottom: 32px; }

  /* Stay container override (was 70px top in JSX inline) */
  .stay__container { padding-top: 32px; }

  /* Lead card padding was 48px 32px at <980px — tighten further on phones */
  .lead__card { padding: 36px 20px; gap: 32px; }
}

/* Extra tightening for very small phones */
@media (max-width: 420px) {
  .stay { padding: 48px 0; }
  .press { padding: 40px 0; }
  .press--editorial { padding: 10px 0 40px; }
  .press--editorial .press__head { margin: 24px 0 24px; }
  .included { padding: 56px 0; }
  .map-sec { padding: 8px 0 48px; }
  .faq { padding: 56px 0; }
  .lead { padding: 56px 0; }
  .stay__container { padding-top: 24px; }
}
