.cinematic {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 740px;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 0 0 clamp(48px, 6vw, 72px);
  background: var(--forest);
}

.cinematic__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cinematic__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg,
      rgba(10, 22, 12, 0.72) 0%,
      rgba(10, 22, 12, 0.35) 45%,
      rgba(10, 22, 12, 0.78) 100%);
}

.cinematic__badge,
.cinematic__headline,
.cinematic__descriptor,
.cinematic__ticker,
.cinematic__scroll {
  position: absolute;
  z-index: 2;
}


.cinematic__badge {
  top: clamp(80px, 10vw, 100px);
  left: clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.85);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(196, 154, 60, 0.7);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(196, 154, 60, 0);
  }
}

/* ── Main editorial headline ── */
.cinematic__headline {
  top: 44%;
  right: clamp(20px, 4vw, 48px);
  transform: translateY(-50%);
  text-align: right;
  max-height: 55vh;
  overflow: visible;
}

.cinematic__headline h1 {
  font-family: var(--display);
  font-size: clamp(48px, min(10vw, 15vh), 148px);
  font-weight: 600;
  line-height: 0.95;
  color: #fdfbf7;
  letter-spacing: -0.02em;
}

.cinematic__headline h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hl-stroke {
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.6);
  color: transparent !important;
  font-weight: 700;
}

/* ── Descriptor — bottom left ── */
.cinematic__descriptor {
  position: relative;
  z-index: 2;
  padding-left: clamp(20px, 4vw, 48px);
  max-width: min(520px, 90vw);
}

.cinematic__descriptor>p {
  font-family: var(--body);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
}

/* FIX 1: CTA buttons side by side */
.descriptor-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

/* ── Stats ticker — bottom right ── */
.cinematic__ticker {
  bottom: clamp(48px, 6vw, 72px);
  right: clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  z-index: 3;
}

.ticker-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.ticker-item strong {
  font-family: var(--numeric-font);
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 700;
  line-height: 1;
  color: var(--gold-light);
}

.ticker-item span {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.55);
  text-align: right;
}

.ticker-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* ── Scroll cue ── */
.cinematic__scroll {
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.45);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scroll-grow 1.8s ease-in-out infinite;
}

@keyframes scroll-grow {

  0%,
  100% {
    transform: scaleY(0.4);
    transform-origin: top;
    opacity: 0.4;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
}


/* ════════════════════════════════════════
   MARQUEE RIBBON
════════════════════════════════════════ */
.marquee-ribbon {
  background: var(--forest);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-track {
  display: inline-flex;
  animation: marquee-scroll 36s linear infinite;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

.marquee-item {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.marquee-dot {
  color: var(--gold);
  font-size: 14px;
}


/* ════════════════════════════════════════
   ATLAS — BENTO GRID
════════════════════════════════════════ */
.atlas {
  padding-bottom: 0;
}

.atlas__preface {
  text-align: center;
  padding-bottom: clamp(32px, 5vw, 56px);
}

.atlas__bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  min-height: clamp(400px, 55vw, 580px);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.bento-panel {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.bento-panel--a {
  grid-row: span 2;
  background-size: cover;
  background-position: center;
  min-height: 480px;
  transition: transform 0.55s ease;
}

.bento-panel--a:hover {
  transform: scale(1.015);
}

.bento-film {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 24, 12, 0.88) 0%, rgba(10, 24, 12, 0.2) 55%, transparent 100%);
  transition: background 0.4s;
}

.bento-panel--a:hover .bento-film {
  background: linear-gradient(to top, rgba(10, 24, 12, 0.94) 0%, rgba(10, 24, 12, 0.38) 65%, transparent 100%);
}

.bento-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 32px);
}

.bento-tag {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  display: block;
  margin-bottom: 12px;
}

.bento-content h3 {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: #fdfbf7;
  line-height: 1.1;
  margin-bottom: 10px;
}

.bento-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 18px;
}

.bento-panel--b,
.bento-panel--c {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 0.3s;
}

.bento-panel--b:hover,
.bento-panel--c:hover {
  background: rgba(255, 255, 255, 0.1);
}

.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.bento-icon i {
  font-size: 16px;
  color: var(--gold-light);
}

.bento-panel--b h3,
.bento-panel--c h3 {
  font-family: var(--display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  color: #fdfbf7;
  line-height: 1.2;
  margin-bottom: 10px;
}

.bento-panel--b p,
.bento-panel--c p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 18px;
}


/* ════════════════════════════════════════
   DUOTONE SPLIT — Scenarios
════════════════════════════════════════ */
.duotone__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 7vw, 80px);
  align-items: center;
}

.duotone__copy {
  order: 1;
}

.duotone__media {
  order: 2;
}

.duotone__media .media-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

.duotone__media .media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scenario-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.scenario-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.scenario-layer--active {
  opacity: 1;
  z-index: 1;
}

.time-chips {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 5;
}

.chip {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: rgba(10, 22, 12, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.22s, color 0.22s, transform 0.2s;
  cursor: pointer;
}

.chip:hover {
  transform: translateY(-1px);
}

.chip--active {
  background: var(--gold);
  color: var(--forest);
  border-color: var(--gold);
}

.duotone__copy .copy-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.copy-cols h4 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.copy-cols p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.75;
}


/* ════════════════════════════════════════
   RECOMMENDATIONS
════════════════════════════════════════ */
.reco__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 80px);
  align-items: center;
}

.reco__media {
  order: -1;
}

.reco__copy {
  order: 1;
}

.reco__copy .reco-icon-ring {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--forest-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.reco__copy .reco-icon-ring i {
  color: var(--forest-mid);
  font-size: 16px;
}

.badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.interest-badge {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--cream-dark);
  color: var(--forest-mid);
  border: 1px solid rgba(29, 94, 42, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, transform 0.2s;
}

.interest-badge:hover {
  background: rgba(29, 94, 42, 0.1);
  transform: translateY(-1px);
}

.interest-badge i {
  font-size: 10px;
  color: var(--forest-light);
}

.reco__media .media-stack {
  position: relative;
}

.stack-img {
  display: block;
  width: 90%;
  border-radius: var(--radius-xl);
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

.stack-img--back {
  margin-left: 10%;
}

.match-card {
  position: absolute;
  bottom: -24px;
  right: -16px;
  background: var(--forest);
  color: #fdfbf7;
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  min-width: 190px;
  box-shadow: 0 12px 32px rgba(10, 22, 12, 0.3);
  z-index: 2;
}

.match-card__score {
  font-family: var(--numeric-font);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-light);
}

.match-card__score small {
  font-size: 22px;
}

.match-card__label {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
}

.match-card__name {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
}

.match-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.match-card__tags span {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.75);
}

.map-section {
  padding-bottom: clamp(56px, 7vw, 80px);
}

.map-section__head {
  text-align: center;
  margin-bottom: 40px;
}

.map-section__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto;
  margin-top: 12px;
}

.map-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  padding: 0;
}

.filter-chip {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 9px 22px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.22s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.filter-chip i {
  font-size: 11px;
}

.filter-chip--active,
.filter-chip:hover {
  background: var(--gold);
  color: var(--forest);
  border-color: var(--gold);
}

.map-stage {
  display: flex;
  gap: 0;
  background: transparent;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: clamp(360px, 45vw, 500px);
  border: none;
  width: 100%;
}

#landingMap,
.map-canvas {
  flex: 1 1 auto;
  min-height: 380px;
  z-index: 1;
  background: #c5c0a8;
  border-radius: 10px 0 0 10px;
}

.map-info {
  flex: 0 0 clamp(240px, 28vw, 320px);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(28px, 3.5vw, 44px) clamp(24px, 3vw, 36px);
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-left: none;
  position: relative;
  overflow: hidden;
}

.map-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
}

.map-info__panel {
  display: none;
}

.map-info__panel--active {
  display: flex;
  flex-direction: column;
}

.map-info__panel .overline {
  color: var(--gold-light);
  margin-bottom: 10px;
}

.map-info__panel h3 {
  font-family: var(--display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  color: #fdfbf7;
  line-height: 1.15;
  margin-bottom: 12px;
}

.map-info__panel p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 0;
}

.map-info__divider {
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 20px;
}


.plan-visit__head {
  margin-bottom: clamp(32px, 5vw, 48px);
  max-width: 560px;
}

.plan-visit__head .body-text {
  font-size: 16px;
  color: var(--ink-mid);
}

.plan-visit__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.visit-stat {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.25s, transform 0.25s;
}

.visit-stat:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.visit-stat i {
  font-size: 20px;
  color: var(--forest-mid);
  margin-bottom: 4px;
}

.visit-stat strong {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}

.visit-stat__label {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.visit-stat p {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.7;
  margin: 0;
}

.plan-visit__tips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: clamp(24px, 4vw, 40px);
  border-top: 2px solid var(--border);
}

.visit-tip {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.visit-tip>i {
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.visit-tip h4 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.visit-tip p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.75;
  margin: 0;
}


.gallery-section__head {
  margin-bottom: 32px;
  padding: 0 clamp(24px, 6vw, 80px);
}

.gallery-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.carousel-controls {
  display: flex;
  gap: 8px;
  padding-bottom: 6px;
}

.cc-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--ink);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cc-btn i {
  position: relative;
  z-index: 1;
  transition: transform 0.22s ease;
}

.cc-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--forest);
  border-radius: var(--radius-pill);
  transform: scale(0);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

.cc-btn:hover::before,
.cc-btn:active::before,
.cc-btn--active::before {
  transform: scale(1);
}

.cc-btn:hover,
.cc-btn:active,
.cc-btn--active {
  color: #fdfbf7;
  border-color: var(--forest);
  box-shadow: 0 4px 16px rgba(26, 58, 32, 0.25);
  transform: scale(1.08);
}

.cc-btn:hover i {
  transform: translateX(3px);
}

.cc-btn[aria-label="Previous"]:hover i {
  transform: translateX(-3px);
}

.cc-btn--active {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.gallery-overflow {
  overflow: hidden;
  padding: 0;
}

.gallery-track {
  display: flex;
  gap: 16px;
  padding-left: clamp(24px, 6vw, 80px);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: auto;
}


.gallery-card {
  flex-shrink: 0;
  width: calc((100% - clamp(16px, 3vw, 32px) * 2 - 16px * 2) / 3.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  opacity: 1;
  visibility: visible;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.gallery-card__img-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}

.gallery-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-card:hover .gallery-card__img-wrap img {
  transform: scale(1.06);
}

.gallery-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 12, 0.65) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.gallery-card:hover .gallery-card__img-wrap::after {
  opacity: 1;
}

.gallery-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fdfbf7;
  background: rgba(10, 22, 12, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.gallery-card__arrow {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fdfbf7;
  font-size: 13px;
  z-index: 2;
  opacity: 0;
  transform: scale(0.75) rotate(-45deg);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-card:hover .gallery-card__arrow {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.gallery-card__foot {
  padding: 16px 16px 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
}

.gallery-card__foot h4 {
  font-family: var(--display);
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  flex: 1;
  transition: color 0.22s;
}

.gallery-card:hover .gallery-card__foot h4 {
  color: var(--forest);
}

.gallery-card__foot-arrow {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-pill);
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fdfbf7;
  font-size: 11px;
  flex-shrink: 0;
  align-self: flex-end;
  transition: transform 0.28s ease, background 0.25s ease;
}

.gallery-card:hover .gallery-card__foot-arrow {
  transform: rotate(45deg);
  background: var(--gold);
}

.gallery-track .gallery-card {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease !important;
}


.gallery-overflow {
  overflow: hidden;
  padding: 0;
}

.gallery-track {
  display: flex;
  gap: 16px;
  padding-left: clamp(24px, 6vw, 80px);
  padding-right: clamp(24px, 6vw, 80px);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ════════════════════════════════════════
   EVENTS SECTION
════════════════════════════════════════ */
.events-section__head {
  margin-bottom: clamp(32px, 5vw, 56px);
}

.events-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: flex-start;
}

.featured-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}

.featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.featured-img-wrap:hover img {
  transform: scale(1.03);
}

.featured-img__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 12, 0.92) 0%, rgba(10, 22, 12, 0.1) 50%, transparent 100%);
}

.featured-img__date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  text-align: center;
}

.featured-img__date strong {
  display: block;
  font-family: var(--numeric-font);
  font-size: 28px;
  font-weight: 700;
  color: #fdfbf7;
  line-height: 1;
}

.featured-img__date span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.65);
}

.featured-img__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 28px 28px;
}

.event-type-pill {
  display: inline-block;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 10px;
}

.featured-img__body h3 {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  color: #fdfbf7;
  line-height: 1.15;
  margin-bottom: 8px;
}

.featured-img__body p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 16px;
}

button.text-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.events-full-cal-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.upcoming-label {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
  display: block;
}

.upcoming-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  transition: background 0.22s, padding-left 0.25s;
  color: #fdfbf7;
}

.upcoming-item:last-of-type {
  border-bottom: none;
}

.upcoming-item:hover {
  padding-left: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.upcoming-item__date {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  text-align: center;
  padding: 10px 14px;
  min-width: 56px;
}

.upcoming-item__date strong {
  display: block;
  font-family: var(--numeric-font);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.upcoming-item__date span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
}

.upcoming-item__info h4 {
  font-family: var(--display);
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 600;
  margin-bottom: 4px;
}

.upcoming-item__info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 5px;
}

.upcoming-item__arrow {
  margin-left: auto;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.25s;
}

.upcoming-item:hover .upcoming-item__arrow {
  opacity: 1;
  transform: translateX(0);
}

.featured-empty {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-empty-inner {
  text-align: center;
  padding: 40px;
}

.featured-empty-inner i {
  font-size: 48px;
  color: var(--gold-light);
  opacity: 0.5;
  margin-bottom: 20px;
  display: block;
}

.featured-empty-inner h3 {
  font-family: var(--display);
  font-size: 22px;
  color: #fdfbf7;
  margin: 0 0 10px;
}

.featured-empty-inner p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  max-width: 280px;
}

.upcoming-empty {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 12px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

.upcoming-empty i {
  font-size: 20px;
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   VIDEO SHOWCASE SECTION
════════════════════════════════════════ */
.video-showcase-section {
  padding-bottom: clamp(64px, 8vw, 100px);
}

/* New Flex Layout for Header + Button */
.video-showcase__top-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.video-showcase__head {
  max-width: 600px;
}

.video-showcase__head .section-head {
  margin-bottom: 0;
  /* Removing bottom margin to tighten spacing */
}

.video-showcase__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-top: 16px;
}

.video-showcase__action {
  flex-shrink: 0;
  margin-bottom: 8px;
}

.video-showcase__action .cta-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.video-showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.video-showcase__grid:has(.sc-card:only-child) {
  grid-template-columns: minmax(0, 480px);
  justify-content: center;
}

.video-showcase__grid:has(.sc-card:nth-child(2)):not(:has(.sc-card:nth-child(3))) {
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
}

.video-showcase__empty {
  color: rgba(255, 255, 255, 0.5);
  grid-column: 1 / -1;
  text-align: center;
  font-size: 15px;
  padding: 48px 0;
}

.video-showcase__no-content {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: clamp(48px, 8vw, 80px) 0;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
}

.video-showcase__no-content i {
  font-size: 40px;
  color: var(--gold-light);
  opacity: 0.5;
}

.video-showcase__no-content p {
  font-family: var(--display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.video-showcase__no-content span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
}

.sc-card {
  cursor: pointer;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease;
}

.sc-card:hover {
  transform: translateY(-5px);
}

.sc-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #111;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.sc-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.sc-card:hover .sc-card__img {
  transform: scale(1.05);
}

.sc-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
  pointer-events: none;
}

.sc-card__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  padding-left: 4px;
  transition: all 0.3s ease;
  z-index: 2;
}

.sc-card:hover .sc-card__play-btn {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest);
  transform: translate(-50%, -50%) scale(1.1);
}

.sc-card__badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  background: rgba(10, 22, 12, 0.7);
  --webkit-backdrop-filter: blur(4px);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.sc-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.sc-card__tag-pill {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(196, 154, 60, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(196, 154, 60, 0.25);
}

.sc-card__info {
  padding: 0 4px;
}

.sc-card__info h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  color: #fdfbf7;
  margin-bottom: 8px;
  line-height: 1.2;
}

.sc-card__info p {
  font-size: 14px;
  text-align: justify;
  text-indent: 36px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.vc-desc-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}

.vc-desc-text.expanded {
  display: block;
  -webkit-line-clamp: unset;
}

.vc-desc-toggle {
  background: none;
  border: none;
  padding: 4px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: block;
  transition: color 0.2s;
}

.vc-desc-toggle:hover {
  color: var(--gold);
}

/* When video is playing, hide the thumbnail UI */
.sc-card__thumb.is-playing .sc-card__img,
.sc-card__thumb.is-playing .sc-card__overlay,
.sc-card__thumb.is-playing .sc-card__play-btn,
.sc-card__thumb.is-playing .sc-card__badge {
  display: none;
}

/* ════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════ */
.contact-section__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 80px);
  align-items: center;
}

.contact-lines {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  border-radius: var(--radius-md);
  transition: background 0.2s, padding-left 0.22s;
}

.contact-line:last-child {
  border-bottom: none;
}

.contact-line:hover {
  padding-left: 18px;
  background: rgba(29, 94, 42, 0.04);
}

.contact-line__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background 0.2s, border-color 0.2s;
}

.contact-line:hover .contact-line__icon {
  background: rgba(29, 94, 42, 0.08);
  border-color: var(--forest-light);
}

.contact-line__icon i {
  font-size: 14px;
  color: var(--forest-mid);
}

.contact-line strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}

.contact-line span {
  font-size: 13px;
  color: var(--ink-mid);
}

.contact-visual {
  position: relative;
}

.contact-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.contact-visual__caption {
  margin-top: 14px;
  font-size: 12px;
  font-style: italic;
  color: var(--ink-light);
  letter-spacing: 0.03em;
}


/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */

@media (max-width: 1200px) {
  .cinematic__headline h1 {
    font-size: clamp(52px, 10vw, 120px);
  }

  .gallery-card {
    width: calc((100% - clamp(16px, 3vw, 32px) * 2 - 16px * 2) / 3.2);
  }
}

@media (max-width: 1024px) {
  .cinematic__headline h1 {
    font-size: clamp(44px, 8.5vw, 96px);
  }

  .cinematic__headline {
    top: 50%;
    transform: translateY(-50%);
  }

  .reco__layout {
    gap: 40px;
  }

  .duotone__layout {
    gap: 40px;
  }

  .events-layout {
    gap: 36px;
  }

  .cinematic__ticker {
    gap: 16px;
  }

  .ticker-item strong {
    font-size: 30px;
  }

  .gallery-card {
    width: calc((100% - clamp(16px, 3vw, 32px) * 2 - 16px) / 2.2);
  }

  .plan-visit__stats {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 860px) {
  .cinematic {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0 clamp(20px, 4vw, 48px) clamp(40px, 5vw, 56px);
    gap: 0;
  }

  .cinematic__badge,
  .cinematic__headline,
  .cinematic__descriptor,
  .cinematic__ticker {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
  }

  .cinematic__badge {
    position: absolute;
    top: clamp(80px, 10vw, 100px);
    left: clamp(20px, 4vw, 48px);
    width: auto;
  }

  .cinematic__headline {
    position: absolute;
    top: 40%;
    right: clamp(16px, 3vw, 32px);
    left: auto;
    transform: translateY(-50%);
    width: auto;
    text-align: right;
  }

  .cinematic__headline h1 {
    font-size: clamp(38px, 8vw, 80px);
  }


  .cinematic__ticker {
    order: 1;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    padding: 0;
    margin-bottom: 20px;
  }

  .cinematic__descriptor {
    order: 2;
    padding-left: 0;
    max-width: min(520px, 90vw);
  }

  .cinematic__scroll {
    display: none;
  }

  .ticker-item {
    align-items: flex-start;
  }

  .ticker-item strong {
    font-size: 24px;
  }

  .ticker-item span {
    font-size: 9px;
    text-align: left;
  }

  .ticker-divider {
    height: 32px;
  }

  .atlas__bento {
    grid-template-columns: 1fr;
    border-radius: var(--radius-lg);
  }

  .bento-panel--a {
    grid-row: span 1;
    min-height: 320px;
  }

  .bento-panel--b,
  .bento-panel--c {
    min-height: 180px;
  }

  .duotone__layout,
  .reco__layout,
  .contact-section__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .duotone__copy {
    order: 1;
  }

  .duotone__media {
    order: 2;
  }

  .reco__copy {
    order: 1;
  }

  .reco__media {
    order: 2;
  }

  .duotone__media .media-frame {
    aspect-ratio: 3/2;
  }

  .reco__media .stack-img {
    width: 100%;
    margin-left: 0;
    aspect-ratio: 16/9;
  }

  .reco__media .stack-img--back {
    margin-left: 0;
  }

  .match-card {
    bottom: -16px;
    right: 12px;
    left: auto;
    min-width: 160px;
    padding: 14px 16px;
  }

  .match-card__score {
    font-size: 36px;
  }

  .match-card__name {
    font-size: 13px;
  }

  .reco__media {
    padding-bottom: 40px;
  }

  .map-stage {
    flex-direction: column;
    min-height: auto;
    border-radius: var(--radius-lg);
  }

  #landingMap,
  .map-canvas {
    min-height: 300px;
  }

  .map-info {
    width: 100%;
    flex: none;
    border-radius: 0 0 10px 10px;
  }

  .plan-visit__tips {
    grid-template-columns: 1fr;
    gap: 20px;
  }


  .events-layout {
    grid-template-columns: 1fr;
  }

  .featured-img-wrap {
    aspect-ratio: 3/2;
  }

  .gallery-card {
    width: calc((100% - clamp(16px, 3vw, 32px) * 2 - 16px) / 2.2);
  }

  .video-showcase__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .video-showcase__grid:has(.sc-card:only-child) {
    grid-template-columns: minmax(0, 100%);
  }

  .video-showcase__grid:has(.sc-card:nth-child(2)):not(:has(.sc-card:nth-child(3))) {
    grid-template-columns: repeat(2, 1fr);
  }



  .contact-visual {
    display: block;
  }

  .contact-visual img {
    aspect-ratio: 3/2;

  }
}

@media (max-width: 768px) {
  .video-showcase__top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .video-showcase__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .sc-card__info h3 {
    font-size: 16px;
  }

  .sc-card__info p {
    font-size: 13px;
  }
}


@media (max-width: 640px) {
  .cinematic {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 100px;
    gap: 20px;
    min-height: 100dvh;
  }

  .cinematic__scroll {
    display: none !important;
  }

  .cinematic__badge,
  .cinematic__headline,
  .cinematic__descriptor,
  .cinematic__ticker {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
  }

  .cinematic__badge {
    justify-content: center;
    margin-bottom: 0;
  }

  .cinematic__headline {
    text-align: center;
    margin-bottom: 0;
    max-height: none;
    overflow: visible;
  }

  .cinematic__headline h1 {
    font-size: clamp(36px, 11vw, 56px);
    line-height: 1.05;
  }

  .cinematic__descriptor {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
    margin: 0 auto;
  }

  .cinematic__descriptor>p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .descriptor-actions {
    justify-content: center;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .descriptor-actions .cta-pill {
    font-size: 11px;
    padding: 11px 16px;
    white-space: nowrap;
    flex: 1;
    text-align: center;
    justify-content: center;
    max-width: 180px;
  }

  .cinematic__ticker {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
    top: auto;
    transform: none;
  }

  .ticker-item {
    align-items: center;
    text-align: center;
  }

  .plan-visit__stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .plan-visit__tips {
    grid-template-columns: 1fr;
  }

  .ticker-item strong {
    font-size: 22px;
  }

  .ticker-item span {
    font-size: 9px;
    text-align: center;
  }

  .ticker-divider {
    height: 32px;
    width: 1px;
  }

  .duotone__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .duotone__copy {
    order: 1;
  }

  .duotone__media {
    order: 2;
  }

  .duotone__media .media-frame {
    aspect-ratio: 3/2;
  }

  .copy-cols {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* ── Recommendations ── */
  .reco__layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .reco__copy {
    order: 1;
  }

  .reco__media {
    order: 2;
    padding-top: 32px;
    padding-bottom: 40px;
  }

  .reco__media .stack-img {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    margin-left: 0;
  }

  .match-card {
    position: absolute;
    bottom: -16px;
    right: 12px;
    left: auto;
    min-width: 150px;
    padding: 14px 16px;
  }

  .match-card__score {
    font-size: 34px;
  }

  .match-card__name {
    font-size: 12px;
  }

  .map-filters {
    gap: 6px;
  }

  .filter-chip {
    font-size: 11px;
    padding: 8px 14px;
  }

  #landingMap,
  .map-canvas {
    min-height: 260px;
    border-radius: 10px 10px 0 0;
  }

  .map-info {
    padding: 24px 20px;
  }

  .upcoming-item {
    gap: 12px;
    padding: 14px 8px;
  }

  .upcoming-item__info h4 {
    font-size: 15px;
  }

  .video-showcase__grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .sc-card__info h3 {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .sc-card__info p {
    font-size: 12px;
    line-height: 1.5;
  }

  .sc-card__play-btn {
    width: 44px;
    height: 44px;
    font-size: 15px;
  }

  .gallery-section__head {
    padding: 0 16px;
  }

  .gallery-card {
    width: calc((100% - 16px * 2) / 1.15);
  }

  .gallery-head-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .carousel-controls {
    align-self: flex-end;
  }

  .contact-section__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-visual {
    display: block;
    /* bring it back */
  }

  .contact-visual img {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 400px) {
  .cinematic {
    padding: 88px 18px 40px;
  }

  .cinematic__headline h1 {
    font-size: clamp(28px, 10vw, 40px);
  }

  .descriptor-actions {
    flex-direction: column;
    align-items: center;
  }

  .descriptor-actions .cta-pill {
    max-width: 240px;
    width: 100%;
    flex: none;
  }

  .ticker-item strong {
    font-size: 20px;
  }

  .plan-visit__stats {
    grid-template-columns: 1fr;
  }

  .ticker-divider {
    height: 28px;
  }

  .video-showcase__grid,
  .video-showcase__grid:has(.sc-card:only-child),
  .video-showcase__grid:has(.sc-card:nth-child(2)):not(:has(.sc-card:nth-child(3))) {
    grid-template-columns: 1fr;
  }

  .sc-card__info h3 {
    font-size: 18px;
  }

  .sc-card__info p {
    font-size: 13px;
  }

  .gallery-card {
    width: calc(100vw - 48px);
  }

  .bento-panel--a {
    min-height: 260px;
  }

  .head-actions {
    flex-direction: column;
    align-items: center;
  }

  .head-actions .cta-pill {
    width: 100%;
    max-width: 280px;
  }

  #landingMap,
  .map-canvas {
    min-height: 220px;
  }

  .match-card {
    min-width: 140px;
    margin-bottom: -60px;
    margin-right: -20px;
  }

  .match-card__score {
    font-size: 30px;
  }
}