@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&family=Pinyon+Script&display=swap');

:root {
  --blush-50: #fff9f8;
  --blush-100: #ffecea;
  --blush-200: #ffd8d4;
  --blush-300: #f8c7d7;
  --rose-500: #c9637c;
  --rose-700: #93435a;
  --sage-100: #edf4ee;
  --sage-300: #c6d9c7;
  --sage-600: #52775a;
  --gold-200: #efd7a5;
  --gold-500: #c4a157;
  --ink-900: #221a1f;
  --ink-700: #56444a;
  --paper: #fffdfa;
  --line: rgba(102, 71, 82, 0.2);
  --shadow-soft: 0 10px 30px rgba(76, 42, 55, 0.08);
  --shadow-strong: 0 25px 60px rgba(76, 42, 55, 0.14);
  --maxw: 1120px;
  --topnav-h: 108px;
  --sans: 'Manrope', 'Segoe UI', sans-serif;
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --script: 'Pinyon Script', cursive;
  --radius-lg: 30px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  height: auto;
  overflow-x: clip;
  overflow-y: visible;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

body {
  margin: 0;
  color: var(--ink-900);
  font-family: var(--sans);
  background:
    radial-gradient(1300px 800px at 14% -10%, rgba(248, 199, 215, 0.45), transparent 62%),
    radial-gradient(1000px 700px at 85% 12%, rgba(198, 217, 199, 0.38), transparent 58%),
    linear-gradient(160deg, #fffaf7 0%, #fffdfb 45%, #fff8f6 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background: url('../../../images/paper-texture.webp') center / 620px repeat;
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(460px 320px at 6% 18%, rgba(201, 99, 124, 0.12), transparent 70%),
    radial-gradient(560px 360px at 95% 28%, rgba(82, 119, 90, 0.1), transparent 70%);
  z-index: -1;
}

.page {
  min-height: 100vh;
  padding: 34px 20px 88px;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 12px 14px;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(255, 248, 246, 0.94), rgba(255, 248, 246, 0.74));
  border-bottom: 1px solid rgba(147, 67, 90, 0.08);
}

.top-nav .inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
}

.navgroup {
  display: flex;
  gap: 10px;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.navitem {
  position: relative;
  display: flex;
  align-items: center;
}

.navbtn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  min-height: 62px;
  min-width: clamp(94px, 12vw, 138px);
  padding: 10px 12px;
  border-radius: 0;
  text-decoration: none;
  color: var(--ink-900);
  font-weight: 600;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(255, 237, 233, 0.78));
  border: 1px solid rgba(147, 67, 90, 0.16);
  box-shadow: 0 8px 20px rgba(85, 44, 58, 0.1);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  text-align: center;
}

.navbtn:hover,
.navbtn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(147, 67, 90, 0.34);
  box-shadow: 0 14px 26px rgba(85, 44, 58, 0.16);
}

.navbtn small {
  color: var(--ink-700);
  font-size: 12px;
  letter-spacing: 0.01em;
}

.navbtn.active {
  background: linear-gradient(155deg, #fff, #ffe5de);
  border-color: rgba(147, 67, 90, 0.45);
  box-shadow: 0 16px 30px rgba(85, 44, 58, 0.2);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 250px;
  display: grid;
  gap: 7px;
  padding: 12px;
  border-radius: 0;
  background: rgba(255, 253, 251, 0.97);
  border: 1px solid rgba(147, 67, 90, 0.2);
  box-shadow: var(--shadow-strong);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
  z-index: 60;
}

.nav-dropdown a {
  text-decoration: none;
  color: var(--ink-900);
  padding: 10px 12px;
  border-radius: 0;
  background: rgba(255, 245, 242, 0.8);
  border: 1px solid rgba(147, 67, 90, 0.12);
  font-weight: 600;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: rgba(255, 234, 228, 0.95);
}

.navitem:hover .nav-dropdown,
.navitem:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-logo {
  width: 116px;
  height: 116px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 237, 233, 0.82));
  border: 1px solid rgba(147, 67, 90, 0.16);
  box-shadow: var(--shadow-soft);
}

.site-logo img {
  width: 94%;
  height: 94%;
  object-fit: contain;
}

.hero {
  max-width: var(--maxw);
  margin: 0 auto 24px;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: var(--shadow-strong);
  isolation: isolate;
}

.hero img {
  width: 100%;
  height: clamp(340px, 58vw, 640px);
  object-fit: cover;
  display: block;
  filter: saturate(1.03) contrast(1.03);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(31, 18, 22, 0.56), rgba(31, 18, 22, 0.06) 55%),
    radial-gradient(700px 280px at 72% 18%, rgba(255, 222, 214, 0.28), transparent 72%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: clamp(28px, 7vw, 62px);
  z-index: 2;
}

.hero-text {
  max-width: min(720px, 100%);
  color: #fff7f2;
}

.hero-text h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 10vw, 102px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.subhead {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: clamp(23px, 3vw, 34px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: rgba(86, 55, 66, 0.88);
}

.hero-meta {
  margin: 14px 0 0;
  font-size: clamp(15px, 1.8vw, 21px);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff8f4;
}

.hero-video {
  --hero-ivory: #f4efe8;
  position: relative;
  z-index: 0;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 6.25rem 0 2.8rem;
  width: 100vw;
  max-width: none;
  margin: 0 0 26px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-video__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.8) contrast(1.04) brightness(0.72);
  transform: scale(1.03);
}

.hero-video__scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(860px 420px at 92% -8%, rgba(155, 31, 53, 0.18), transparent 64%),
    radial-gradient(980px 540px at 80% 74%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.5) 58%, rgba(0, 0, 0, 0.65) 100%),
    linear-gradient(180deg, rgba(12, 12, 14, 0.32), rgba(8, 8, 10, 0.62));
}

.hero-video__container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.hero-video__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.75rem;
  color: var(--hero-ivory);
  padding: 0 clamp(20px, 5vw, 48px);
}

.hero-video__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.hero-video__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 10vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.hero-video__lead {
  margin: 0;
  font-size: clamp(0.98rem, 1.22vw, 1.16rem);
  line-height: 1.34;
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.9);
}

.hero-video__actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 0.35rem;
}

.hero-video__btn {
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0.78rem 1rem;
  font-size: 0.9rem;
}

.hero-video__btn--primary {
  background: #fff;
  color: #111;
}

.hero-video__jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
  align-items: center;
}

.hero-video__scroll {
  margin-top: 0.75rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-video__scroll-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

.hero-video__scroll:hover {
  color: #fff;
}

.card {
  position: relative;
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.97), rgba(255, 245, 241, 0.9));
  border-radius: 0;
  border: 1px solid rgba(147, 67, 90, 0.16);
  box-shadow: var(--shadow-soft);
  padding: clamp(22px, 5vw, 40px);
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  width: 210px;
  height: 210px;
  top: -110px;
  right: -90px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(239, 215, 165, 0.42) 0%,
    rgba(239, 215, 165, 0.3) 34%,
    rgba(239, 215, 165, 0.18) 56%,
    rgba(239, 215, 165, 0.08) 74%,
    rgba(239, 215, 165, 0.03) 88%,
    rgba(239, 215, 165, 0) 100%
  );
  pointer-events: none;
}

h1,
h2,
h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  color: #2f1f25;
  line-height: 1.04;
}

h2 {
  font-size: clamp(34px, 5.2vw, 56px);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(26px, 3.8vw, 38px);
  letter-spacing: -0.012em;
}

p,
li {
  color: var(--ink-700);
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.7;
}

p {
  margin: 0 0 14px;
}

ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

li {
  margin-bottom: 6px;
}

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.item {
  padding: 16px;
  border-radius: 0;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(255, 238, 233, 0.85));
  border: 1px solid rgba(147, 67, 90, 0.14);
}

.item h3 {
  margin-bottom: 7px;
  font-size: 30px;
}

.item .meta {
  font-size: 15px;
  line-height: 1.55;
}

.pills,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.pill,
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #301f25;
  padding: 12px 18px;
  border-radius: 0;
  font-weight: 700;
  border: 1px solid rgba(147, 67, 90, 0.2);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(255, 231, 226, 0.86));
  box-shadow: 0 8px 20px rgba(85, 44, 58, 0.1);
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.pill:hover,
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(85, 44, 58, 0.16);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 223, 217, 0.96));
}

.subnav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.subnav-overlay {
  margin-top: 2px;
}

.subnav-link {
  text-decoration: none;
  color: #2f1f25;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 244, 240, 0.2);
  backdrop-filter: blur(2px);
}

.subnav-link:hover,
.subnav-link:focus-visible {
  background: rgba(255, 244, 240, 0.34);
}

.kicker {
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--rose-700);
  font-weight: 700;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  margin-top: 18px;
}

.story-panel {
  background: linear-gradient(160deg, rgba(255, 250, 247, 0.95), rgba(237, 244, 238, 0.75));
  border: 1px solid rgba(147, 67, 90, 0.16);
  border-radius: 0;
  padding: 18px;
}

.story-panel strong {
  color: #341f27;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(147, 67, 90, 0.16);
}

.info-table th,
.info-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(147, 67, 90, 0.12);
}

.info-table th {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rose-700);
  background: rgba(255, 236, 231, 0.85);
}

.info-table td {
  background: rgba(255, 255, 255, 0.7);
  color: #4d3a40;
  font-size: 15px;
}

.info-table tr:last-child td {
  border-bottom: none;
}

.notice {
  margin-top: 18px;
  border-left: 4px solid var(--gold-500);
  background: linear-gradient(120deg, rgba(239, 215, 165, 0.25), rgba(255, 244, 224, 0.35));
  padding: 12px 14px;
  border-radius: 0;
  font-size: 15px;
  color: #5b4632;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  margin: 0;
}

.checklist li::before {
  content: '✿';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rose-500);
  font-size: 17px;
}

.section {
  margin-top: 16px;
}

.h2 {
  font-size: clamp(34px, 5.2vw, 56px);
}

.club-desktop-only {
  display: block;
}

.club-mobile-only {
  display: none;
}

@media (max-width: 1024px) and (orientation: portrait) {
  .club-desktop-only {
    display: none;
  }

  .club-mobile-only {
    display: block;
  }
}

.club-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(460px, 1.12fr);
  gap: 20px;
  align-items: start;
}

.club-panel {
  position: sticky;
  top: 112px;
}

.club-panel .subhead {
  margin-bottom: 14px;
  color: #5b454d;
}

.club-feature-list {
  display: grid;
  gap: 10px;
}

.club-feature-list__entry {
  border-radius: 0;
}

.club-feature-list__item {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #2c1d23;
  padding: 12px 14px;
  border-radius: 0;
  border: 1px solid rgba(147, 67, 90, 0.14);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(255, 240, 236, 0.82));
  font-weight: 700;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.club-feature-list__item:hover,
.club-feature-list__item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(147, 67, 90, 0.34);
  box-shadow: 0 12px 20px rgba(80, 41, 54, 0.14);
}

.club-feature-list__entry.is-active .club-feature-list__item {
  border-color: rgba(147, 67, 90, 0.5);
  background: linear-gradient(145deg, rgba(255, 244, 240, 0.98), rgba(255, 222, 214, 0.94));
  box-shadow: 0 12px 22px rgba(80, 41, 54, 0.16);
  font-size: 19px;
  font-weight: 800;
}

.club-feed {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: 1px solid rgba(147, 67, 90, 0.16);
  box-shadow: var(--shadow-soft);
  min-height: 520px;
}

.club-feature {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 280ms ease, transform 280ms ease;
}

.club-feature.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.club-feature a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.club-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.club-feature a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 12, 16, 0.58), rgba(20, 12, 16, 0.12) 55%);
}

.club-feature-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  color: #fff7f3;
  font-family: var(--serif);
  font-size: clamp(32px, 4.6vw, 50px);
  line-height: 0.95;
  letter-spacing: -0.015em;
}

.club-feed--scroll {
  position: static;
  display: grid;
  gap: 16px;
  overflow: visible;
  min-height: 0;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.club-feed--scroll .club-feature {
  position: relative;
  inset: auto;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  aspect-ratio: 1024 / 650;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(147, 67, 90, 0.16);
  box-shadow: var(--shadow-soft);
}

.club-feed--scroll .club-feature img {
  height: 100%;
}

.club-feed--scroll .club-feature a::after {
  display: none;
}

.club-feed--scroll .club-feature-caption {
  display: none;
}

.section--club-getting-around .club-feed--offset {
  --ga-offset-start: clamp(180px, 14vw, 320px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.section--club-getting-around .club-feed__column {
  display: grid;
  gap: 16px;
  align-content: start;
}

.section--club-getting-around .club-feed--scroll .club-feature {
  aspect-ratio: 3 / 5;
}

.section--club-getting-around .club-feed__column--left {
  will-change: transform;
}

.section--club-getting-around .club-feed__column--right {
  will-change: transform;
}

.club-mobile-layout {
  display: grid;
  gap: 14px;
  align-items: start;
}

.club-mobile-sticky {
  position: sticky;
  top: 10px;
  z-index: 25;
  align-self: start;
}

.club-mobile-sticky.card {
  animation: none;
  transform: none;
}

.club-mobile-sticky .subhead {
  margin-bottom: 12px;
  color: #5b454d;
}

.club-mobile-pills {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  padding-right: 20px;
  scroll-padding-inline: 12px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.club-mobile-pills a {
  text-decoration: none;
  color: #2f1f25;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  border: 1px solid rgba(147, 67, 90, 0.2);
  border-radius: 0;
  padding: 9px 12px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(255, 238, 232, 0.86));
  scroll-snap-align: start;
}

.club-mobile-pills a.is-active {
  border-color: rgba(147, 67, 90, 0.5);
  background: linear-gradient(145deg, rgba(255, 244, 240, 0.98), rgba(255, 222, 214, 0.94));
  box-shadow: 0 12px 22px rgba(80, 41, 54, 0.16);
  font-size: 17px;
  font-weight: 800;
}

.club-mobile-feed {
  display: grid;
  gap: 14px;
}

.club-mobile-card {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(147, 67, 90, 0.16);
  background: rgba(255, 255, 255, 0.9);
}

.club-mobile-card img {
  display: block;
  width: 100%;
  height: clamp(220px, 46vw, 320px);
  object-fit: cover;
}

.move-switcher {
  margin-top: 1.4rem;
}

.move-switcher__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 16px;
  align-items: stretch;
}

.move-switcher__card {
  display: grid;
  gap: 0.85rem;
  height: 100%;
}

.move-switcher__title {
  margin: 0;
  font-size: clamp(2rem, 3.3vw, 2.8rem);
}

.move-switcher__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.move-switcher__item {
  display: block;
  padding: 0.55rem 0.66rem;
  border: 1px solid rgba(147, 67, 90, 0.22);
  text-decoration: none;
  color: #2f1f25;
  font-weight: 700;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(255, 241, 236, 0.9));
}

.move-switcher__item:hover,
.move-switcher__item:focus-visible,
.move-switcher__item.is-active {
  border-color: rgba(147, 67, 90, 0.48);
  background: linear-gradient(150deg, rgba(255, 243, 238, 0.98), rgba(255, 228, 219, 0.92));
  box-shadow: 0 12px 20px rgba(80, 41, 54, 0.12);
}

.move-switcher__preview {
  border: 1px solid rgba(147, 67, 90, 0.22);
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  height: 100%;
  min-height: 0;
  position: relative;
}

.move-switcher__preview-link {
  display: block;
  position: absolute;
  inset: 0;
  text-decoration: none;
  color: inherit;
}

.move-switcher__preview-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.things-intro {
  margin-bottom: 12px;
}

.tricks-carousel-wrap {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.tricks-carousel {
  width: 100%;
  padding: 20px 0 18px;
  position: relative;
}

.tricks-carousel .splide {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  padding: 14px 0 44px;
  perspective: 900px;
}

.tricks-carousel .splide:active {
  cursor: grabbing;
}

.tricks-carousel .splide__track {
  overflow: visible;
}

.tricks-carousel .splide__list {
  align-items: center;
}

.tricks-carousel .splide__slide {
  width: min(30vw, 600px);
  height: min(62vh, 600px);
  overflow: visible;
  transform: translateZ(0);
  box-shadow: var(--shadow-soft);
  transition: filter 450ms ease, opacity 450ms ease;
  filter: saturate(0.9) contrast(0.95);
  opacity: 0.8;
}

.tricks-carousel .splide__slide.is-active {
  filter: saturate(1) contrast(1);
  opacity: 1;
}

.tricks-slide-link {
  position: relative;
  display: block;
  text-decoration: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  box-shadow: var(--shadow-soft);
  transform: translateZ(0) scale(0.98);
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.tricks-carousel .splide__slide.is-active .tricks-slide-link {
  transform: translateZ(0) scale(1);
}

.tricks-slide-link img {
  width: 112%;
  height: 112%;
  margin-left: -6%;
  margin-top: -6%;
  object-fit: cover;
  object-position: center;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  will-change: opacity;
  transition: opacity 450ms ease;
}

.tricks-slide-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 19, 24, 0.54), rgba(30, 19, 24, 0.08) 52%);
}

.tricks-slide-title {
  position: absolute;
  left: 18px;
  bottom: 36px;
  width: min(70%, 340px);
  z-index: 1;
  color: #fff8f4;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-align: center;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1200px) {
  .tricks-carousel .splide__slide {
    width: min(34vw, 580px);
    height: min(58vh, 560px);
  }

  .tricks-slide-title {
    left: 16px;
    bottom: 34px;
    width: min(74%, 320px);
    font-size: clamp(30px, 5.2vw, 46px);
  }
}

.tricks-carousel .splide__pagination {
  bottom: -2px;
}

.tricks-carousel .splide__pagination__page {
  width: 10px;
  height: 10px;
  background: rgba(147, 67, 90, 0.34);
  opacity: 1;
  transform: none;
}

.tricks-carousel .splide__pagination__page.is-active {
  background: rgba(147, 67, 90, 0.9);
  transform: none;
}

.slider-wave {
  position: absolute;
  left: -2%;
  width: 104%;
  z-index: 6;
  pointer-events: none;
  overflow: hidden;
}

.slider-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.slider-wave path {
  fill: rgba(255, 250, 247, 0.98);
  shape-rendering: geometricPrecision;
}

.slider-wave--top {
  top: 30px;
  height: 30px;
}

.slider-wave--bottom {
  bottom: 58px;
  height: 30px;
}

.page-subhero .hero,
.page-hero-lift .hero {
  margin-bottom: 26px;
}

.hero.hero-fallback img {
  visibility: hidden;
}

.hero.hero-fallback {
  min-height: 340px;
  background:
    radial-gradient(560px 320px at 18% 16%, rgba(248, 199, 215, 0.52), transparent 70%),
    radial-gradient(470px 280px at 88% 26%, rgba(198, 217, 199, 0.45), transparent 68%),
    linear-gradient(120deg, #fff6f3, #fffdfb);
}

@keyframes softRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero,
.card,
.navbtn,
.subnav-link,
.pill,
.hero-video {
  animation: softRise 520ms ease both;
}

.section--eats-showcase {
  margin-top: 18px;
  border-radius: 0;
  border: 1px solid rgba(147, 67, 90, 0.18);
  background:
    radial-gradient(780px 340px at 92% -8%, rgba(201, 99, 124, 0.18), transparent 62%),
    radial-gradient(640px 320px at 8% 108%, rgba(82, 119, 90, 0.16), transparent 64%),
    linear-gradient(155deg, rgba(255, 250, 247, 0.98), rgba(255, 236, 230, 0.86));
  box-shadow: var(--shadow-soft);
  overflow-x: clip;
}

.eats-showcase {
  width: min(var(--maxw), calc(100% - 2rem));
  margin-inline: auto;
  padding: 22px 0;
  display: grid;
  gap: 1.1rem;
}

.eats-showcase__intro {
  margin: 0;
  background: linear-gradient(160deg, rgba(255, 251, 249, 0.96), rgba(255, 238, 233, 0.82));
  border: 1px solid rgba(147, 67, 90, 0.16);
  box-shadow: 0 14px 30px rgba(80, 41, 54, 0.12);
}

.eats-showcase__intro .subhead {
  margin: 0;
  font-size: clamp(1.22rem, 1.95vw, 1.6rem);
  line-height: 1.5;
  color: #533f46;
  max-width: 34ch;
}

.eats-strips--desktop {
  display: none;
}

.eats-mobile-list {
  display: none;
}

.eats-strips {
  display: flex;
  align-items: flex-end;
  gap: 0;
  padding-right: 0;
  margin-right: 0;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(110, 95, 88, 0.22);
  border-radius: 0;
  background: #f5efe6;
}

.eats-strips:not(:hover) {
  margin-right: 3px;
}

.eats-strip {
  display: grid;
  gap: 0.06rem;
  flex: 1 1 0;
  min-width: 66px;
  padding: 0;
  transition: flex-grow 220ms cubic-bezier(0.22, 0.8, 0.36, 1);
  will-change: flex-grow;
}

.eats-strips:not(:hover) .eats-strip:nth-child(1) {
  flex-grow: 0.9;
}

.eats-strip:nth-child(1) .eats-strip__media { height: 360px; }
.eats-strip:nth-child(2) .eats-strip__media { height: 410px; }
.eats-strip:nth-child(3) .eats-strip__media { height: 460px; }
.eats-strip:nth-child(4) .eats-strip__media { height: 500px; }
.eats-strip:nth-child(5) .eats-strip__media { height: 540px; }

.eats-strip__title {
  margin: 0;
  min-height: 2rem;
  padding: 0 0.34rem;
  color: #1f181b;
  line-height: 1.05;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.eats-strip__title-short {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.17em;
  font-weight: 700;
  color: rgba(31, 24, 27, 0.9);
  transition: transform 180ms ease-out;
}

.eats-strip__title-full {
  display: block;
  max-height: 1.2em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 180ms ease-out, transform 180ms ease-out;
  font-family: var(--serif);
  font-size: clamp(0.86rem, 0.95vw, 1.02rem);
  line-height: 1.1;
  color: #1f181b;
}

.eats-strip__media {
  position: relative;
  overflow: hidden;
  border: 0;
  background: #2a1d22;
}

.eats-strip__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.45));
  transition: opacity 220ms ease-out;
  pointer-events: none;
}

.eats-strip__media a {
  display: block;
  width: 100%;
  height: 100%;
}

.eats-strip__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.93);
  transform: scale(1.02);
  transition: transform 260ms cubic-bezier(0.22, 0.8, 0.36, 1), filter 240ms ease-out;
}

.eats-strips:hover .eats-strip {
  flex-grow: 0.56;
}

.eats-strips:hover .eats-strip:hover,
.eats-strips:hover .eats-strip:focus-within {
  flex-grow: 4.2;
}

.eats-strips:hover .eats-strip:not(:hover):not(:focus-within) .eats-strip__media::after {
  opacity: 1;
}

.eats-strips:hover .eats-strip:not(:hover):not(:focus-within) .eats-strip__media img {
  filter: brightness(0.74) saturate(0.88);
}

/* The BY FLAVOUR source has transparent edges; crop it slightly in resting desktop state. */
.eats-strips:not(:hover) .eats-strip:nth-child(2) .eats-strip__media img {
  transform: scale(1.14);
  object-position: 56% center;
}

/* Non-hover BY AREA: crop in a bit more so the first card reads as tight as the others. */
.eats-strips:not(:hover) .eats-strip:nth-child(1) .eats-strip__media img {
  transform: scale(1.08);
  object-position: center;
}

.eats-strips:hover .eats-strip:hover .eats-strip__title-full,
.eats-strips:hover .eats-strip:focus-within .eats-strip__title-full {
  opacity: 1;
  transform: translateY(0);
}

.eats-strips:hover .eats-strip:hover .eats-strip__title-short,
.eats-strips:hover .eats-strip:focus-within .eats-strip__title-short {
  transform: translateY(-1px);
}

.eats-strips:hover .eats-strip:hover .eats-strip__media img,
.eats-strips:hover .eats-strip:focus-within .eats-strip__media img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1);
}

@media (min-width: 768px) {
  .eats-showcase {
    grid-template-columns: minmax(290px, 0.95fr) minmax(420px, 1.05fr);
    align-items: end;
    gap: 1.3rem;
  }

  .eats-showcase__intro {
    align-self: center;
  }

  .eats-strips--desktop {
    display: flex;
  }
}

@media (max-width: 767px) {
  .section--eats-showcase {
    border-radius: 0;
  }

  .eats-showcase {
    width: min(var(--maxw), calc(100% - 1.3rem));
    padding: 14px 0;
  }

  .eats-showcase__intro .subhead {
    max-width: 100%;
    font-size: clamp(1.1rem, 4.5vw, 1.35rem);
  }

  .eats-strips--desktop {
    display: none !important;
  }

  .eats-mobile-list {
    display: grid !important;
    min-height: 0;
    overflow: visible;
    gap: 0.56rem;
    padding: 10px;
    border: 1px solid rgba(110, 95, 88, 0.22);
    border-radius: 0;
    background: #f5efe6;
  }

  .eats-mobile-item {
    display: block;
    width: 100%;
    margin-left: 0;
    padding: 0;
    cursor: pointer;
  }

  .eats-mobile-media {
    margin-left: 0;
    height: 66px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 236, 231, 0.2);
    background: #2a1d22;
    transition: height 240ms ease, border-color 240ms ease;
  }

  .eats-mobile-item.is-active .eats-mobile-media {
    height: 188px;
    border-color: rgba(255, 236, 231, 0.36);
  }

  .eats-mobile-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.45));
    pointer-events: none;
  }

  .eats-mobile-media a {
    display: block;
    width: 100%;
    height: 100%;
  }

  .eats-mobile-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) saturate(0.93);
    transition: transform 240ms ease, filter 240ms ease;
  }

  .eats-mobile-item.is-active .eats-mobile-media img {
    transform: scale(1.05);
    filter: brightness(1) saturate(1);
  }

  .eats-mobile-list:has(.eats-mobile-item.is-active) .eats-mobile-item:not(.is-active) .eats-mobile-media img {
    filter: brightness(0.78) saturate(0.9);
  }

  .eats-mobile-title {
    margin: 0;
    padding: 0 0 0.34rem 3px;
    min-height: 0;
    line-height: 1.02;
    text-align: left;
    color: #1f181b;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .eats-mobile-title-short {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.8rem;
    letter-spacing: 0.17em;
    font-weight: 700;
    color: rgba(31, 24, 27, 0.9);
    transition: transform 220ms ease;
  }

  .eats-mobile-title-full {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(4px);
    transition: max-height 220ms ease, opacity 200ms ease, transform 220ms ease;
    font-family: var(--serif);
    font-size: 1rem;
    line-height: 1.15;
    color: #1f181b;
  }

  .eats-mobile-item.is-active .eats-mobile-title-short {
    transform: translateY(-1px);
  }

  .eats-mobile-item.is-active .eats-mobile-title-full {
    max-height: 2.8em;
    opacity: 1;
    transform: translateY(0);
  }
}

.section--stay-quiz {
  margin-top: 20px;
}

.stay-quiz {
  width: min(var(--maxw), calc(100% - 2rem));
  margin-inline: auto;
}

.stay-quiz__layout {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(290px, 0.95fr);
  gap: 1rem;
  align-items: center;
}

.stay-quiz__flow.card,
.stay-quiz__intro.card {
  margin: 0;
}

.stay-quiz__flow.card {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  overflow: visible;
}

.stay-quiz__flow.card::before {
  display: none;
}

.stay-quiz__flow {
  width: min(100%, 430px);
  justify-self: end;
}

.stay-quiz__intro-shell {
  align-self: center;
  margin: 0;
  padding: clamp(22px, 5vw, 40px);
}

.stay-quiz__intro {
  margin: 0;
}

.stay-quiz__intro.card::before {
  display: none;
}

.stay-quiz__intro .subhead {
  margin: 0 0 1rem;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.42;
  color: #533f46;
  max-width: 30ch;
}

.stay-quiz__stack {
  position: relative;
  min-height: 500px;
}

.stay-quiz__step {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(147, 67, 90, 0.16);
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 239, 234, 0.88));
  box-shadow: 0 18px 36px rgba(80, 41, 54, 0.14);
  display: flex;
  flex-direction: column;
  transform: translateX(108%);
  opacity: 0;
  pointer-events: none;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
  z-index: 3;
}

.stay-quiz__step.is-current {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.stay-quiz__step.is-past {
  transform: translateX(-108%);
  opacity: 0;
  pointer-events: none;
}

.stay-quiz__step-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.stay-quiz__step-body {
  padding: 16px 14px 14px;
}

.stay-quiz__step-body h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(0.98rem, 1.3vw, 1.18rem);
  color: #2f1f25;
}

.stay-quiz__hint {
  margin: -0.3rem 0 0.6rem;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(84, 50, 61, 0.82);
}

.stay-quiz__options {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.stay-quiz__option {
  border: 1px solid rgba(147, 67, 90, 0.2);
  border-radius: 0;
  padding: 0.48rem 0.78rem;
  background: rgba(255, 255, 255, 0.9);
  color: #2f1f25;
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.stay-quiz__option:hover,
.stay-quiz__option:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(147, 67, 90, 0.35);
  box-shadow: 0 10px 18px rgba(80, 41, 54, 0.12);
}

.stay-quiz__option.is-selected {
  border-color: rgba(147, 67, 90, 0.5);
  background: linear-gradient(138deg, rgba(201, 99, 124, 0.2), rgba(239, 215, 165, 0.28));
  color: #2f1f25;
}

.stay-quiz__next {
  margin-top: 0.72rem;
  display: block;
  margin-left: auto;
  border: 1px solid rgba(147, 67, 90, 0.28);
  border-radius: 0;
  padding: 0.5rem 0.86rem;
  background: #a33d5a;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.stay-quiz__next[hidden] {
  display: none !important;
}

.stay-quiz__next:hover,
.stay-quiz__next:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(120, 39, 63, 0.9);
  background: #862a45;
  box-shadow: 0 8px 16px rgba(80, 41, 54, 0.12);
}

.stay-quiz__next:disabled {
  cursor: not-allowed;
  opacity: 1;
  background: rgba(255, 255, 255, 0.92);
  color: rgba(71, 44, 52, 0.58);
  border-color: rgba(147, 67, 90, 0.2);
  transform: none;
  box-shadow: none;
}

.stay-quiz__result {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(147, 67, 90, 0.18);
  border-radius: 0;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(145deg, rgb(255, 253, 246), rgb(255, 244, 224));
  box-shadow: 0 18px 36px rgba(80, 41, 54, 0.16);
  z-index: 6;
}

.stay-quiz__result-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.stay-quiz__result-image-link {
  display: block;
}

.stay-quiz__result-body {
  padding: 14px;
}

.stay-quiz__result-title {
  margin: 0 0 0.45rem;
  color: #2f1f25;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.12;
}

.stay-quiz__result-copy {
  margin: 0 0 0.85rem;
  color: #38252c;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.42;
  font-weight: 600;
}

.stay-quiz__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: 1px solid rgba(147, 67, 90, 0.36);
  background: var(--rose-500);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.64rem 0.92rem;
  transition: background 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}

.stay-quiz__cta:hover,
.stay-quiz__cta:focus-visible {
  background: var(--rose-700);
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(80, 41, 54, 0.18);
}

.stay-quiz__reset {
  margin-top: 0.65rem;
  display: block;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: 1px solid rgba(147, 67, 90, 0.28);
  background: rgba(255, 255, 255, 0.92);
  color: #2f1f25;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.56rem 0.86rem;
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.stay-quiz__reset:hover,
.stay-quiz__reset:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(147, 67, 90, 0.42);
  background: #fff;
  box-shadow: 0 10px 18px rgba(80, 41, 54, 0.12);
}

.section--who-showcase {
  --who-serif: "Cormorant Garamond", Georgia, serif;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid rgba(147, 67, 90, 0.14);
  border-radius: 0;
  background: linear-gradient(155deg, rgba(255, 252, 249, 0.96), rgba(255, 241, 235, 0.82));
  box-shadow: 0 14px 30px rgba(80, 41, 54, 0.12);
}

.who-showcase__media {
  position: absolute;
  inset: 0;
}

.who-showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.01) brightness(0.9);
  transition: opacity 320ms ease, transform 450ms ease;
}

.who-showcase__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 249, 245, 0.95) 0%, rgba(255, 245, 240, 0.76) 34%, rgba(255, 244, 238, 0.4) 62%, rgba(255, 244, 238, 0.2) 100%),
    linear-gradient(180deg, rgba(255, 250, 246, 0.16), rgba(255, 239, 233, 0.5));
}

.who-showcase {
  position: relative;
  z-index: 1;
  min-height: clamp(760px, 100vh, 1040px);
  display: flex;
  align-items: flex-start;
  padding: 1.9rem 0 2.1rem;
}

.who-showcase__stack {
  display: grid;
  gap: 0.8rem;
  max-width: 380px;
}

.who-card {
  padding: 1.08rem 1rem;
  border: 1px solid rgba(147, 67, 90, 0.18);
  background: rgba(255, 251, 248, 0.93);
  color: #2f1f25;
  box-shadow: 0 10px 18px rgba(80, 41, 54, 0.08);
  transition: transform 140ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  cursor: pointer;
}

.who-card--active {
  background: linear-gradient(142deg, rgba(201, 99, 124, 0.26), rgba(239, 215, 165, 0.36));
  color: #2f1f25;
  border-color: rgba(147, 67, 90, 0.5);
  box-shadow: 0 14px 24px rgba(80, 41, 54, 0.14);
}

.who-card:hover,
.who-card:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(142deg, rgba(201, 99, 124, 0.16), rgba(255, 244, 238, 0.9));
  color: #2f1f25;
  border-color: rgba(147, 67, 90, 0.4);
  box-shadow: 0 14px 24px rgba(80, 41, 54, 0.12);
}

.who-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.62rem;
  line-height: 1.03;
  font-family: var(--who-serif);
  color: #2f1f25;
}

.who-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.46;
  color: #4f3b42;
}

.explore-footer {
  margin-top: 20px;
  padding: 1.3rem 0 0.8rem;
  border: 1px solid rgba(147, 67, 90, 0.16);
  border-radius: 0;
  background: linear-gradient(155deg, rgba(255, 252, 249, 0.96), rgba(255, 241, 235, 0.88));
  box-shadow: 0 14px 28px rgba(80, 41, 54, 0.1);
}

.explore-footer__inner {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
}

.explore-footer__badge {
  width: 82px;
  height: 82px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 140ms ease;
}

.explore-footer__badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.explore-footer__badge:hover,
.explore-footer__badge:focus-visible {
  transform: translateY(-1px);
}

.explore-footer__kicker {
  margin: -0.2rem 0 0.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(47, 31, 37, 0.84);
  font-weight: 700;
}

.explore-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.1rem;
}

.explore-footer__link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: rgba(47, 31, 37, 0.86);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 140ms ease, transform 140ms ease;
}

.explore-footer__link:hover,
.explore-footer__link:focus-visible {
  color: #2f1f25;
  transform: translateY(-1px);
}

.explore-footer__icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.explore-footer__note {
  margin: 0.1rem 0 0;
  max-width: none;
  text-align: center;
  white-space: nowrap;
  font-size: 0.72rem;
  line-height: 1.4;
  color: rgba(47, 31, 37, 0.68);
}

@media (max-width: 980px) {
  :root {
    --topnav-h: 88px;
  }

  .stay-quiz__layout {
    grid-template-columns: 1fr;
  }

  .stay-quiz__flow {
    width: 100%;
    justify-self: stretch;
  }

  .stay-quiz__intro-shell {
    order: -1;
  }

  .top-nav {
    padding: 10px;
  }

  .top-nav .inner {
    gap: 8px;
  }

  .navbtn {
    min-width: auto;
    padding: 10px;
    min-height: 56px;
    font-size: 14px;
  }

  .site-logo {
    width: 92px;
    height: 92px;
  }

  .hero {
    border-radius: 0;
  }

  .hero-video {
    min-height: clamp(320px, 66vw, 560px);
  }

  .hero img {
    height: clamp(320px, 66vw, 560px);
  }

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

  .club-layout {
    grid-template-columns: 1fr;
  }

  .club-panel {
    position: static;
  }

  .club-feed--scroll .club-feature {
    aspect-ratio: 1024 / 650;
  }

  .tricks-carousel .splide__slide {
    width: min(40vw, 560px);
    height: min(56vh, 520px);
  }

  .tricks-slide-title {
    left: 15px;
    bottom: 32px;
    width: min(76%, 300px);
    font-size: clamp(28px, 5.8vw, 42px);
  }

  .slider-wave--top,
  .slider-wave--bottom {
    height: 28px;
  }

  .slider-wave--bottom {
    bottom: 60px;
  }
}

@media (max-width: 860px) {
  .move-switcher__layout {
    grid-template-columns: 1fr;
  }

  .tricks-carousel .splide__slide {
    width: min(56vw, 520px);
    height: min(54vh, 500px);
  }

  .tricks-slide-title {
    width: min(78%, 290px);
    font-size: clamp(27px, 6.2vw, 40px);
  }

  .slider-wave--top { top: 30px; }
  .slider-wave--bottom { bottom: 52px; }
}

@media (max-width: 740px) {
  .page {
    padding: 20px 14px 66px;
  }

  .top-nav {
    position: static;
    backdrop-filter: none;
  }

  .top-nav .inner {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .navgroup {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .navbtn {
    min-width: 96px;
  }

  .navbtn span {
    display: none;
  }

  .site-logo {
    margin: 0 auto;
    width: 88px;
    height: 88px;
  }

  .hero-text h1 {
    font-size: clamp(44px, 14vw, 72px);
  }

  .hero-video {
    padding-top: 5.6rem;
  }

  .hero-video__content {
    gap: 0.62rem;
  }

  .hero-video__title {
    font-size: clamp(2.15rem, 13vw, 4.8rem);
  }

  .hero-video__lead {
    max-width: 100%;
    font-size: 1.02rem;
  }

  .hero-video__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .hero-video__btn {
    width: auto;
    max-width: 100%;
    padding: 0.74rem 0.8rem;
    font-size: 0.82rem;
    min-height: 2.7rem;
  }

  .hero-video__jump-links {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.45rem 0.55rem;
    width: auto;
    max-width: 100%;
    overflow-x: auto;
    align-items: flex-start;
  }


  .hero-video__scroll {
    width: auto;
    flex: 0 0 auto;
    margin-top: 0.25rem;
    white-space: normal;
  }

  .hero-video__scroll-icon {
    width: 48px;
    height: 48px;
  }

  .subhead {
    font-size: clamp(24px, 9vw, 40px);
  }

  .card {
    border-radius: 0;
    padding: 18px;
  }

  .stay-quiz {
    width: min(var(--maxw), calc(100% - 1.3rem));
  }

  .stay-quiz__layout {
    grid-template-columns: 1fr;
  }

  .stay-quiz__intro-shell {
    order: -1;
  }

  .stay-quiz__stack {
    min-height: 460px;
  }

  .stay-quiz__step-image {
    height: 230px;
  }

  .stay-quiz__result-image {
    height: 152px;
  }

  .stay-quiz__step-body {
    padding: 12px;
  }

  .stay-quiz__option {
    font-size: 0.86rem;
    padding: 0.52rem 0.8rem;
  }

  .who-showcase__media {
    position: relative;
    inset: auto;
    height: clamp(220px, 44vh, 340px);
  }

  .who-showcase__shade {
    background: linear-gradient(180deg, rgba(255, 250, 245, 0.08) 0%, rgba(255, 244, 238, 0.2) 48%, rgba(255, 241, 234, 0.9) 100%);
  }

  .who-showcase {
    min-height: unset;
    display: block;
    padding: 0.85rem 0 1rem;
  }

  .who-showcase__stack {
    max-width: 100%;
    width: 100%;
    gap: 0.62rem;
  }

  .who-card {
    padding: 0.9rem 1rem;
    background: rgba(255, 252, 249, 0.95);
    border-color: rgba(147, 67, 90, 0.2);
    color: #2f1f25;
  }

  .who-card__title {
    margin: 0;
    font-size: 1.38rem;
    line-height: 1.02;
  }

  .who-card p {
    max-height: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 240ms ease, opacity 200ms ease, margin-top 200ms ease;
  }

  .who-card--active {
    background: linear-gradient(142deg, rgba(201, 99, 124, 0.24), rgba(239, 215, 165, 0.34));
    border-color: rgba(147, 67, 90, 0.5);
    color: #2f1f25;
  }

  .who-card--active p {
    min-height: calc(1.46em * 3);
    max-height: calc(1.46em * 3);
    margin-top: 0.48rem;
    opacity: 1;
  }

  .who-card:not(.who-card--active):hover,
  .who-card:not(.who-card--active):focus-visible {
    background: linear-gradient(142deg, rgba(201, 99, 124, 0.16), rgba(255, 244, 238, 0.92));
    color: #2f1f25;
    border-color: rgba(147, 67, 90, 0.4);
  }

  .explore-footer {
    border-radius: 0;
    padding: 1rem 0 0.72rem;
  }

  .explore-footer__badge {
    width: 74px;
    height: 74px;
  }

  .explore-footer__kicker {
    margin-top: -0.12rem;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .explore-footer__nav {
    gap: 0.55rem 0.72rem;
  }

  .explore-footer__icon {
    width: 46px;
    height: 46px;
  }

  .explore-footer__note {
    font-size: 0.67rem;
    line-height: 1.35;
    max-width: 50ch;
    white-space: normal;
  }

  .item h3 {
    font-size: 26px;
  }

  .info-table th,
  .info-table td {
    padding: 10px 10px;
    font-size: 13px;
  }

  .club-desktop-only {
    display: none;
  }

  .club-mobile-only {
    display: block;
  }

  .club-mobile-layout {
    align-items: start;
  }

  .club-mobile-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 8px;
    z-index: 30;
    align-self: start;
  }

  .tricks-carousel {
    padding-top: 10px;
  }

  .tricks-carousel .splide__slide {
    width: calc((100vw - 1.3rem) / 3) !important;
    height: 52vh;
    max-width: none;
  }

  .tricks-slide-title {
    left: 12px;
    bottom: 18px;
    width: calc(100% - 24px);
    font-size: clamp(18px, 6.2vw, 32px);
  }

  .slider-wave--top {
    top: 24px;
    height: 24px;
  }

  .slider-wave--bottom {
    bottom: 54px;
    height: 24px;
  }
}

/* Keep pill controls lightly rounded while all other boxes/media stay sharp. */
.navbtn,
.pill,
.cta-btn,
.subnav-link,
.hero-video__btn,
.club-mobile-pills a,
.stay-quiz__option,
.stay-quiz__next,
.stay-quiz__cta,
.stay-quiz__reset {
  border-radius: 8px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Shared Eats Hero Styles */

.eats-hero {
  padding: 120px 0 60px;
  text-align: center;
  background: radial-gradient(circle at center, var(--blush-100), transparent);
}

.eats-hero-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1rem;
}

.eats-hero-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  color: #2f1f25;
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  font-weight: 700;
}

.eats-hero-link__icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.eats-hero-link:hover,
.eats-hero-link:focus-visible {
  color: #5f3342;
}

.serif-title {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 84px);
  color: var(--rose-700);
  margin: 10px 0;
}

/* SkyTrain control room page */
.page-skytrain-lab {
  --sky-ink: #0f2c36;
  --sky-muted: #36545f;
  --sky-paper: #f4fbfd;
  --sky-line-canada: #15836e;
  --sky-line-expo: #2b67ca;
  --sky-line-millennium: #d39a17;
  --sky-hot: #f76944;
  --sky-glow: rgba(59, 183, 191, 0.24);
  background:
    radial-gradient(900px 520px at 14% -8%, rgba(56, 187, 196, 0.2), transparent 65%),
    radial-gradient(820px 540px at 88% 16%, rgba(250, 164, 63, 0.2), transparent 62%),
    linear-gradient(180deg, #eef7fb 0%, #f7fcfd 44%, #f7f9f0 100%);
}

.page-skytrain-lab::before {
  opacity: 0.16;
  background: url('../../../images/paper-texture.webp') center / 540px repeat;
}

.page-skytrain-lab::after {
  background:
    radial-gradient(480px 300px at 8% 20%, rgba(24, 132, 111, 0.18), transparent 70%),
    radial-gradient(540px 340px at 96% 22%, rgba(43, 103, 202, 0.16), transparent 70%);
}

.page-skytrain-lab .page {
  padding-top: 22px;
}

.page-skytrain-lab h1,
.page-skytrain-lab h2,
.page-skytrain-lab h3 {
  color: var(--sky-ink);
}

.page-skytrain-lab p,
.page-skytrain-lab li,
.page-skytrain-lab dd,
.page-skytrain-lab dt {
  color: var(--sky-muted);
}

.page-skytrain-lab .sky-lab-hero {
  position: relative;
  margin-bottom: 18px;
  border: 1px solid rgba(15, 44, 54, 0.2);
  box-shadow: 0 26px 54px rgba(14, 51, 64, 0.2);
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(8, 25, 34, 0.9), rgba(14, 56, 68, 0.72) 52%, rgba(11, 76, 89, 0.6)),
    url('../../../images/move-skytrain.webp') center / cover;
}

.page-skytrain-lab .sky-lab-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(162, 236, 248, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(162, 236, 248, 0.1) 1px, transparent 1px);
  background-size: 34px 34px;
  mix-blend-mode: screen;
  opacity: 0.45;
}

.page-skytrain-lab .sky-lab-hero__frame {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 7vw, 66px);
  display: grid;
  gap: 18px;
}

.page-skytrain-lab .sky-lab-hero .kicker {
  margin: 0;
  color: rgba(228, 249, 255, 0.82);
}

.page-skytrain-lab .sky-lab-hero .serif-title {
  margin: 0;
  font-size: clamp(46px, 9vw, 94px);
  color: #f1feff;
  line-height: 0.9;
}

.page-skytrain-lab .sky-lab-hero .subhead {
  margin: 0;
  max-width: 760px;
  font-family: var(--sans);
  font-size: clamp(20px, 2.7vw, 29px);
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: rgba(236, 251, 255, 0.88);
}

.page-skytrain-lab .sky-lab-hero__signal {
  display: inline-flex;
  align-items: flex-end;
  gap: 7px;
  width: fit-content;
  padding: 8px 10px;
  border: 1px solid rgba(201, 246, 255, 0.34);
  background: rgba(12, 46, 57, 0.66);
}

.page-skytrain-lab .sky-lab-hero__signal span {
  width: 11px;
  background: linear-gradient(180deg, #9be7f4, #18a48d);
  transform-origin: center bottom;
  animation: skySignal 1.4s ease-in-out infinite;
}

.page-skytrain-lab .sky-lab-hero__signal span:nth-child(1) {
  height: 14px;
  animation-delay: 0s;
}

.page-skytrain-lab .sky-lab-hero__signal span:nth-child(2) {
  height: 22px;
  animation-delay: 0.16s;
}

.page-skytrain-lab .sky-lab-hero__signal span:nth-child(3) {
  height: 30px;
  animation-delay: 0.32s;
}

.page-skytrain-lab .sky-lab-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-skytrain-lab .sky-lab-hero__actions .pill {
  color: #ecfafe;
  border-color: rgba(203, 247, 255, 0.44);
  background: linear-gradient(145deg, rgba(19, 88, 104, 0.74), rgba(10, 42, 52, 0.66));
  box-shadow: 0 12px 22px rgba(4, 17, 28, 0.3);
}

.page-skytrain-lab .sky-lab-hero__actions .pill:hover,
.page-skytrain-lab .sky-lab-hero__actions .pill:focus-visible {
  background: linear-gradient(145deg, rgba(26, 108, 126, 0.92), rgba(10, 42, 52, 0.76));
  box-shadow: 0 16px 28px rgba(4, 17, 28, 0.35);
}

.page-skytrain-lab .sky-lab-hero .eats-hero-links {
  gap: 8px;
}

.page-skytrain-lab .sky-lab-hero .eats-hero-link {
  border-color: rgba(200, 246, 255, 0.34);
  background: linear-gradient(160deg, rgba(11, 56, 68, 0.74), rgba(7, 33, 40, 0.64));
  color: #dcf6ff;
}

.page-skytrain-lab .sky-lab-hero .eats-hero-link:hover,
.page-skytrain-lab .sky-lab-hero .eats-hero-link:focus-visible {
  background: linear-gradient(160deg, rgba(16, 80, 95, 0.9), rgba(8, 36, 44, 0.78));
}

.page-skytrain-lab .sky-lab-hero__tracks {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 9px;
  padding: 0 18px 14px;
}

.page-skytrain-lab .sky-lab-track {
  height: 5px;
  display: block;
  position: relative;
  overflow: hidden;
  background: rgba(224, 249, 255, 0.24);
}

.page-skytrain-lab .sky-lab-track::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 34%;
  filter: blur(0.2px);
  animation: skyTrack 3.6s linear infinite;
}

.page-skytrain-lab .sky-lab-track--canada::after {
  background: linear-gradient(90deg, transparent, var(--sky-line-canada), transparent);
}

.page-skytrain-lab .sky-lab-track--expo::after {
  background: linear-gradient(90deg, transparent, var(--sky-line-expo), transparent);
  animation-delay: 0.7s;
}

.page-skytrain-lab .sky-lab-track--millennium::after {
  background: linear-gradient(90deg, transparent, var(--sky-line-millennium), transparent);
  animation-delay: 1.3s;
}

.page-skytrain-lab .sky-lab-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 16px;
  align-items: start;
}

.page-skytrain-lab .sky-lab-builder {
  background: linear-gradient(165deg, rgba(251, 255, 255, 0.95), rgba(229, 246, 250, 0.75));
  border-color: rgba(12, 82, 96, 0.24);
}

.page-skytrain-lab .sky-lab-choice-stack {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.page-skytrain-lab .sky-lab-choice {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(12, 82, 96, 0.18);
  background: rgba(243, 252, 255, 0.76);
}

.page-skytrain-lab .sky-lab-choice legend {
  padding: 0 6px;
  font-weight: 800;
  color: var(--sky-ink);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-skytrain-lab .sky-lab-choice__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.page-skytrain-lab .sky-lab-chip {
  border: 1px solid rgba(13, 77, 90, 0.24);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(215, 244, 247, 0.84));
  color: var(--sky-ink);
  padding: 10px 12px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.page-skytrain-lab .sky-lab-chip:hover,
.page-skytrain-lab .sky-lab-chip:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(14, 96, 113, 0.46);
  box-shadow: 0 10px 20px rgba(15, 88, 103, 0.18);
}

.page-skytrain-lab .sky-lab-chip.is-active {
  border-color: rgba(18, 120, 138, 0.68);
  background: linear-gradient(145deg, rgba(18, 123, 140, 0.92), rgba(13, 64, 76, 0.9));
  color: #ecfeff;
  box-shadow: 0 12px 20px rgba(10, 50, 60, 0.34);
}

.page-skytrain-lab .sky-lab-builder__footer {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.page-skytrain-lab .sky-lab-builder__hint {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #4b6770;
}

.page-skytrain-lab .sky-lab-output {
  background: linear-gradient(170deg, rgba(12, 48, 58, 0.96), rgba(17, 85, 99, 0.9));
  border-color: rgba(155, 239, 255, 0.3);
  color: #e9fbff;
}

.page-skytrain-lab .sky-lab-output p,
.page-skytrain-lab .sky-lab-output li,
.page-skytrain-lab .sky-lab-output h3 {
  color: inherit;
}

.page-skytrain-lab .sky-lab-output .kicker {
  color: rgba(184, 241, 255, 0.86);
}

.page-skytrain-lab .sky-lab-output__line {
  margin: 0 0 10px;
  width: fit-content;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(14, 116, 131, 0.38);
  border: 1px solid rgba(164, 241, 255, 0.4);
}

.page-skytrain-lab .sky-lab-steps {
  margin: 14px 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 8px;
}

.page-skytrain-lab .sky-lab-steps li {
  line-height: 1.56;
}

.page-skytrain-lab .sky-lab-facts {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.page-skytrain-lab .sky-lab-facts__item {
  padding: 10px 12px;
  border: 1px solid rgba(166, 243, 255, 0.25);
  background: rgba(2, 28, 36, 0.28);
}

.page-skytrain-lab .sky-lab-facts__label {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(186, 239, 252, 0.84);
}

.page-skytrain-lab .sky-lab-facts__value {
  margin: 0;
  font-size: 1rem;
  color: #e8fbff;
  font-weight: 700;
}

.page-skytrain-lab .sky-lab-alert {
  margin: 14px 0 0;
  border-left: 4px solid #fcb25e;
  background: linear-gradient(130deg, rgba(252, 178, 94, 0.28), rgba(246, 122, 75, 0.2));
  padding: 10px 12px;
  color: #fff4e4;
  font-size: 0.96rem;
}

.page-skytrain-lab .sky-lab-lines__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 16px;
}

.page-skytrain-lab .sky-lab-lines__menu {
  background: linear-gradient(166deg, rgba(251, 255, 255, 0.95), rgba(234, 245, 255, 0.74));
  border-color: rgba(14, 75, 125, 0.24);
}

.page-skytrain-lab .sky-lab-line-buttons {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.page-skytrain-lab .sky-lab-line-btn {
  text-align: left;
  border: 1px solid rgba(11, 74, 87, 0.2);
  background: rgba(255, 255, 255, 0.84);
  padding: 12px 14px;
  color: var(--sky-ink);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.page-skytrain-lab .sky-lab-line-btn span {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #4f6f79;
}

.page-skytrain-lab .sky-lab-line-btn:hover,
.page-skytrain-lab .sky-lab-line-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 16px rgba(23, 74, 93, 0.14);
}

.page-skytrain-lab .sky-lab-line-btn.is-active {
  border-color: var(--line-active, rgba(26, 130, 147, 0.66));
  box-shadow: 0 12px 18px rgba(23, 74, 93, 0.2);
  background: linear-gradient(140deg, rgba(236, 250, 255, 0.96), rgba(215, 245, 250, 0.88));
}

.page-skytrain-lab .sky-lab-lines__detail {
  border-color: rgba(11, 74, 87, 0.22);
  background: linear-gradient(170deg, rgba(248, 254, 255, 0.95), rgba(225, 247, 253, 0.82));
}

.page-skytrain-lab .sky-lab-line-meter {
  margin: 12px 0 14px;
  height: 8px;
  background: rgba(9, 74, 87, 0.12);
  overflow: hidden;
}

.page-skytrain-lab .sky-lab-line-meter span {
  display: block;
  height: 100%;
  width: var(--meter, 68%);
  background: var(--line-meter-color, #17846f);
  box-shadow: 0 0 16px var(--sky-glow);
  transition: width 260ms ease, background 260ms ease;
}

.page-skytrain-lab .sky-lab-line-facts {
  margin: 0;
  display: grid;
  gap: 10px;
}

.page-skytrain-lab .sky-lab-line-facts div {
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(12, 84, 97, 0.16);
}

.page-skytrain-lab .sky-lab-line-facts dt {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #44616b;
  font-weight: 800;
}

.page-skytrain-lab .sky-lab-line-facts dd {
  margin: 4px 0 0;
  font-size: 0.94rem;
  color: #184451;
  font-weight: 700;
}

.page-skytrain-lab .sky-lab-stations {
  margin-top: 14px;
}

.page-skytrain-lab .sky-lab-stations__label {
  margin: 0 0 8px;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #3e5f69;
  font-weight: 800;
}

.page-skytrain-lab .sky-lab-stations ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-skytrain-lab .sky-lab-stations li {
  margin: 0;
  padding: 7px 10px;
  border: 1px solid rgba(12, 84, 97, 0.2);
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  color: #204f5c;
  font-weight: 700;
}

.page-skytrain-lab .sky-lab-radar__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 16px;
}

.page-skytrain-lab .sky-lab-radar__card,
.page-skytrain-lab .sky-lab-radar__result {
  border-color: rgba(94, 107, 31, 0.24);
  background: linear-gradient(160deg, rgba(255, 255, 253, 0.95), rgba(242, 249, 226, 0.8));
}

.page-skytrain-lab .sky-lab-radar__btn {
  margin-top: 12px;
  border: 1px solid rgba(89, 106, 17, 0.35);
  background: linear-gradient(144deg, rgba(248, 162, 74, 0.92), rgba(223, 139, 36, 0.94));
  color: #fffaf1;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  padding: 12px 16px;
  cursor: pointer;
  box-shadow: 0 14px 24px rgba(147, 94, 18, 0.24);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.page-skytrain-lab .sky-lab-radar__btn:hover,
.page-skytrain-lab .sky-lab-radar__btn:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 16px 28px rgba(147, 94, 18, 0.3);
}

.page-skytrain-lab .sky-lab-radar__hint {
  margin: 10px 0 0;
  font-size: 0.88rem;
}

.page-skytrain-lab .sky-lab-radar__result {
  position: relative;
  overflow: hidden;
}

.page-skytrain-lab .sky-lab-radar__result.is-swapping {
  animation: skySwap 360ms ease;
}

.page-skytrain-lab .sky-lab-radar__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.page-skytrain-lab .sky-lab-radar__tags span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4f5b0f;
  border: 1px solid rgba(113, 125, 41, 0.3);
  background: rgba(255, 255, 255, 0.7);
  padding: 6px 9px;
}

.page-skytrain-lab .sky-lab-rules__card {
  border-color: rgba(14, 77, 90, 0.24);
  background: linear-gradient(164deg, rgba(254, 255, 255, 0.96), rgba(231, 248, 252, 0.82));
}

.page-skytrain-lab .sky-lab-rules__grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.page-skytrain-lab .sky-lab-rule {
  border: 1px solid rgba(13, 83, 97, 0.18);
  background: linear-gradient(148deg, rgba(255, 255, 255, 0.94), rgba(220, 245, 249, 0.78));
  padding: 14px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 420ms ease, transform 420ms ease;
}

.page-skytrain-lab .sky-lab-rule.is-pending {
  opacity: 0;
  transform: translateY(18px);
}

.page-skytrain-lab .sky-lab-rule.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-skytrain-lab .sky-lab-rule__number {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  color: #0d7081;
}

.page-skytrain-lab .sky-lab-rule h3 {
  margin-bottom: 6px;
  font-size: clamp(24px, 2.6vw, 34px);
}

.page-skytrain-lab .sky-lab-rule p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.55;
}

.page-skytrain-lab .sky-lab-rules__card .notice {
  border-left-color: #1a9480;
  color: #2a5c53;
  background: linear-gradient(120deg, rgba(137, 235, 216, 0.26), rgba(242, 255, 233, 0.52));
}

.page-skytrain-lab .move-switcher__card,
.page-skytrain-lab .move-switcher__preview {
  border-color: rgba(14, 77, 90, 0.2);
}

@keyframes skySignal {
  0%,
  100% {
    transform: scaleY(0.65);
    opacity: 0.72;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes skyTrack {
  0% {
    transform: translateX(-130%);
  }

  100% {
    transform: translateX(310%);
  }
}

@keyframes skySwap {
  0% {
    transform: scale(0.97);
    opacity: 0.75;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .page-skytrain-lab .sky-lab-grid,
  .page-skytrain-lab .sky-lab-lines__layout,
  .page-skytrain-lab .sky-lab-radar__layout,
  .page-skytrain-lab .move-switcher__layout {
    grid-template-columns: 1fr;
  }

  .page-skytrain-lab .sky-lab-rules__grid {
    grid-template-columns: 1fr;
  }

  .page-skytrain-lab .sky-lab-hero .subhead {
    max-width: 100%;
  }
}

@media (max-width: 740px) {
  .page-skytrain-lab .page {
    padding-top: 12px;
  }

  .page-skytrain-lab .sky-lab-hero__frame {
    padding: 18px;
    gap: 12px;
  }

  .page-skytrain-lab .sky-lab-hero .serif-title {
    font-size: clamp(42px, 15vw, 68px);
  }

  .page-skytrain-lab .sky-lab-hero .subhead {
    font-size: 1.02rem;
    line-height: 1.5;
  }

  .page-skytrain-lab .sky-lab-hero__actions .pill {
    width: 100%;
  }

  .page-skytrain-lab .sky-lab-choice {
    padding: 12px;
  }

  .page-skytrain-lab .sky-lab-chip {
    width: 100%;
  }

  .page-skytrain-lab .sky-lab-line-btn {
    padding: 10px 11px;
  }

  .page-skytrain-lab .sky-lab-radar__btn {
    width: 100%;
  }

  .page-skytrain-lab .sky-lab-stations ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-skytrain-lab .sky-lab-hero__signal span,
  .page-skytrain-lab .sky-lab-track::after,
  .page-skytrain-lab .sky-lab-radar__result.is-swapping {
    animation: none;
  }

  .page-skytrain-lab .sky-lab-chip,
  .page-skytrain-lab .sky-lab-line-btn,
  .page-skytrain-lab .sky-lab-radar__btn,
  .page-skytrain-lab .sky-lab-rule {
    transition: none;
  }
}

/* SkyTrain cute page rebuild */
.page-skytrain-spark {
  --spark-ink: #2f1e2d;
  --spark-muted: #5f4a57;
  --spark-blush: #ffdce8;
  --spark-peach: #ffe7cf;
  --spark-mint: #d9f4ec;
  --spark-blue: #d7e9ff;
  --spark-shadow: 0 18px 36px rgba(102, 61, 78, 0.16);
  background:
    radial-gradient(1100px 700px at 12% -8%, rgba(255, 206, 220, 0.45), transparent 62%),
    radial-gradient(980px 640px at 88% 10%, rgba(178, 229, 255, 0.36), transparent 62%),
    linear-gradient(180deg, #fff9f7 0%, #fffdfb 48%, #fff8f2 100%);
}

.page-skytrain-spark::before {
  opacity: 0.26;
}

.page-skytrain-spark .page {
  padding-top: 20px;
}

.page-skytrain-spark h1,
.page-skytrain-spark h2,
.page-skytrain-spark h3 {
  color: var(--spark-ink);
}

.page-skytrain-spark p,
.page-skytrain-spark li {
  color: var(--spark-muted);
}

.page-skytrain-spark .sky-spark-hero {
  position: relative;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid rgba(148, 85, 112, 0.22);
  background:
    radial-gradient(130% 160% at 12% 8%, rgba(255, 230, 237, 0.86), rgba(255, 247, 241, 0.72) 42%, rgba(223, 244, 255, 0.7) 100%),
    linear-gradient(145deg, rgba(255, 249, 247, 0.9), rgba(255, 242, 249, 0.9));
  box-shadow: var(--spark-shadow);
}

.page-skytrain-spark .sky-spark-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  padding: clamp(20px, 4.6vw, 44px);
  align-items: center;
}

.page-skytrain-spark .sky-spark-hero .serif-title {
  margin: 0;
  font-size: clamp(44px, 8vw, 88px);
  line-height: 0.92;
}

.page-skytrain-spark .sky-spark-hero .subhead {
  margin: 8px 0 0;
  color: #9c4f6a;
  font-size: clamp(30px, 4vw, 44px);
}

.page-skytrain-spark .sky-spark-hero__lead {
  margin-top: 12px;
  max-width: 700px;
  font-size: 1.03rem;
  line-height: 1.7;
}

.page-skytrain-spark .sky-spark-hero__actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-skytrain-spark .sky-spark-hero__actions .pill {
  border-color: rgba(146, 81, 110, 0.3);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 224, 237, 0.9));
}

.page-skytrain-spark .sky-spark-hero .eats-hero-links {
  margin-top: 12px;
}

.page-skytrain-spark .sky-spark-collage {
  position: relative;
  min-height: clamp(320px, 42vw, 460px);
}

.page-skytrain-spark .sky-spark-collage__photo {
  position: absolute;
  margin: 0;
  border: 1px solid rgba(141, 85, 109, 0.26);
  background: rgba(255, 255, 255, 0.82);
  padding: 8px 8px 26px;
  box-shadow: 0 16px 26px rgba(102, 61, 78, 0.2);
  animation: sparkFloat 5s ease-in-out infinite;
}

.page-skytrain-spark .sky-spark-collage__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-skytrain-spark .sky-spark-collage__photo figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  text-align: center;
  font-family: var(--script);
  font-size: 1.28rem;
  color: #9f4866;
}

.page-skytrain-spark .sky-spark-collage__photo--main {
  inset: 8% 12% 8% 16%;
  z-index: 2;
}

.page-skytrain-spark .sky-spark-collage__photo--left {
  width: 42%;
  height: 42%;
  top: 2%;
  left: 0;
  transform: rotate(-7deg);
  animation-delay: 0.4s;
}

.page-skytrain-spark .sky-spark-collage__photo--right {
  width: 40%;
  height: 40%;
  right: 0;
  bottom: 0;
  transform: rotate(7deg);
  animation-delay: 0.8s;
}

.page-skytrain-spark .sky-spark-hero__stickers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.page-skytrain-spark .sky-spark-sticker {
  position: absolute;
  border: 1px solid rgba(152, 84, 112, 0.34);
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.92);
  color: #99516b;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 8px 14px rgba(102, 61, 78, 0.14);
  animation: sparkDrift 5.8s ease-in-out infinite;
}

.page-skytrain-spark .sky-spark-sticker--1 {
  top: 14px;
  right: 18px;
}

.page-skytrain-spark .sky-spark-sticker--2 {
  bottom: 22px;
  left: 20px;
  animation-delay: 1.2s;
}

.page-skytrain-spark .sky-spark-sticker--3 {
  top: 48%;
  right: 30%;
  animation-delay: 0.7s;
}

.page-skytrain-spark .sky-spark-shell {
  border-color: rgba(149, 84, 112, 0.24);
  background: linear-gradient(162deg, rgba(255, 255, 255, 0.95), rgba(255, 237, 246, 0.82));
}

.page-skytrain-spark .sky-spark-shell__intro {
  max-width: 880px;
}

.page-skytrain-spark .sky-spark-route-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.page-skytrain-spark .sky-spark-route-card {
  border: 1px solid rgba(149, 84, 112, 0.2);
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  box-shadow: 0 10px 18px rgba(102, 61, 78, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.page-skytrain-spark .sky-spark-route-card:hover,
.page-skytrain-spark .sky-spark-route-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 16px 24px rgba(102, 61, 78, 0.16);
}

.page-skytrain-spark .sky-spark-route-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.page-skytrain-spark .sky-spark-route-card__body {
  padding: 13px;
}

.page-skytrain-spark .sky-spark-route-card__tag {
  margin: 0 0 8px;
  width: fit-content;
  padding: 4px 8px;
  border: 1px solid rgba(149, 84, 112, 0.26);
  background: rgba(255, 241, 248, 0.84);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
  color: #975067;
}

.page-skytrain-spark .sky-spark-route-card h3 {
  margin-bottom: 7px;
  font-size: clamp(27px, 2.8vw, 34px);
}

.page-skytrain-spark .sky-spark-route-card ul {
  margin-top: 0;
}

.page-skytrain-spark .sky-spark-route-card li {
  margin-bottom: 7px;
  font-size: 0.93rem;
  line-height: 1.56;
}

.page-skytrain-spark .sky-spark-lines__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 12px;
}

.page-skytrain-spark .sky-spark-lines__intro {
  background: linear-gradient(164deg, rgba(255, 255, 255, 0.95), rgba(226, 246, 255, 0.82));
  border-color: rgba(87, 113, 167, 0.24);
}

.page-skytrain-spark .sky-spark-lines__legend {
  margin-top: 14px;
  display: grid;
  gap: 8px;
  padding-left: 1.2rem;
}

.page-skytrain-spark .sky-spark-line-stack {
  display: grid;
  gap: 10px;
}

.page-skytrain-spark .sky-spark-line-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  border-color: rgba(149, 84, 112, 0.2);
  background: rgba(255, 255, 255, 0.94);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.page-skytrain-spark .sky-spark-line-card.is-glow {
  transform: translateX(3px);
  box-shadow: 0 14px 24px rgba(103, 61, 79, 0.18);
}

.page-skytrain-spark .sky-spark-line-card img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  display: block;
}

.page-skytrain-spark .sky-spark-line-card__body {
  padding: 12px 12px 12px 0;
}

.page-skytrain-spark .sky-spark-line-card__tag {
  margin: 0 0 7px;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
}

.page-skytrain-spark .sky-spark-line-card--canada .sky-spark-line-card__tag {
  color: #14866f;
}

.page-skytrain-spark .sky-spark-line-card--expo .sky-spark-line-card__tag {
  color: #2e5db8;
}

.page-skytrain-spark .sky-spark-line-card--millennium .sky-spark-line-card__tag {
  color: #b47f18;
}

.page-skytrain-spark .sky-spark-line-card__stops {
  margin: 6px 0 0;
  font-size: 0.88rem;
  color: #705466;
}

.page-skytrain-spark .sky-spark-belt {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  border-top: 1px solid rgba(149, 84, 112, 0.2);
  border-bottom: 1px solid rgba(149, 84, 112, 0.2);
  background: linear-gradient(120deg, rgba(255, 246, 250, 0.86), rgba(233, 247, 255, 0.78));
}

.page-skytrain-spark .sky-spark-belt__track {
  display: flex;
  gap: 10px;
  width: max-content;
  padding: 12px 0;
  animation: sparkBelt 34s linear infinite;
}

.page-skytrain-spark .sky-spark-belt__track:hover {
  animation-play-state: paused;
}

.page-skytrain-spark .sky-spark-belt__item {
  margin: 0;
  width: min(250px, 45vw);
  height: min(170px, 28vw);
  border: 1px solid rgba(149, 84, 112, 0.24);
  background: rgba(255, 255, 255, 0.9);
  padding: 6px;
  box-shadow: 0 10px 16px rgba(102, 61, 78, 0.12);
}

.page-skytrain-spark .sky-spark-belt__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-skytrain-spark .sky-spark-playbook__card {
  border-color: rgba(149, 84, 112, 0.24);
  background: linear-gradient(162deg, rgba(255, 255, 255, 0.95), rgba(240, 252, 245, 0.82));
}

.page-skytrain-spark .sky-spark-playbook__grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.page-skytrain-spark .sky-spark-tip {
  border: 1px solid rgba(86, 130, 103, 0.24);
  background: rgba(255, 255, 255, 0.86);
  padding: 12px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.page-skytrain-spark .sky-spark-tip:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 18px rgba(80, 111, 92, 0.14);
}

.page-skytrain-spark .sky-spark-tip__num {
  margin: 0 0 7px;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #4a8a63;
}

.page-skytrain-spark .sky-spark-tip h3 {
  margin-bottom: 5px;
  font-size: clamp(25px, 2.2vw, 31px);
}

.page-skytrain-spark .sky-spark-tip p {
  margin: 0;
  font-size: 0.91rem;
  line-height: 1.5;
}

.page-skytrain-spark .move-switcher__card,
.page-skytrain-spark .move-switcher__preview {
  border-color: rgba(149, 84, 112, 0.2);
}

.page-skytrain-spark [data-sky-reveal].is-pending {
  opacity: 0;
  transform: translateY(20px);
}

.page-skytrain-spark [data-sky-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 420ms ease, transform 420ms ease;
}

@keyframes sparkFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes sparkDrift {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-6px) rotate(1deg);
  }
}

@keyframes sparkBelt {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .page-skytrain-spark .sky-spark-hero__layout,
  .page-skytrain-spark .sky-spark-lines__layout {
    grid-template-columns: 1fr;
  }

  .page-skytrain-spark .sky-spark-route-grid {
    grid-template-columns: 1fr;
  }

  .page-skytrain-spark .sky-spark-playbook__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 740px) {
  .page-skytrain-spark .page {
    padding-top: 12px;
  }

  .page-skytrain-spark .sky-spark-hero__layout {
    padding: 16px;
  }

  .page-skytrain-spark .sky-spark-collage {
    min-height: 300px;
  }

  .page-skytrain-spark .sky-spark-collage__photo--main {
    inset: 8% 8% 8% 8%;
  }

  .page-skytrain-spark .sky-spark-collage__photo--left,
  .page-skytrain-spark .sky-spark-collage__photo--right {
    display: none;
  }

  .page-skytrain-spark .sky-spark-hero__actions .pill {
    width: 100%;
  }

  .page-skytrain-spark .sky-spark-line-card {
    grid-template-columns: 1fr;
  }

  .page-skytrain-spark .sky-spark-line-card__body {
    padding: 10px 12px 12px;
  }

  .page-skytrain-spark .sky-spark-playbook__grid {
    grid-template-columns: 1fr;
  }

  .page-skytrain-spark .sky-spark-belt__item {
    width: 200px;
    height: 130px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-skytrain-spark .sky-spark-collage__photo,
  .page-skytrain-spark .sky-spark-sticker,
  .page-skytrain-spark .sky-spark-belt__track {
    animation: none;
  }

  .page-skytrain-spark .sky-spark-route-card,
  .page-skytrain-spark .sky-spark-line-card,
  .page-skytrain-spark .sky-spark-tip,
  .page-skytrain-spark [data-sky-reveal].is-visible {
    transition: none;
  }
}

/* Hanging Tag Boutique */
.page-hanging-boutique {
  overflow-x: hidden;
}

.page-hanging-boutique .elevator-hub {
  margin: 12px 0 14px;
  position: sticky;
  top: 12px;
  z-index: 22;
  display: grid;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(147, 67, 90, 0.24);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.92), rgba(255, 242, 237, 0.9));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.page-hanging-boutique .elevator-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.page-hanging-boutique .elevator-stop {
  appearance: none;
  border: 1px solid rgba(147, 67, 90, 0.24);
  background: rgba(255, 255, 255, 0.74);
  min-height: 44px;
  padding: 8px 10px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.page-hanging-boutique .elevator-stop:hover,
.page-hanging-boutique .elevator-stop:focus-visible {
  border-color: rgba(147, 67, 90, 0.38);
  background: rgba(255, 248, 244, 0.92);
  outline: none;
}

.page-hanging-boutique .elevator-stop.is-active {
  border-color: rgba(147, 67, 90, 0.44);
  background: rgba(147, 67, 90, 0.1);
  box-shadow: inset 0 0 0 1px rgba(147, 67, 90, 0.14);
}

.page-hanging-boutique .elevator-stop__num {
  min-width: 28px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--rose-700);
}

.page-hanging-boutique .elevator-stop__label {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-900);
}

.page-hanging-boutique .shopping-boutique {
  margin-top: 6px;
  padding: 20px 0 58px;
}

.shopping-embed-mode .eats-hero,
.shopping-embed-mode .things-intro,
.shopping-embed-mode .tricks-carousel-wrap,
.shopping-embed-mode .explore-footer {
  display: none;
}

.shopping-embed-mode .shopping-boutique {
  margin-top: 0;
  padding-top: 8px;
  padding-bottom: 16px;
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  background: linear-gradient(150deg, rgba(28, 19, 30, 0.96), rgba(22, 15, 24, 0.97));
}

.shopping-embed-mode .page {
  min-height: 0;
  padding: 8px 0 16px;
  background: linear-gradient(150deg, rgba(28, 19, 30, 0.96), rgba(22, 15, 24, 0.97));
}

.shopping-embed-mode .elevator-shaft {
  background: linear-gradient(150deg, rgba(28, 19, 30, 0.96), rgba(22, 15, 24, 0.97));
}

.shopping-embed-mode .floor-container {
  border: 1px solid rgba(20, 16, 18, 0.86);
  margin-top: 8px;
}

.shopping-embed-mode .elevator-hub {
  display: none;
}

.shopping-embed-mode .elevator-cab-frame {
  display: none;
}

.page-hanging-boutique .shopping-boutique__intro {
  margin-bottom: 14px;
}

.page-hanging-boutique .shopping-boutique__intro .serif-title {
  margin-bottom: 10px;
}

.page-hanging-boutique .shopping-boutique__intro .subhead {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.4;
}

.page-hanging-boutique .elevator-shaft {
  position: relative;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}

.page-hanging-boutique .elevator-shaft .elevator-hub {
  margin-top: 0;
  order: 0;
}

.page-hanging-boutique .elevator-shaft #floor-streets {
  order: 1;
}

.page-hanging-boutique .elevator-shaft #floor-markets {
  order: 2;
}

.page-hanging-boutique .elevator-shaft #floor-malls {
  order: 3;
}

.page-hanging-boutique .elevator-cab-frame {
  --elevator-cab-height: clamp(460px, 72vh, 760px);
  position: sticky;
  top: calc(var(--elevator-sticky-top, 12px) + var(--elevator-hub-height, 72px));
  z-index: 18;
  height: var(--elevator-cab-height);
  margin: 0 8px calc(var(--elevator-cab-height) * -1 + 8px);
  border: 0;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}

.page-hanging-boutique .elevator-cab-frame::before,
.page-hanging-boutique .elevator-cab-frame::after {
  display: none;
}

.page-hanging-boutique .floor-container {
  position: relative;
  margin-top: 14px;
  border: 0;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.88), rgba(255, 245, 241, 0.84));
  box-shadow: 0 10px 24px rgba(34, 26, 31, 0.08);
  padding: clamp(12px, 1.5vw, 18px);
  overflow: hidden;
}

.page-hanging-boutique .floor-container > :not(.floor-door-layer) {
  position: relative;
  z-index: 1;
}

.page-hanging-boutique .floor-door-layer {
  position: absolute;
  inset: 0;
  display: flex;
  pointer-events: none;
  z-index: 4;
}

.page-hanging-boutique .floor-door-layer::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(147, 67, 90, 0.4);
  transition: opacity 220ms ease;
}

.page-hanging-boutique .floor-door {
  width: 50%;
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.96), rgba(255, 236, 227, 0.98)),
    repeating-linear-gradient(90deg, rgba(147, 67, 90, 0.1), rgba(147, 67, 90, 0.1) 1px, transparent 1px, transparent 12px);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.page-hanging-boutique .floor-container.is-door-open .floor-door {
  transition-duration: 540ms;
}

.page-hanging-boutique .floor-door--left {
  border-right: 1px solid rgba(147, 67, 90, 0.26);
}

.page-hanging-boutique .floor-door--right {
  border-left: 1px solid rgba(147, 67, 90, 0.26);
}

.page-hanging-boutique .floor-door-layer__indicator {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid rgba(147, 67, 90, 0.28);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.76);
  color: var(--rose-700);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  z-index: 3;
  transition: opacity 220ms ease;
}

.page-hanging-boutique .floor-door-layer__number {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
  z-index: 2;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--sans);
  font-size: clamp(10.5rem, 31vw, 22rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.04em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.34),
    0 14px 28px rgba(48, 29, 37, 0.16);
  transition:
    opacity 220ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.page-hanging-boutique .floor-container.is-door-open .floor-door--left {
  transform: translateX(-102%);
}

.page-hanging-boutique .floor-container.is-door-open .floor-door--right {
  transform: translateX(102%);
}

.page-hanging-boutique .floor-container.is-door-open .floor-door-layer__indicator {
  opacity: 0;
}

.page-hanging-boutique .floor-container.is-door-open .floor-door-layer__number {
  opacity: 0;
  transform: translate(-50%, -46%) scale(0.96);
}

.page-hanging-boutique .floor-container.is-door-open .floor-door-layer::before {
  opacity: 0;
}

.page-hanging-boutique .floor-header {
  max-width: 760px;
}

.page-hanging-boutique .floor-header__index {
  margin: 0;
  color: var(--rose-700);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-hanging-boutique .floor-header h3 {
  margin: 4px 0 8px;
  font-family: var(--serif);
  font-size: clamp(32px, 2.1vw, 42px);
  line-height: 0.9;
}

.page-hanging-boutique .floor-header p:last-child {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink-700);
  font-size: 0.92rem;
  line-height: 1.45;
}

.page-hanging-boutique .floor-content {
  margin-top: 12px;
}

.page-hanging-boutique .floor-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-height: 1200px;
  transition: max-height 420ms ease, opacity 320ms ease, transform 420ms ease, margin 320ms ease;
}

.page-hanging-boutique .floor-container.is-active .floor-directory {
  max-height: 0;
  opacity: 0;
  margin: 0;
  transform: translateY(-12px);
  pointer-events: none;
  overflow: hidden;
}

.page-hanging-boutique .directory-card {
  position: relative;
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
  border: 1px solid rgba(147, 67, 90, 0.18);
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
  transition: border-color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.page-hanging-boutique .directory-card:hover,
.page-hanging-boutique .directory-card.is-selected {
  border-color: rgba(147, 67, 90, 0.38);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(34, 26, 31, 0.1);
}

.page-hanging-boutique .directory-card__photo {
  margin: 0;
  border: 1px solid rgba(147, 67, 90, 0.2);
  overflow: hidden;
  background: rgba(147, 67, 90, 0.08);
  min-height: 116px;
}

.page-hanging-boutique .directory-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-hanging-boutique .directory-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-hanging-boutique .directory-card__meta {
  margin: 0;
  color: var(--rose-700);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-hanging-boutique .directory-card h4 {
  margin: 6px 0 10px;
  font-family: var(--serif);
  font-size: clamp(23px, 1.65vw, 30px);
  line-height: 0.94;
}

.page-hanging-boutique .directory-card__desc {
  margin: 0 0 10px;
  color: var(--ink-700);
  font-family: var(--sans);
  font-size: 0.82rem;
  line-height: 1.35;
}

.page-hanging-boutique .directory-card__btn {
  appearance: none;
  border: 1px solid rgba(147, 67, 90, 0.28);
  background: var(--paper);
  color: var(--ink-900);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 7px 10px;
  cursor: pointer;
  margin-top: auto;
}

.page-hanging-boutique .directory-card__btn:hover,
.page-hanging-boutique .directory-card__btn:focus-visible {
  background: rgba(147, 67, 90, 0.1);
  outline: none;
}

.page-hanging-boutique .floor-rail-shell {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(22px);
  border: 1px solid rgba(147, 67, 90, 0.24);
  background: rgba(255, 255, 255, 0.92);
  transition: max-height 520ms ease, opacity 320ms ease, transform 420ms ease, margin 320ms ease;
}

.page-hanging-boutique .floor-container.is-active .floor-rail-shell {
  margin-top: 6px;
  max-height: 1100px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.page-hanging-boutique .floor-rail-head {
  padding: 12px 12px 8px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.page-hanging-boutique .floor-rail-kicker {
  margin: 0;
  color: var(--rose-700);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.page-hanging-boutique .floor-rail-title {
  margin: 5px 0 4px;
  font-family: var(--serif);
  font-size: clamp(27px, 1.9vw, 36px);
  line-height: 0.9;
}

.page-hanging-boutique .floor-rail-subtitle {
  margin: 0;
  color: var(--ink-700);
  font-family: var(--sans);
  font-size: 0.9rem;
}

.page-hanging-boutique .floor-back {
  appearance: none;
  border: 1px solid rgba(147, 67, 90, 0.28);
  background: var(--paper);
  color: var(--ink-900);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 11px;
  cursor: pointer;
}

.page-hanging-boutique .floor-back:hover,
.page-hanging-boutique .floor-back:focus-visible {
  background: rgba(147, 67, 90, 0.1);
  outline: none;
}

.page-hanging-boutique .boutique-rail {
  position: relative;
  padding: 0 14px 14px;
}

.page-hanging-boutique .boutique-rail__line {
  position: relative;
  height: 1px;
  width: 100%;
  background: var(--line);
}

.page-hanging-boutique .boutique-rail__controls {
  display: none;
  align-items: center;
  gap: 8px;
  margin: 10px 0 12px;
}

.page-hanging-boutique .floor-container.is-active.is-scrollable .boutique-rail__controls {
  display: flex;
}

.page-hanging-boutique .boutique-rail__viewport {
  position: relative;
}

.page-hanging-boutique .boutique-rail__hint {
  margin: 0 auto 0 0;
  color: var(--ink-700);
  font-family: var(--sans);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hanging-boutique .boutique-rail__btn {
  appearance: none;
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 2px));
  z-index: 16;
  border: 1px solid rgba(147, 67, 90, 0.24);
  border-radius: 999px;
  background: rgba(253, 247, 239, 0.96);
  color: var(--ink-900);
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  padding: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, background 180ms ease, border-color 180ms ease;
}

.page-hanging-boutique .floor-container.is-active.is-scrollable .boutique-rail__btn {
  opacity: 1;
  pointer-events: auto;
}

.page-hanging-boutique .boutique-rail__btn--prev {
  left: 4px;
}

.page-hanging-boutique .boutique-rail__btn--next {
  right: 4px;
}

.page-hanging-boutique .boutique-rail__btn span {
  transform: translateY(-1px);
}

.page-hanging-boutique .boutique-rail__btn:hover,
.page-hanging-boutique .boutique-rail__btn:focus-visible {
  background: rgba(147, 67, 90, 0.12);
  border-color: rgba(147, 67, 90, 0.34);
  outline: none;
}

.page-hanging-boutique .floor-container.is-active.is-scrollable .boutique-rail__btn:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

@media (min-width: 981px) {
  .page-hanging-boutique .floor-container.is-active .boutique-rail__btn {
    opacity: 1;
    pointer-events: auto;
  }

  .page-hanging-boutique .floor-container.is-active .boutique-rail__btn:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
  }
}

.page-hanging-boutique .boutique-rail__tags {
  display: flex;
  align-items: stretch;
  gap: 14px;
  overflow-x: auto;
  padding: 0 48px 12px;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.page-hanging-boutique .boutique-rail__tags.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.page-hanging-boutique .boutique-rail__tags.is-dragging .shop-tag {
  pointer-events: none;
}

.page-hanging-boutique .boutique-rail__tags::-webkit-scrollbar {
  height: 8px;
}

.page-hanging-boutique .boutique-rail__tags::-webkit-scrollbar-track {
  background: rgba(147, 67, 90, 0.1);
}

.page-hanging-boutique .boutique-rail__tags::-webkit-scrollbar-thumb {
  background: rgba(147, 67, 90, 0.34);
}

.page-hanging-boutique .shop-tag {
  --string-length: 60px;
  --hang-offset: 0px;
  width: 186px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  position: relative;
  margin-top: calc(var(--string-length) + 12px);
  padding: 14px 14px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 12px 26px rgba(34, 26, 31, 0.08);
  transform: translate3d(0, var(--hang-offset), 0);
  transition: transform 340ms cubic-bezier(0.2, 0.7, 0.26, 1), margin-top 220ms cubic-bezier(0.2, 0.75, 0.26, 1), box-shadow 200ms ease, border-color 200ms ease, opacity 200ms ease;
  will-change: transform, opacity;
}

.page-hanging-boutique .shop-tag__body {
  transform-origin: top center;
  animation: none;
  will-change: auto;
}

.page-hanging-boutique .shop-tag:nth-child(2n) .shop-tag__body {
  animation-delay: -1.4s;
}

.page-hanging-boutique .shop-tag:nth-child(3n) .shop-tag__body {
  animation-delay: -2.6s;
  animation-duration: 10.8s;
}

.page-hanging-boutique .shop-tag::before {
  content: '';
  position: absolute;
  left: 50%;
  top: calc((var(--string-length) + 12px) * -1);
  width: 16px;
  height: calc(var(--string-length) + 12px);
  transform: translateX(-50%);
  background:
    linear-gradient(
      90deg,
      transparent calc(50% - 0.5px),
      var(--gold-500) calc(50% - 0.5px),
      var(--gold-500) calc(50% + 0.5px),
      transparent calc(50% + 0.5px)
    );
  transition: height 420ms cubic-bezier(0.2, 0.75, 0.26, 1), top 420ms cubic-bezier(0.2, 0.75, 0.26, 1);
}

.page-hanging-boutique .shop-tag::after {
  content: '';
  position: absolute;
  left: 50%;
  top: calc((var(--string-length) + 12px) * -1 - 5px);
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid var(--gold-500);
  background: var(--paper);
  transform: translateX(-50%);
}

.page-hanging-boutique .shop-tag__label {
  margin: 0;
  display: inline-flex;
  width: max-content;
  border: 1px solid rgba(147, 67, 90, 0.34);
  border-radius: 999px;
  padding: 3px 9px;
  color: var(--rose-700);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hanging-boutique .shop-tag__title {
  margin: 9px 0 0;
  font-family: var(--serif);
  font-size: clamp(25px, 1.7vw, 32px);
  line-height: 0.9;
}

.page-hanging-boutique .shop-tag__reveal {
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition: max-height 380ms cubic-bezier(0.2, 0.7, 0.2, 1), margin-top 300ms ease, opacity 220ms ease, transform 300ms ease;
}

.page-hanging-boutique .shop-tag__media {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
}

.page-hanging-boutique .shop-tag__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(34, 26, 31, 0.06), rgba(34, 26, 31, 0.38));
  transition: opacity 460ms ease;
}

.page-hanging-boutique .shop-tag__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 380ms cubic-bezier(0.19, 1, 0.22, 1);
}

.page-hanging-boutique .shop-tag__detail {
  margin: 10px 0 0;
  font-family: var(--sans);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.page-hanging-boutique .shop-tag__must-buy {
  margin: 8px 0 0;
  color: var(--rose-700);
  font-family: var(--sans);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-hanging-boutique .shop-tag__description {
  margin: 8px 0 0;
  font-family: var(--sans);
  font-size: 0.93rem;
  line-height: 1.45;
}

.page-hanging-boutique .shop-tag:focus-within,
.page-hanging-boutique .shop-tag:focus-visible,
.page-hanging-boutique .shop-tag.is-open {
  --string-length: 88px;
  border-color: rgba(147, 67, 90, 0.36);
  box-shadow: 0 18px 36px rgba(34, 26, 31, 0.12);
  outline: none;
  z-index: 4;
}

.page-hanging-boutique .shop-tag:focus-within .shop-tag__reveal,
.page-hanging-boutique .shop-tag:focus-visible .shop-tag__reveal,
.page-hanging-boutique .shop-tag.is-open .shop-tag__reveal {
  max-height: 420px;
  margin-top: 12px;
  opacity: 1;
  transform: translateY(0);
}

.page-hanging-boutique .shop-tag:focus-within .shop-tag__body,
.page-hanging-boutique .shop-tag:focus-visible .shop-tag__body,
.page-hanging-boutique .shop-tag.is-open .shop-tag__body {
  animation: none;
  transform: rotate(0deg);
}

.page-hanging-boutique .shop-tag:focus-within .shop-tag__media img,
.page-hanging-boutique .shop-tag:focus-visible .shop-tag__media img,
.page-hanging-boutique .shop-tag.is-open .shop-tag__media img {
  transform: scale(1.08);
}

.page-hanging-boutique .shop-tag:focus-within .shop-tag__media::after,
.page-hanging-boutique .shop-tag:focus-visible .shop-tag__media::after,
.page-hanging-boutique .shop-tag.is-open .shop-tag__media::after {
  opacity: 0.62;
}

@media (hover: hover) and (pointer: fine) {
  .page-hanging-boutique .shop-tag:hover {
    --string-length: 88px;
    border-color: rgba(147, 67, 90, 0.36);
    box-shadow: 0 18px 36px rgba(34, 26, 31, 0.12);
    outline: none;
    z-index: 4;
  }

  .page-hanging-boutique .shop-tag:hover .shop-tag__reveal {
    max-height: 420px;
    margin-top: 12px;
    opacity: 1;
    transform: translateY(0);
  }

  .page-hanging-boutique .shop-tag:hover .shop-tag__body {
    animation: none;
    transform: rotate(0deg);
  }

  .page-hanging-boutique .shop-tag:hover .shop-tag__media img {
    transform: scale(1.08);
  }

  .page-hanging-boutique .shop-tag:hover .shop-tag__media::after {
    opacity: 0.62;
  }

  .page-hanging-boutique .boutique-rail__tags:hover .shop-tag {
    opacity: 0.84;
  }

  .page-hanging-boutique .boutique-rail__tags:hover .shop-tag:hover,
  .page-hanging-boutique .boutique-rail__tags:hover .shop-tag:focus-within,
  .page-hanging-boutique .boutique-rail__tags:hover .shop-tag:focus-visible,
  .page-hanging-boutique .boutique-rail__tags:hover .shop-tag.is-open {
    opacity: 1;
  }
}

.page-hanging-boutique .shop-tag.is-pending {
  --hang-offset: -70px;
  opacity: 0;
}

.page-hanging-boutique .shop-tag.is-hung {
  --hang-offset: 0px;
  opacity: 1;
}

.page-hanging-boutique .floor-malls .directory-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(122deg, rgba(255, 255, 255, 0.58), transparent 40%, rgba(255, 255, 255, 0.18) 64%, transparent 80%);
  pointer-events: none;
}

.page-hanging-boutique .floor-streets .boutique-rail__line {
  height: 3px;
  background: linear-gradient(90deg, #1d1d1d, #434343 45%, #1d1d1d);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}

@keyframes sway {
  0% {
    transform: rotate(0.38deg);
  }

  100% {
    transform: rotate(-0.38deg);
  }
}

@media (hover: none), (pointer: coarse), (max-width: 1080px) {
  .page-hanging-boutique .shop-tag__body {
    animation: none;
  }

  .page-hanging-boutique .shop-tag {
    transition: margin-top 220ms ease, box-shadow 200ms ease, border-color 200ms ease, opacity 200ms ease;
  }

  .page-hanging-boutique .shop-tag:focus-within,
  .page-hanging-boutique .shop-tag:focus-visible,
  .page-hanging-boutique .shop-tag.is-open {
    --string-length: 80px;
    box-shadow: 0 14px 30px rgba(34, 26, 31, 0.11);
  }
}

@media (max-width: 1080px) {
  .page-hanging-boutique .elevator-cab-frame {
    margin-left: 6px;
    margin-right: 6px;
  }

  .page-hanging-boutique .elevator-hub {
    top: 10px;
    gap: 8px;
  }

  .page-hanging-boutique .elevator-directory {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .page-hanging-boutique .elevator-stop {
    min-height: 52px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 8px 4px;
    gap: 4px;
  }

  .page-hanging-boutique .elevator-stop__num {
    min-width: 0;
  }

  .page-hanging-boutique .floor-directory {
    grid-template-columns: 1fr 1fr;
  }

  .page-hanging-boutique .shop-tag {
    width: 172px;
  }

  .page-hanging-boutique .floor-door-layer__number {
    font-size: clamp(13rem, 52vw, 22rem);
  }
}

@media (max-width: 760px) {
  .page-hanging-boutique .elevator-cab-frame {
    display: none;
  }

  .page-hanging-boutique .shopping-boutique {
    padding-top: 12px;
    padding-bottom: 46px;
  }

  .page-hanging-boutique .elevator-hub {
    position: static;
  }

  .page-hanging-boutique .elevator-directory {
    grid-template-columns: 1fr;
  }

  .page-hanging-boutique .elevator-stop {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    min-height: 44px;
    padding: 8px 10px;
  }

  .page-hanging-boutique .floor-header h3 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .page-hanging-boutique .floor-directory {
    grid-template-columns: 1fr;
  }

  .page-hanging-boutique .directory-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 8px;
    padding: 8px;
  }

  .page-hanging-boutique .directory-card__photo {
    min-height: 108px;
  }

  .page-hanging-boutique .directory-card h4 {
    margin: 4px 0 8px;
    font-size: clamp(20px, 5.2vw, 28px);
  }

  .page-hanging-boutique .floor-door-layer__number {
    font-size: clamp(14rem, 78vw, 24rem);
    line-height: 0.78;
    letter-spacing: -0.06em;
  }

  .page-hanging-boutique .directory-card__btn {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    padding: 6px 8px;
  }

  .page-hanging-boutique .floor-rail-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hanging-boutique .floor-back {
    width: 100%;
  }

  .page-hanging-boutique .shop-tag {
    width: 184px;
  }

  .page-hanging-boutique .boutique-rail__btn {
    width: 36px;
    height: 36px;
  }

  .page-hanging-boutique .boutique-rail__btn--prev {
    left: 2px;
  }

  .page-hanging-boutique .boutique-rail__btn--next {
    right: 2px;
  }

  .page-hanging-boutique .boutique-rail__tags {
    padding-left: 42px;
    padding-right: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hanging-boutique .floor-door,
  .page-hanging-boutique .floor-door-layer__number,
  .page-hanging-boutique .floor-directory,
  .page-hanging-boutique .floor-rail-shell,
  .page-hanging-boutique .shop-tag,
  .page-hanging-boutique .shop-tag__body,
  .page-hanging-boutique .shop-tag::before,
  .page-hanging-boutique .shop-tag__reveal,
  .page-hanging-boutique .shop-tag__media img,
  .page-hanging-boutique .shop-tag__media::after {
    animation: none;
    transition: none;
  }
}


/* Guide Nav Icon State */
body.page-getting-around-super :is(.eats-hero-link__icon, .explore-footer__icon, .hero-video__scroll-icon),
body.page-must-eats :is(.eats-hero-link__icon, .explore-footer__icon, .hero-video__scroll-icon),
body.page-safety-tips :is(.eats-hero-link__icon, .explore-footer__icon, .hero-video__scroll-icon),
body.page-explore :is(.eats-hero-link__icon, .explore-footer__icon, .hero-video__scroll-icon),
body.page-things-to-do :is(.eats-hero-link__icon, .explore-footer__icon, .hero-video__scroll-icon),
body.page-within-reach-carousel :is(.eats-hero-link__icon, .explore-footer__icon, .hero-video__scroll-icon),
body.page-hikes-basic :is(.eats-hero-link__icon, .explore-footer__icon, .hero-video__scroll-icon),
body.page-hanging-boutique :is(.eats-hero-link__icon, .explore-footer__icon, .hero-video__scroll-icon) {
  filter: grayscale(1) brightness(0.82);
  opacity: 0.72;
}

body.page-getting-around-super :is(.eats-hero-link__icon, .explore-footer__icon, .hero-video__scroll-icon)[src*="move.webp" i],
body.page-must-eats :is(.eats-hero-link__icon, .explore-footer__icon, .hero-video__scroll-icon)[src*="eat.webp" i],
body.page-safety-tips :is(.eats-hero-link__icon, .explore-footer__icon, .hero-video__scroll-icon)[src*="tips.png" i],
body.page-explore :is(.eats-hero-link__icon, .explore-footer__icon, .hero-video__scroll-icon)[src*="see.webp" i],
body.page-things-to-do :is(.eats-hero-link__icon, .explore-footer__icon, .hero-video__scroll-icon)[src*="see.webp" i],
body.page-within-reach-carousel :is(.eats-hero-link__icon, .explore-footer__icon, .hero-video__scroll-icon)[src*="see.webp" i],
body.page-hikes-basic :is(.eats-hero-link__icon, .explore-footer__icon, .hero-video__scroll-icon)[src*="see.webp" i],
body.page-hanging-boutique :is(.eats-hero-link__icon, .explore-footer__icon, .hero-video__scroll-icon)[src*="see.webp" i] {
  filter: none;
  opacity: 1;
}


/* shared base */

.page-things-to-do {
  background:
    radial-gradient(1200px 680px at 8% -6%, rgba(116, 173, 189, 0.18), transparent 66%),
    radial-gradient(980px 620px at 94% 9%, rgba(201, 99, 124, 0.2), transparent 63%),
    linear-gradient(160deg, #fffaf7 0%, #fffefa 46%, #fff8f4 100%);
}

.page-things-to-do .section {
  margin-top: 18px;
}

.page-things-to-do section[id] {
  scroll-margin-top: 88px;
}

.section--local-intel {
  position: relative;
  isolation: isolate;
}

.section--local-intel::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(246, 254, 255, 0.76), rgba(255, 242, 236, 0.74));
}

.local-intel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.local-intel-gate[hidden],
.local-intel-status[hidden],
.local-attraction[hidden],
.local-attraction__nearby[hidden],
.local-weather[hidden] {
  display: none !important;
}

.local-intel-card {
  border-color: rgba(97, 88, 111, 0.23);
  background:
    radial-gradient(480px 220px at 92% -14%, rgba(201, 99, 124, 0.18), transparent 72%),
    linear-gradient(144deg, rgba(255, 255, 255, 0.97), rgba(246, 252, 255, 0.92));
  display: flex;
  flex-direction: column;
  height: 100%;
}

.local-intel-gate {
  margin-top: 0.9rem;
  border: 1px dashed rgba(147, 67, 90, 0.32);
  background: rgba(255, 255, 255, 0.88);
  padding: 0.75rem;
  display: grid;
  gap: 0.6rem;
}

.local-intel-gate p {
  margin: 0;
  font-size: 0.93rem;
}

.local-intel-button {
  border: 0;
  cursor: pointer;
  width: fit-content;
  font-family: inherit;
}

.local-intel-status {
  margin: 0.82rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5d4650;
  font-weight: 700;
}

.local-intel-status.is-error {
  color: #8e2c47;
}

.local-attraction {
  margin-top: 0.88rem;
  display: grid;
  grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
  gap: 0.82rem;
  align-items: start;
}

.local-attraction__media {
  margin: 0;
  width: 100%;
  max-width: 200px;
  overflow: hidden;
  border: 1px solid rgba(147, 67, 90, 0.2);
  background: rgba(255, 248, 244, 0.92);
}

.local-attraction__media img {
  display: block;
  width: 100%;
  max-height: 188px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
}

.local-attraction__body h3 {
  margin: 0.3rem 0 0.36rem;
  font-size: clamp(1.34rem, 2.3vw, 1.82rem);
}

.local-attraction__distance {
  margin: 0;
  display: inline-flex;
  align-items: center;
  min-height: 1.62rem;
  padding: 0.16rem 0.56rem;
  border: 1px solid rgba(147, 67, 90, 0.32);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #613f4d;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.84);
}

.local-attraction__address {
  margin: 0;
  display: inline-flex;
  gap: 0.34rem;
  align-items: center;
  color: #3f3237;
  font-weight: 700;
  font-size: 0.9rem;
}

.local-attraction__address img {
  width: 0.86rem;
  height: 0.86rem;
}

.local-attraction__description {
  margin: 0.5rem 0 0;
}

.local-attraction__facts {
  margin: 0.54rem 0 0;
  padding-left: 1rem;
}

.local-attraction__facts li {
  margin-bottom: 0.38rem;
  color: #4a3a42;
  font-size: 0.93rem;
}

.local-attraction__actions {
  margin-top: 0.64rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.44rem;
}

.local-intel-link {
  text-decoration: none;
}

.local-intel-link--ghost {
  border: 1px solid rgba(147, 67, 90, 0.32);
  background: rgba(255, 255, 255, 0.72);
}

.local-attraction__nearby {
  margin-top: 0.7rem;
  padding-top: 0.55rem;
  border-top: 1px dashed rgba(147, 67, 90, 0.28);
}

.local-attraction__nearby-label {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #6b4a58;
  font-weight: 700;
}

.local-attraction__nearby-list {
  list-style: none;
  margin: 0.36rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.26rem;
}

.local-attraction__nearby-list li {
  margin: 0;
}

.local-attraction__nearby-list a {
  color: #322229;
  text-decoration: none;
  border-bottom: 1px dotted rgba(147, 67, 90, 0.34);
  font-size: 0.89rem;
}

.local-weather {
  margin-top: 0.88rem;
  display: grid;
  gap: 0.7rem;
}

.local-weather__stats {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.78rem;
  align-items: center;
  border: 1px solid rgba(147, 67, 90, 0.24);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(240, 251, 255, 0.9));
  padding: 0.64rem 0.72rem;
}

.local-weather__temp {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.6vw, 2.35rem);
  line-height: 0.95;
  color: #35232b;
}

.local-weather__reading {
  display: inline-flex;
  align-items: center;
  gap: 0.44rem;
}

.local-weather__icon {
  margin: 0;
  order: -1;
  font-size: 2.25rem;
  line-height: 0.92;
}

.local-weather__meta p {
  margin: 0;
}

.local-weather__meta p:first-child {
  font-weight: 700;
  color: #3f2f36;
}

.local-weather__meta p:last-child {
  margin-top: 0.2rem;
  color: #5a454e;
  font-size: 0.9rem;
}

.local-weather__summary {
  margin: 0;
}

.local-weather__recs {
  display: grid;
  gap: 0.5rem;
}

.local-weather-rec {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(147, 67, 90, 0.2);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 243, 238, 0.9));
  padding: 0.62rem 0.7rem;
  transition: transform 130ms ease, border-color 130ms ease, box-shadow 130ms ease;
}

.local-weather-rec:hover,
.local-weather-rec:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(147, 67, 90, 0.46);
  box-shadow: 0 12px 16px rgba(76, 42, 56, 0.12);
}

.local-weather-rec__tag {
  display: inline-flex;
  min-height: 1.35rem;
  align-items: center;
  justify-content: center;
  padding: 0.08rem 0.48rem;
  border: 1px solid rgba(147, 67, 90, 0.28);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #674452;
}

.local-weather-rec strong {
  display: block;
  margin-top: 0.34rem;
  color: #312129;
}

.local-weather-rec p {
  margin: 0.28rem 0 0;
  font-size: 0.91rem;
  color: #4e3a42;
}

.page-things-to-do .see-atlas-card {
  border-color: rgba(97, 88, 111, 0.22);
  background:
    radial-gradient(520px 240px at 90% -20%, rgba(201, 99, 124, 0.2), transparent 68%),
    linear-gradient(146deg, rgba(255, 255, 255, 0.96), rgba(245, 253, 255, 0.9));
}

.see-atlas-jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
  margin-top: 1rem;
}

.see-atlas-jump {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #2f1f25;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.64rem 0.86rem;
  border: 1px solid rgba(147, 67, 90, 0.23);
  background: rgba(255, 255, 255, 0.78);
  transition: transform 130ms ease, border-color 130ms ease, box-shadow 130ms ease;
}

.see-atlas-jump:hover,
.see-atlas-jump:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(147, 67, 90, 0.48);
  box-shadow: 0 12px 18px rgba(66, 42, 56, 0.12);
}

.see-jump-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.42rem 0 1.02rem;
  flex-wrap: wrap;
}

.see-jump-strip__label {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #63424e;
  text-align: center;
  transform: translateY(2px);
}

.see-atlas-jumps--strip {
  gap: 0.42rem;
  justify-content: center;
}

.see-atlas-jumps--strip .see-atlas-jump {
  font-size: 0.76rem;
  padding: 0.5rem 0.68rem;
}

.section--see-planner {
  position: relative;
  isolation: isolate;
}

.section--see-planner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(255, 245, 238, 0.82), rgba(247, 253, 255, 0.82));
}

.see-planner-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 14px;
  align-items: start;
}

.see-planner-panel {
  position: sticky;
  top: 108px;
  border-color: rgba(239, 215, 165, 0.62);
  box-shadow: 0 10px 20px rgba(28, 20, 24, 0.14);
}

.see-planner-label {
  margin: 0.82rem 0 0.42rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.45rem;
  padding: 0.08rem 0.48rem;
  border: 1px solid rgba(147, 67, 90, 0.28);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
  color: #65414f;
  background: rgba(255, 255, 255, 0.78);
}

.see-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.see-filter-chip {
  border: 1px solid rgba(147, 67, 90, 0.28);
  background: rgba(255, 255, 255, 0.9);
  color: #2f1f25;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.56rem 0.72rem;
  cursor: pointer;
  transition: transform 130ms ease, border-color 130ms ease, box-shadow 130ms ease, background 130ms ease;
}

.see-filter-chip:hover,
.see-filter-chip:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(147, 67, 90, 0.46);
}

.see-filter-chip.is-active {
  background: linear-gradient(145deg, rgba(255, 238, 229, 0.98), rgba(234, 248, 255, 0.92));
  border-color: rgba(147, 67, 90, 0.52);
  box-shadow: 0 11px 16px rgba(77, 42, 56, 0.11);
}

.see-filter-status {
  margin: 0.92rem 0 0;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5e4851;
}

.see-filter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.see-filter-card {
  text-decoration: none;
  color: inherit;
  display: grid;
  grid-template-columns: clamp(96px, 22vw, 146px) minmax(0, 1fr);
  column-gap: 0.86rem;
  align-items: start;
  border: 1px solid rgba(147, 67, 90, 0.2);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(255, 245, 239, 0.86));
  padding: 0.92rem;
  min-height: 174px;
  transition: transform 150ms ease, box-shadow 150ms ease, opacity 170ms ease;
}

.see-filter-card--walk {
  width: 100%;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
}

.see-filter-card:hover,
.see-filter-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 22px rgba(77, 42, 56, 0.14);
}

.see-filter-card.is-hidden {
  display: none;
}

.see-filter-card__media {
  grid-column: 1;
  grid-row: 1 / span 3;
  width: 100%;
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.see-filter-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(147, 67, 90, 0.24);
}

.see-filter-card > :not(.see-filter-card__media) {
  grid-column: 2;
}

.see-filter-card__tag {
  display: inline-flex;
  padding: 0.34rem 0.5rem;
  border: 1px solid rgba(147, 67, 90, 0.27);
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
  color: #65414f;
  margin-bottom: 0.55rem;
}

.see-filter-card__badge {
  display: inline-flex;
  margin-left: 0.42rem;
  padding: 0.34rem 0.54rem;
  border: 1px solid rgba(147, 67, 90, 0.64);
  background: linear-gradient(145deg, #93435a, #6f3f51);
  color: #fff8f4;
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 800;
}

.see-filter-card--perfect {
  border-color: rgba(147, 67, 90, 0.38);
  box-shadow: inset 0 0 0 1px rgba(147, 67, 90, 0.1);
}

.see-filter-card h3 {
  margin-bottom: 0.42rem;
  font-size: clamp(1.38rem, 2.4vw, 1.9rem);
}

.see-filter-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Walk + hike detail popups (same pattern as hotel modal on STAY) */
.guide-detail-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  z-index: 160;
  pointer-events: none;
  opacity: 0;
  padding: max(12px, env(safe-area-inset-top)) 12px max(12px, env(safe-area-inset-bottom));
  transition: opacity 0.22s ease;
}

.guide-detail-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

body.modal-open {
  overflow: hidden;
}

.guide-detail-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 20, 28, 0.56);
  backdrop-filter: blur(2px);
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.guide-detail-modal__sheet {
  position: relative;
  width: min(92vw, 430px);
  max-height: min(86vh, 760px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 238, 0.94));
  border: 1px solid rgba(147, 67, 90, 0.22);
  box-shadow: 0 24px 44px rgba(57, 34, 44, 0.28);
  padding: 2.5rem 16px 16px;
  z-index: 1;
}

.guide-detail-modal__top {
  display: block;
  margin: 0 0 8px;
}

.guide-detail-modal__title {
  margin: 0;
  padding-right: 4.5rem;
  font-family: var(--serif);
  font-size: clamp(28px, 7vw, 34px);
  line-height: 1.05;
  color: var(--ink-900);
  text-wrap: balance;
}

.guide-detail-modal__close {
  position: absolute;
  top: 0.46rem;
  right: 0.46rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  padding: 0.22rem 0.42rem;
  border: 1px solid rgba(126, 71, 97, 0.46);
  background: rgba(255, 255, 255, 0.94);
  color: #6a4d5a;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.guide-detail-modal__close:hover,
.guide-detail-modal__close:focus-visible {
  background: #7e4761;
  border-color: #7e4761;
  color: #fff;
}

.guide-detail-modal__kicker {
  margin: 2px 0 10px;
  color: var(--rose-700);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.guide-detail-modal__image {
  width: 100%;
  height: clamp(180px, 34vw, 240px);
  aspect-ratio: 16 / 9;
  margin: 0 0 12px;
  border: 1px solid rgba(147, 67, 90, 0.18);
  background: #0c0a0d;
  object-fit: cover;
  object-position: center;
  display: block;
}

.guide-detail-modal__description {
  margin: 0 0 12px;
  color: #4f3941;
  font-size: 14px;
  line-height: 1.48;
}

.guide-detail-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.guide-detail-modal__item {
  border: 1px solid rgba(147, 67, 90, 0.16);
  background: rgba(255, 255, 255, 0.88);
  padding: 8px 10px;
}

.guide-detail-modal__item--highlight {
  background: #7e4761;
  border-color: #7e4761;
}

.guide-detail-modal__item b {
  display: block;
  margin-bottom: 4px;
  color: #6f3148;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-detail-modal__item span {
  color: #4a3940;
  font-size: 14px;
  line-height: 1.4;
}

.guide-detail-modal__item--highlight b,
.guide-detail-modal__item--highlight span {
  color: #ffe566;
}

.guide-detail-modal__map {
  margin: 0 0 12px;
  border: 1px solid rgba(147, 67, 90, 0.18);
  background: #fff;
}

.guide-detail-modal__map img {
  display: block;
  width: 100%;
  height: clamp(140px, 32vw, 200px);
  object-fit: cover;
  object-position: center;
}

.guide-detail-modal__map figcaption {
  padding: 0.28rem 0.42rem;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #74515f;
  background: rgba(255, 255, 255, 0.92);
}

.guide-detail-modal__route {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin-bottom: 10px;
  border: 1px solid rgba(126, 71, 97, 0.38);
  background: rgba(255, 255, 255, 0.94);
  color: #6a4d5a;
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.guide-detail-modal__route:hover,
.guide-detail-modal__route:focus-visible {
  background: #7e4761;
  border-color: #7e4761;
  color: #fff;
}

.guide-detail-modal__close-bottom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: 4px;
  border: 1px solid rgba(147, 67, 90, 0.28);
  background: rgba(255, 255, 255, 0.96);
  color: #2f1f25;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}

.page-things-to-do .beach-editorial {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.page-things-to-do .section--beach-editorial {
  position: relative;
  isolation: isolate;
}

.page-things-to-do .section--beach-editorial::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 246, 240, 0.78), rgba(255, 250, 246, 0.46) 46%, rgba(255, 250, 246, 0.28));
}

.page-things-to-do .beach-editorial__intro {
  position: relative;
  overflow: hidden;
  width: min(calc(var(--maxw) - 40px), 86vw);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding: clamp(20px, 4vw, 34px);
  background:
    radial-gradient(520px 280px at 8% 0%, rgba(255, 225, 209, 0.82), transparent 72%),
    linear-gradient(138deg, rgba(255, 255, 255, 0.94), rgba(254, 244, 238, 0.88));
  border: 1px solid rgba(147, 67, 90, 0.18);
  border-bottom-color: rgba(147, 67, 90, 0.12);
  border-radius: 10px 10px 0 0;
  box-shadow: 0 18px 38px rgba(85, 44, 58, 0.1);
}

.page-things-to-do .beach-editorial__intro::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  right: -56px;
  top: -66px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 99, 124, 0.2), rgba(201, 99, 124, 0));
  pointer-events: none;
}

.page-things-to-do .beach-editorial__intro::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  height: 34px;
  background: linear-gradient(180deg, rgba(255, 243, 236, 0.78), rgba(255, 248, 244, 0));
  pointer-events: none;
}

.page-things-to-do .beach-editorial__intro h2 {
  margin: 6px 0 10px;
  font-size: clamp(34px, 5.2vw, 56px);
  line-height: 0.95;
  color: #2f1f25;
}

.page-things-to-do .beach-editorial__intro p {
  max-width: 760px;
  margin: 0;
  font-size: clamp(16px, 2.05vw, 21px);
  color: #5e4850;
}

.within-reach-intro-copy {
  max-width: 760px;
  margin: 0;
  font-size: clamp(16px, 2.05vw, 21px);
  color: #5e4850;
}

.page-things-to-do .section .subhead {
  font-family: var(--sans);
  font-size: clamp(16px, 2.05vw, 21px);
  line-height: 1.45;
  color: #5e4850;
}

.page-things-to-do .section .h2 {
  font-size: clamp(34px, 5.2vw, 56px);
  line-height: 0.95;
}

.page-things-to-do .beach-jump-tabs {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.page-things-to-do .beach-jump-tab {
  appearance: none;
  border: 1px solid rgba(147, 67, 90, 0.22);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(255, 236, 228, 0.88));
  color: #4a2d38;
  padding: 10px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease, background 150ms ease;
  box-shadow: 0 8px 18px rgba(85, 44, 58, 0.12);
  white-space: nowrap;
}

.page-things-to-do .beach-jump-tab:hover,
.page-things-to-do .beach-jump-tab:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(147, 67, 90, 0.44);
  box-shadow: 0 12px 20px rgba(85, 44, 58, 0.18);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.97), rgba(255, 228, 217, 0.92));
}

.page-things-to-do .beach-jump-tab.is-active {
  border-color: rgba(147, 67, 90, 0.52);
  color: #fff8f4;
  background: linear-gradient(145deg, #93435a, #6f3f51);
  box-shadow: 0 14px 24px rgba(79, 34, 49, 0.24);
}

.page-things-to-do .beach-desks-wrap {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -18px;
  padding: 4px 0 44px;
  background:
    radial-gradient(900px 320px at 50% -24%, rgba(233, 215, 203, 0.38), transparent 72%),
    linear-gradient(180deg, rgba(255, 248, 244, 0.86), rgba(255, 253, 250, 0));
}

.page-things-to-do .section--beach-editorial > section {
  margin-top: 0;
}

.page-things-to-do .beach-desks-wrap::before,
.page-things-to-do .beach-desks-wrap::after {
  content: '';
  position: absolute;
  left: 6vw;
  right: 6vw;
  height: 1px;
  background: linear-gradient(90deg, rgba(147, 67, 90, 0), rgba(147, 67, 90, 0.22), rgba(147, 67, 90, 0));
  pointer-events: none;
}

.page-things-to-do .beach-desks-wrap::before {
  top: 0;
  opacity: 0.72;
}

.page-things-to-do .beach-desks-wrap::after {
  bottom: 0;
}

.page-things-to-do .beach-desks-splide {
  padding: 2px 0 16px;
}

.page-things-to-do .beach-desks-splide .splide__track {
  overflow: hidden;
  padding: 8px 0 28px;
}

.page-things-to-do .beach-desks-splide .splide__slide {
  opacity: 0;
  visibility: hidden;
  transform: none;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.page-things-to-do .beach-desks-splide .splide__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-things-to-do .beach-desk {
  width: min(calc(var(--maxw) - 40px), 86vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  grid-template-areas:
    'media lead'
    'media facts';
  gap: clamp(16px, 2.2vw, 24px);
  padding: clamp(18px, 3vw, 30px);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 243, 236, 0.88));
  border: 1px solid rgba(147, 67, 90, 0.2);
  box-shadow: 0 26px 60px rgba(85, 44, 58, 0.14);
}

.page-things-to-do .beach-desk__lead {
  grid-area: lead;
  align-self: start;
}

.page-things-to-do .beach-desk__title-wrap h3 {
  margin: 6px 0 4px;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 0.94;
  text-wrap: balance;
}

.page-things-to-do .beach-desk__zone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 6px 12px;
  border: 1px solid rgba(147, 67, 90, 0.24);
  background: rgba(255, 247, 242, 0.9);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #5f3f4a;
}

.page-things-to-do .beach-desk__blurb {
  margin: 0;
  max-width: none;
  font-size: clamp(15px, 1.5vw, 18px);
  color: #5f474f;
  line-height: 1.6;
}

.page-things-to-do .beach-desk__media {
  grid-area: media;
  display: grid;
  gap: 10px;
  align-content: start;
}

.page-things-to-do .perspective-stage {
  --sunset-reveal: 56%;
  --sunset-solid: 50%;
  --night-reveal: 10%;
  --night-solid: 4%;
  --handle-x: 54%;
  --active-edge: 56%;
  --focus-x: 50%;
  --focus-y: 50%;
  --blend-size: clamp(54px, 8vw, 140px);
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(147, 67, 90, 0.26);
  background: #15263f;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  cursor: ew-resize;
  touch-action: pan-y;
}

.page-things-to-do .perspective-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(19, 24, 36, 0.2), rgba(19, 24, 36, 0.02) 48%),
    radial-gradient(520px 220px at 82% 12%, rgba(255, 219, 181, 0.14), transparent 70%);
  pointer-events: none;
  z-index: 3;
}

.page-things-to-do .perspective-stage::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--active-edge) - (var(--blend-size) / 2));
  width: var(--blend-size);
  background: linear-gradient(
    90deg,
    rgba(10, 16, 28, 0) 0%,
    rgba(244, 189, 148, 0.02) 38%,
    rgba(255, 228, 203, 0.05) 50%,
    rgba(60, 52, 74, 0.02) 62%,
    rgba(10, 16, 28, 0) 100%
  );
  pointer-events: none;
  z-index: 4;
  mix-blend-mode: screen;
  filter: blur(8px);
  opacity: 0.75;
}

.page-things-to-do .perspective-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus-x) var(--focus-y);
  user-select: none;
  pointer-events: none;
}

.page-things-to-do .perspective-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus-x) var(--focus-y);
  filter: saturate(1.02) contrast(1.03);
  pointer-events: none;
}

.page-things-to-do .perspective-stage.is-dragging {
  cursor: grabbing;
}

.page-things-to-do .perspective-layer--day {
  filter: saturate(1.08) contrast(1.03);
}

.page-things-to-do .perspective-layer--sunset {
  filter: saturate(1.22) contrast(1.06) hue-rotate(-10deg) brightness(0.99);
  z-index: 1;
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) var(--sunset-solid),
    rgba(0, 0, 0, 0) var(--sunset-reveal),
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) var(--sunset-solid),
    rgba(0, 0, 0, 0) var(--sunset-reveal),
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.page-things-to-do .perspective-layer--night {
  filter: none;
  z-index: 2;
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) var(--night-solid),
    rgba(0, 0, 0, 0) var(--night-reveal),
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) var(--night-solid),
    rgba(0, 0, 0, 0) var(--night-reveal),
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.page-things-to-do .perspective-handle {
  position: absolute;
  left: var(--handle-x);
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(25, 28, 36, 0.3);
  z-index: 5;
  pointer-events: auto;
  cursor: ew-resize;
  touch-action: none;
}

.page-things-to-do .perspective-handle::before {
  content: '< >';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(42, 34, 41, 0.38);
  background: rgba(255, 252, 248, 0.92);
  color: #3c2b33;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  box-shadow: 0 10px 20px rgba(26, 29, 37, 0.24);
}

.page-things-to-do .perspective-timeband {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  z-index: 6;
  pointer-events: none;
}

.page-things-to-do .perspective-timeband span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 249, 244, 0.96);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.55);
  font-weight: 700;
}

.page-things-to-do .perspective-control {
  display: block;
  margin-top: 4px;
}

.page-things-to-do .perspective-control input[type='range'] {
  position: relative;
  z-index: 7;
  width: 100%;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  height: 7px;
  border-radius: 999px;
  border: 1px solid rgba(147, 67, 90, 0.34);
  background: linear-gradient(90deg, #31557f 0%, #d08c59 55%, #142539 100%);
  box-shadow: inset 0 1px 2px rgba(21, 26, 38, 0.28);
  cursor: ew-resize;
  touch-action: pan-y;
}

.page-things-to-do .perspective-control input[type='range']:focus-visible {
  outline: 2px solid rgba(82, 119, 90, 0.7);
  outline-offset: 2px;
}

.page-things-to-do .perspective-control input[type='range']::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid rgba(255, 250, 246, 0.95);
  background: linear-gradient(150deg, #f6b271, #c1683f);
  box-shadow: 0 6px 14px rgba(18, 23, 35, 0.32);
}

.page-things-to-do .perspective-control input[type='range']::-webkit-slider-runnable-track {
  height: 7px;
  border-radius: 999px;
  background: transparent;
  border: 0;
}

.page-things-to-do .perspective-control input[type='range']::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid rgba(255, 250, 246, 0.95);
  background: linear-gradient(150deg, #f6b271, #c1683f);
  box-shadow: 0 6px 14px rgba(18, 23, 35, 0.32);
}

.page-things-to-do .perspective-control input[type='range']::-moz-range-track {
  height: 7px;
  border-radius: 999px;
  background: transparent;
  border: 0;
}

.page-things-to-do .perspective-active {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6a4b56;
  font-weight: 700;
}

.page-things-to-do .beach-desk__facts {
  grid-area: facts;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

.page-things-to-do .fact-chip {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(147, 67, 90, 0.2);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(255, 240, 232, 0.9));
}

.page-things-to-do .fact-chip__label {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #6f4d58;
}

.page-things-to-do .fact-chip__text {
  margin: 0;
  font-size: 14px;
  color: #4f3d44;
  line-height: 1.45;
}

.page-things-to-do .beach-desks-splide .splide__arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(147, 67, 90, 0.26);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 235, 223, 0.88));
  opacity: 1;
  box-shadow: 0 10px 24px rgba(62, 33, 45, 0.18);
}

.page-things-to-do .beach-desks-splide .splide__arrow svg {
  fill: #6a4250;
}

.page-things-to-do .beach-desks-splide .splide__pagination {
  bottom: -4px;
}

.page-things-to-do .beach-desks-splide .splide__pagination__page {
  width: 10px;
  height: 10px;
  background: rgba(106, 66, 80, 0.3);
  border-radius: 999px;
  margin: 0 5px;
  opacity: 1;
}

.page-things-to-do .beach-desks-splide .splide__pagination__page.is-active {
  background: #8f4a61;
  transform: scale(1.12);
}

.page-things-to-do .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;
}

.section--see-category {
  position: relative;
}

.see-category-head {
  margin-bottom: 0.68rem;
}

.see-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 1fr);
  gap: 0.72rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.2rem 0.1rem 0.45rem;
}

.see-rail::-webkit-scrollbar {
  height: 10px;
}

.see-rail::-webkit-scrollbar-thumb {
  background: rgba(147, 67, 90, 0.34);
}

.see-spot-card {
  scroll-snap-align: start;
  border: 1px solid rgba(147, 67, 90, 0.2);
  background: linear-gradient(148deg, rgba(255, 255, 255, 0.96), rgba(255, 241, 235, 0.9));
  padding: 0.9rem;
  min-height: 206px;
}

.see-spot-card h3 {
  margin-bottom: 0.35rem;
}

.see-spot-card p {
  margin: 0;
  font-size: 0.95rem;
}

.see-spot-card__media {
  margin: 0 0 0.56rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.see-spot-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(147, 67, 90, 0.24);
}

.see-spot-card--trail {
  display: block;
  cursor: pointer;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease, background 170ms ease;
}

.see-spot-card--trail:hover {
  transform: translateY(-2px);
  border-color: rgba(147, 67, 90, 0.46);
  background: linear-gradient(148deg, rgba(255, 255, 255, 0.98), rgba(255, 236, 228, 0.95));
  box-shadow: 0 12px 26px rgba(62, 33, 45, 0.2);
}

.see-spot-card--trail:focus-visible {
  outline: 2px solid rgba(126, 71, 97, 0.7);
  outline-offset: 2px;
  border-color: rgba(147, 67, 90, 0.5);
  box-shadow: 0 0 0 4px rgba(255, 244, 238, 0.9), 0 12px 26px rgba(62, 33, 45, 0.18);
}

.see-spot-card--trail:active {
  transform: translateY(0);
  box-shadow: 0 8px 16px rgba(62, 33, 45, 0.15);
}

.see-spot-card--trail .see-spot-card__media {
  width: min(100%, 168px);
  margin: 0 auto 0.56rem;
  aspect-ratio: 1 / 1;
}

.see-spot-card--trail .see-spot-card__media img {
  width: 100%;
  height: 100%;
}

.see-spot-card__meta {
  margin: 0 0 0.42rem;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #694854;
  font-weight: 700;
}

.see-price-lanes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.78rem;
}

.see-price-lane {
  border: 1px solid rgba(147, 67, 90, 0.2);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 255, 0.88));
  padding: 0.86rem;
}

.see-price-lane__tag {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.6rem;
  padding: 0.1rem 0.52rem;
  border: 1px solid rgba(147, 67, 90, 0.28);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  color: #603f4d;
}

.see-price-lane ul {
  margin: 0.7rem 0 0;
  padding-left: 1rem;
}

.see-price-lane li {
  margin-bottom: 0.46rem;
  color: #4e3b42;
  font-size: 0.98rem;
}

.see-price-lane a {
  color: #2f1f25;
  font-weight: 700;
  text-decoration-color: rgba(147, 67, 90, 0.4);
}

.page-things-to-do .section--see-carousel {
  margin-top: 22px;
}

.hike-mini-icons {
  margin: 0 0 0.76rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.44rem;
}

.hike-mini-icons__item {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.34rem;
  min-height: 2rem;
  border: 1px solid rgba(147, 67, 90, 0.2);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(255, 242, 236, 0.9));
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  color: #62454f;
  font-family: inherit;
  cursor: pointer;
  padding: 0.2rem 0.45rem;
  line-height: 1.15;
  appearance: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hike-mini-icons__item:hover {
  border-color: rgba(147, 67, 90, 0.38);
}

.hike-mini-icons__item.is-active {
  border-color: rgba(147, 67, 90, 0.54);
  background: linear-gradient(150deg, rgba(255, 244, 238, 0.98), rgba(255, 231, 221, 0.92));
  box-shadow: 0 8px 18px rgba(92, 51, 66, 0.14);
  transform: translateY(-1px);
}

.hike-mini-icons__item img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.hike-panel-toggle-wrap {
  margin-top: 0.84rem;
}

.hike-panel-toggle {
  border: 2px solid rgba(147, 67, 90, 0.72);
  background: linear-gradient(145deg, #93435a, #6f3f51);
  color: #fff8f4;
  box-shadow:
    0 12px 26px rgba(79, 34, 49, 0.34),
    0 0 0 3px rgba(147, 67, 90, 0.24);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.72rem 1.05rem;
}

.hike-panel-toggle:hover,
.hike-panel-toggle:focus-visible {
  border-color: rgba(147, 67, 90, 0.9);
  background: linear-gradient(145deg, #a14e67, #7b4357);
  color: #fff8f4;
  box-shadow:
    0 16px 30px rgba(79, 34, 49, 0.4),
    0 0 0 4px rgba(147, 67, 90, 0.3);
  transform: translateY(-1px);
}

.hike-panel-toggle[aria-expanded='false'] {
  animation: hike-toggle-pulse 2.2s ease-in-out infinite;
}

@keyframes hike-toggle-pulse {
  0%, 100% {
    box-shadow:
      0 12px 26px rgba(79, 34, 49, 0.34),
      0 0 0 3px rgba(147, 67, 90, 0.24);
  }
  50% {
    box-shadow:
      0 14px 30px rgba(79, 34, 49, 0.42),
      0 0 0 5px rgba(147, 67, 90, 0.34);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hike-panel-toggle[aria-expanded='false'] {
    animation: none;
  }
}

.see-spot-card--trail.is-hidden {
  display: none;
}

.hike-elevation-panel {
  margin-top: 0.78rem;
}

.section--shopping-band {
  margin-left: calc(50% - 50vw + 20px);
  margin-right: calc(50% - 50vw + 20px);
  padding: 22px 0 26px;
  background:
    linear-gradient(to bottom, rgba(255, 245, 236, 0.22) 0%, rgba(255, 245, 236, 0) 16%),
    linear-gradient(to top, rgba(255, 245, 236, 0.2) 0%, rgba(255, 245, 236, 0) 18%),
    radial-gradient(640px 320px at 10% 10%, rgba(128, 87, 120, 0.26), transparent 70%),
    radial-gradient(780px 340px at 96% 92%, rgba(34, 22, 35, 0.62), transparent 72%),
    linear-gradient(150deg, #1e1320 0%, #2a1a2d 52%, #201522 100%);
  border-top: 1px solid rgba(239, 215, 165, 0.12);
  border-bottom: 1px solid rgba(239, 215, 165, 0.14);
}

.section--shopping-band > .container {
  max-width: var(--maxw);
  padding-left: 0;
  padding-right: 0;
}

.section--shopping-band .kicker,
.section--shopping-band .h2 {
  color: #efd7a5;
}

.section--shopping-band .see-category-head .subhead {
  color: #ffffff;
  opacity: 1;
}

.shopping-elevator-gate {
  position: sticky;
  top: 12px;
  z-index: 12;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 1fr);
  gap: 0.72rem;
  align-items: stretch;
  overflow: hidden;
  border-color: rgba(239, 215, 165, 0.28);
  background:
    radial-gradient(520px 260px at 14% 8%, rgba(128, 87, 120, 0.2), transparent 72%),
    radial-gradient(540px 280px at 88% 92%, rgba(34, 22, 35, 0.5), transparent 70%),
    linear-gradient(150deg, #1e1320 0%, #2a1a2d 52%, #201522 100%);
  color: #ecd8ab;
}

.shopping-elevator-gate::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(239, 215, 165, 0.05), rgba(239, 215, 165, 0.05) 1px, transparent 1px, transparent 22px);
  pointer-events: none;
}

.shopping-elevator-controls {
  min-width: 0;
}

.shopping-elevator-console {
  margin-top: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.42rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 2px;
}

.shopping-elevator-console__value {
  margin: 0;
  margin-bottom: 0.34rem;
  color: #f0ddb4;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 700;
  text-align: left;
}

.shopping-elevator-floor {
  appearance: none;
  border: 1px solid rgba(239, 215, 165, 0.25);
  background: linear-gradient(150deg, rgba(44, 28, 47, 0.92), rgba(34, 22, 36, 0.9));
  color: #ecd8ab;
  padding: 0.58rem 0.72rem;
  min-height: 66px;
  flex: 0 0 auto;
  display: grid;
  gap: 0.14rem;
  justify-items: center;
  cursor: pointer;
  transition: border-color 140ms ease, transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.shopping-elevator-floor span {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 221, 180, 0.86);
  font-weight: 800;
}

.shopping-elevator-floor strong {
  color: #ecd8ab;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

.shopping-elevator-floor:hover,
.shopping-elevator-floor:focus-visible {
  border-color: rgba(239, 215, 165, 0.52);
  background: linear-gradient(150deg, rgba(52, 33, 56, 0.96), rgba(36, 23, 39, 0.94));
  transform: translateY(-1px);
}

.shopping-elevator-floor.is-active {
  border-color: rgba(24, 18, 20, 0.75);
  background: linear-gradient(140deg, rgba(239, 215, 165, 0.98), rgba(229, 201, 142, 0.98));
  color: #141012;
  box-shadow: 0 10px 20px rgba(30, 20, 12, 0.28);
}

.shopping-elevator-floor.is-active span,
.shopping-elevator-floor.is-active strong {
  color: #141012;
}

.shopping-elevator-gate__button {
  width: 68px;
  height: 68px;
  min-width: 68px;
  min-height: 68px;
  padding: 0;
  border-radius: 999px;
  border-color: rgba(239, 215, 165, 0.62);
  background: linear-gradient(145deg, rgba(34, 26, 31, 0.97), rgba(26, 19, 24, 0.95));
  color: var(--gold-200, #efd7a5);
  box-shadow: 0 10px 20px rgba(28, 20, 24, 0.28);
  cursor: pointer;
  letter-spacing: 0.07em;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.shopping-elevator-gate__button:hover,
.shopping-elevator-gate__button:focus-visible {
  border-color: rgba(239, 215, 165, 0.82);
  background: linear-gradient(145deg, rgba(40, 30, 35, 0.98), rgba(24, 18, 22, 0.96));
  color: var(--gold-200, #efd7a5);
}

.shopping-elevator-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 0.38rem;
  min-width: 0;
  width: 100%;
  max-width: 760px;
  justify-self: end;
}

.shopping-elevator-preview__item {
  border: 1px solid rgba(239, 215, 165, 0.24);
  background: linear-gradient(145deg, rgba(31, 20, 34, 0.86), rgba(23, 15, 26, 0.9));
  padding: 0.54rem 0.62rem;
  display: grid;
  align-content: start;
  gap: 0.2rem;
  min-height: 162px;
}

.shopping-elevator-preview__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  line-height: 1.05;
  color: #f3dfb8;
  min-height: 2em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.shopping-elevator-preview__meta {
  color: rgba(240, 221, 180, 0.86);
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 700;
}

.shopping-elevator-preview__desc {
  color: #f6e8c7;
  font-size: 0.8rem;
  line-height: 1.28;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.shopping-elevator-gate.is-open {
  grid-template-columns: 1fr;
}

.shopping-elevator-gate.is-open .shopping-elevator-preview {
  display: none;
}

.shopping-elevator-embed[hidden] {
  display: none !important;
}

.shopping-elevator-embed {
  margin-top: 0.78rem;
  border: 1px solid rgba(20, 16, 18, 0.86);
  background: rgba(25, 17, 27, 0.72);
  box-shadow: 0 18px 38px rgba(16, 10, 18, 0.28);
}

.shopping-elevator-embed__frame {
  display: block;
  width: 100%;
  height: 1200px;
  min-height: 0;
  border: 0;
}

@media (max-width: 980px) {
  .section--shopping-band {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .section--shopping-band > .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section--shopping-band .see-category-head {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-things-to-do .beach-desk {
    grid-template-columns: 1fr;
    grid-template-areas:
      'lead'
      'media'
      'facts';
  }

  .page-things-to-do .beach-desk__facts {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .page-things-to-do .fact-chip {
    max-width: none;
  }

  .local-intel-grid {
    grid-template-columns: 1fr;
  }

  .local-attraction {
    grid-template-columns: 1fr;
  }

  .local-attraction__media {
    max-width: min(100%, 260px);
    margin-inline: auto;
  }

  .local-attraction__media img {
    max-height: 200px;
  }

  .see-planner-layout {
    grid-template-columns: 1fr;
  }

  .see-planner-panel {
    position: static;
  }

  .see-filter-grid {
    grid-template-columns: 1fr;
  }

  .see-price-lanes {
    grid-template-columns: 1fr;
  }

  .hike-mini-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shopping-elevator-console {
    gap: 0.36rem;
  }

  .shopping-elevator-gate {
    position: static;
    grid-template-columns: 1fr;
  }

  .shopping-elevator-preview {
    grid-template-columns: 1fr;
  }

  .shopping-elevator-console__value {
    text-align: left;
  }

  .section--shopping-band .shopping-elevator-gate,
  .section--shopping-band .shopping-elevator-embed {
    margin-left: -20px;
    margin-right: -20px;
    border-left-width: 0;
    border-right-width: 0;
  }
}

@media (max-width: 740px) {
  .page-things-to-do .beach-jump-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
  }

  .page-things-to-do .beach-jump-tab {
    width: 100%;
    min-width: 0;
    padding: 9px 8px;
    font-size: 11px;
    letter-spacing: 0.06em;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .page-things-to-do .beach-desks-wrap {
    padding-bottom: 28px;
  }

  .page-things-to-do .beach-desks-splide .splide__track {
    padding-top: 10px;
  }

  .page-things-to-do .beach-desk {
    width: min(96vw, 640px);
    padding: 16px;
  }

  .page-things-to-do .beach-desk__facts {
    grid-template-columns: 1fr;
  }

  .page-things-to-do .perspective-handle::before {
    width: 38px;
    height: 38px;
  }

  .page-things-to-do .section {
    margin-top: 14px;
  }

  .see-atlas-jumps {
    gap: 0.46rem;
  }

  .see-atlas-jump {
    font-size: 0.72rem;
    padding: 0.5rem 0.6rem;
  }

  .local-intel-gate {
    padding: 0.62rem;
  }

  .local-weather__stats {
    grid-template-columns: 1fr;
    gap: 0.34rem;
  }

  .local-weather__temp {
    font-size: 1.95rem;
  }

  .see-filter-chip {
    font-size: 0.7rem;
    padding: 0.48rem 0.58rem;
  }

  .see-spot-card {
    min-height: 0;
  }

  .see-price-lane li {
    font-size: 0.92rem;
  }
}
.page-attractions-editorial .card {
  border-color: rgba(59, 72, 94, 0.2);
  background:
    linear-gradient(156deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 254, 0.9)),
    radial-gradient(950px 360px at 8% 10%, rgba(255, 220, 200, 0.24), transparent 68%);
}

.attractions-editorial {
  padding: clamp(0.95rem, 1.8vw, 1.4rem);
}

.attractions-editorial__intro {
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(58, 72, 95, 0.16);
  padding-bottom: 0.85rem;
}

.attractions-editorial__intro .serif-title {
  margin: 0.22rem 0 0.38rem;
  color: #2b3448;
  font-size: clamp(2rem, 4.2vw, 3rem);
}

.attractions-editorial__intro .subhead {
  margin: 0;
  color: #4b5770;
}

.attractions-range-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.attractions-range-tab {
  border: 1px solid rgba(75, 89, 114, 0.26);
  background: rgba(250, 252, 255, 0.74);
  color: #38445e;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.46rem 0.62rem;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.attractions-range-tab:hover,
.attractions-range-tab:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(58, 72, 95, 0.48);
  background: rgba(255, 255, 255, 0.94);
}

.attractions-range-tab.is-active {
  border-color: rgba(239, 215, 165, 0.62);
  background: linear-gradient(145deg, rgba(34, 26, 31, 0.97), rgba(26, 19, 24, 0.95));
  color: var(--gold-200, #efd7a5);
  box-shadow: 0 10px 20px rgba(28, 20, 24, 0.28);
}

.attractions-range-tab.is-active:hover,
.attractions-range-tab.is-active:focus-visible {
  border-color: rgba(239, 215, 165, 0.82);
  background: linear-gradient(145deg, rgba(40, 30, 35, 0.98), rgba(24, 18, 22, 0.96));
  color: var(--gold-200, #efd7a5);
}

.attractions-desks {
  position: relative;
  margin-top: 0.16rem;
}

.attractions-desks__viewport {
  overflow: hidden;
  border: 1px solid rgba(62, 77, 102, 0.2);
  background:
    linear-gradient(168deg, rgba(247, 250, 254, 0.94), rgba(235, 244, 252, 0.86)),
    radial-gradient(1000px 420px at 88% 0%, rgba(255, 220, 194, 0.22), transparent 70%);
  touch-action: pan-y;
  transition: height 120ms cubic-bezier(0.18, 0.85, 0.24, 1);
}

.attractions-desks__track {
  display: flex;
  align-items: flex-start;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  transition: transform 180ms cubic-bezier(0.18, 0.85, 0.24, 1);
}

.attractions-desk-slide {
  flex: 0 0 100%;
  min-width: 100%;
  width: 100%;
  padding: clamp(0.68rem, 1.7vw, 0.95rem);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.4rem;
}

.attractions-desk-slide__header {
  border-bottom: 1px dashed rgba(53, 66, 88, 0.22);
  padding-bottom: 0.34rem;
}

.attractions-desk-slide__header .kicker {
  margin: 0;
}

.attractions-desk-slide__header h2 {
  margin: 0.18rem 0 0;
  color: #2a3246;
  font-size: clamp(1.75rem, 3.8vw, 2.6rem);
}

.attractions-desk-slide__range {
  margin: 0.34rem 0 0;
  color: #4b5770;
  font-size: 0.79rem;
  line-height: 1.32;
  font-weight: 620;
  letter-spacing: 0.01em;
  text-transform: none;
}

.attractions-desk-slide__range .attractions-range-copy--mobile {
  display: none;
}

.attractions-desk-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.2rem;
}

.attractions-desk-group {
  position: relative;
  overflow: visible;
  border: 1px dashed rgba(68, 83, 109, 0.2);
  background:
    linear-gradient(155deg, rgba(251, 253, 255, 0.86), rgba(242, 247, 252, 0.78)),
    url("../../../images/desk-surface.webp") center / cover no-repeat;
  padding: 1.04rem 0.72rem 0.72rem;
}

.attractions-desk-group > h3 {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0.24rem 0.68rem;
  font-size: 0.82rem;
  font-weight: 670;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  color: #334160;
  background: linear-gradient(155deg, rgba(240, 245, 252, 0.96), rgba(231, 238, 248, 0.92));
  border: 1px solid rgba(114, 129, 156, 0.22);
  box-shadow: 0 6px 12px rgba(51, 65, 96, 0.1);
  z-index: 8;
  pointer-events: none;
}

.attractions-polaroid-board {
  --board-gap: 0.76rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
  gap: var(--board-gap);
  align-items: start;
  perspective: 1500px;
  min-height: 0;
  padding: 0.2rem;
}

.attractions-polaroid {
  --shift-x: 0px;
  --shift-y: 0px;
  --tilt: 0deg;
  --tilt-hover: 0deg;
  --layer: 2;
  grid-column: span 1;
  position: relative;
  width: 100%;
  justify-self: start;
  z-index: var(--layer);
  cursor: pointer;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(var(--tilt));
  transition: transform 320ms cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 320ms ease;
  outline: none;
}

.attractions-polaroid-board > .attractions-polaroid:nth-child(3):last-child {
  grid-column: 1 / -1;
  width: 100%;
  max-width: calc((100% - var(--board-gap)) / 2);
  justify-self: center;
}

.attractions-polaroid-board > .attractions-polaroid:nth-child(5):last-child {
  grid-column: 1 / -1;
  width: 100%;
  max-width: calc((100% - var(--board-gap)) / 2);
  justify-self: center;
}

.attractions-debug-panel {
  position: fixed;
  right: 12px;
  bottom: 12px;
  width: min(330px, calc(100vw - 24px));
  z-index: 1400;
  border: 1px solid rgba(118, 163, 215, 0.42);
  background: rgba(10, 17, 28, 0.93);
  color: #cce8ff;
  box-shadow: 0 16px 32px rgba(2, 6, 11, 0.5);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.attractions-debug-panel__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  padding: 0.42rem;
  border-bottom: 1px solid rgba(118, 163, 215, 0.3);
}

.attractions-debug-panel__actions button {
  border: 1px solid rgba(118, 163, 215, 0.5);
  background: rgba(18, 33, 51, 0.94);
  color: #cce8ff;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.34rem 0.42rem;
  cursor: pointer;
}

.attractions-debug-panel__actions button:hover,
.attractions-debug-panel__actions button:focus-visible {
  border-color: rgba(177, 211, 250, 0.7);
  background: rgba(28, 49, 74, 0.96);
}

.attractions-debug-panel__output {
  margin: 0;
  padding: 0.5rem 0.52rem 0.54rem;
  font-size: 0.72rem;
  line-height: 1.36;
  white-space: pre-wrap;
  word-break: break-word;
}

.attractions-polaroid::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 44px;
  height: 12px;
  transform: translateX(-50%) rotate(-2deg);
  background: rgba(244, 246, 252, 0.9);
  border: 1px solid rgba(177, 186, 205, 0.42);
  box-shadow: 0 2px 4px rgba(42, 48, 63, 0.12);
  z-index: 4;
  pointer-events: none;
}

.attractions-polaroid__inner {
  position: relative;
  aspect-ratio: 0.72 / 1;
  min-height: 0;
  transform-style: preserve-3d;
  transition: transform 640ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.attractions-polaroid__face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: #fffefb;
  border-style: solid;
  border-width: 11px 11px 52px;
  border-color: #fffdf9;
  box-shadow: 0 18px 30px rgba(34, 38, 52, 0.2);
}

.attractions-polaroid__front {
  display: flex;
  flex-direction: column;
  align-content: stretch;
  justify-content: flex-start;
}

.attractions-polaroid__front img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  display: block;
}

.attractions-polaroid__caption {
  padding: 0.42rem 0.28rem 0.04rem;
  background: transparent;
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 0.08rem;
}

.attractions-polaroid__caption h3 {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.1;
  min-height: 0;
  color: #352933;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.attractions-polaroid__caption p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.22;
  min-height: 0;
  color: #5a5564;
  display: block;
}

.attractions-polaroid__back {
  transform: rotateY(180deg);
  padding: 0.72rem 0.58rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.99), rgba(245, 248, 255, 0.94)),
    radial-gradient(560px 220px at 8% 12%, rgba(245, 230, 208, 0.4), transparent 70%);
  display: grid;
  align-content: start;
  gap: 0.54rem;
}

.attractions-polaroid__back h3 {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.2;
}

.attractions-polaroid__back h3 a {
  color: #2e3e5e;
  text-decoration: none;
  border-bottom: 1px solid rgba(46, 62, 94, 0.28);
}

.attractions-polaroid__back h3 a:hover,
.attractions-polaroid__back h3 a:focus-visible {
  border-bottom-color: rgba(46, 62, 94, 0.6);
}

.attractions-polaroid__address {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.46rem;
  font-size: 0.72rem;
  color: #3f4252;
}

.attractions-polaroid__description {
  margin: 0;
  font-size: 0.73rem;
  line-height: 1.34;
  color: #4d5568;
}

.attractions-polaroid__address img,
.attractions-polaroid__facts img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  opacity: 0.8;
  margin-top: 1px;
  flex: 0 0 auto;
}

.attractions-polaroid__facts {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.43rem;
}

.attractions-polaroid__facts li {
  display: flex;
  align-items: flex-start;
  gap: 0.46rem;
  font-size: 0.71rem;
  line-height: 1.3;
  color: #3f4252;
}

.attractions-polaroid:focus-visible,
.attractions-polaroid.is-flipped {
  z-index: 44;
  transform: translate(var(--shift-x), calc(var(--shift-y) - 8px)) rotate(var(--tilt-hover)) scale(1.04);
}

.attractions-polaroid.is-flipped .attractions-polaroid__inner {
  transform: rotateY(180deg);
}

@media (hover: hover) and (pointer: fine) {
  .attractions-polaroid:hover {
    z-index: 44;
    transform: translate(var(--shift-x), calc(var(--shift-y) - 8px)) rotate(var(--tilt-hover)) scale(1.04);
  }

  .attractions-polaroid:hover .attractions-polaroid__inner {
    transform: rotateY(180deg);
  }
}

.attractions-desks__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(49, 66, 96, 0.34);
  background: rgba(246, 251, 255, 0.92);
  color: #243a62;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  z-index: 20;
}

.attractions-desks__arrow--prev {
  left: -14px;
}

.attractions-desks__arrow--next {
  right: -14px;
}

.attractions-desks__arrow:hover,
.attractions-desks__arrow:focus-visible {
  background: #ffffff;
  border-color: rgba(35, 51, 78, 0.58);
}

.attractions-desks__arrow:disabled {
  opacity: 0.34;
  cursor: default;
}

.attractions-desks__status {
  margin: 0.56rem 0 0;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 620;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4f5c75;
}

body.attractions-detail-open {
  overflow: hidden;
}

.attractions-detail-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.7rem, 2.2vw, 1.4rem);
  background: rgba(17, 20, 27, 0.62);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.attractions-detail-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.attractions-detail-sheet {
  width: min(920px, 100%);
  max-height: calc(100vh - 1.6rem);
  overflow: auto;
  border: 1px solid rgba(36, 48, 70, 0.32);
  background:
    linear-gradient(150deg, rgba(252, 253, 255, 0.98), rgba(243, 248, 253, 0.94)),
    url("../../../images/desk-surface.webp") center / cover no-repeat;
  box-shadow: 0 24px 46px rgba(13, 17, 25, 0.36);
  position: relative;
}

.attractions-detail-close {
  position: sticky;
  top: 0.5rem;
  float: right;
  margin: 0.55rem 0.55rem 0 0;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(56, 72, 102, 0.36);
  background: rgba(248, 252, 255, 0.96);
  color: #2d3953;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.attractions-detail-close:hover,
.attractions-detail-close:focus-visible {
  background: #ffffff;
  border-color: rgba(44, 60, 90, 0.6);
}

.attractions-detail-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.95rem;
  padding: 0.7rem 0.9rem 0.95rem;
  clear: both;
}

.attractions-detail-media {
  margin: 0;
  max-width: 300px;
  width: 100%;
  justify-self: center;
  border: 11px solid #fffdf9;
  border-bottom-width: 52px;
  background: #fffefb;
  box-shadow: 0 14px 28px rgba(32, 39, 54, 0.22);
  overflow: hidden;
}

.attractions-detail-media img {
  width: 100%;
  max-height: 220px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #f5f0eb;
}

.attractions-detail-body {
  border: 1px dashed rgba(65, 81, 107, 0.24);
  background: rgba(255, 255, 255, 0.7);
  padding: 0.72rem 0.76rem;
  display: grid;
  align-content: start;
  gap: 0.52rem;
}

.attractions-detail-body h3 {
  margin: 0;
  color: #2d3954;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
}

.attractions-detail-subtitle {
  margin: 0;
  color: #4b5872;
  font-size: 0.92rem;
  font-weight: 620;
}

.attractions-detail-address {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  color: #3d4960;
  font-size: 0.84rem;
}

.attractions-detail-address img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  opacity: 0.8;
  margin-top: 1px;
}

.attractions-detail-description {
  margin: 0;
  color: #455067;
  font-size: 0.84rem;
  line-height: 1.4;
}

.attractions-detail-facts {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.attractions-detail-facts li {
  display: flex;
  align-items: flex-start;
  gap: 0.48rem;
  color: #3d4960;
  font-size: 0.8rem;
  line-height: 1.36;
}

.attractions-detail-facts img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  opacity: 0.82;
  margin-top: 1px;
  flex: 0 0 auto;
}

.attractions-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
  margin-top: 0.18rem;
}

.attractions-detail-btn {
  text-decoration: none;
  border: 1px solid rgba(62, 79, 107, 0.3);
  background: rgba(251, 253, 255, 0.9);
  color: #2f3d59;
  font-size: 0.78rem;
  font-weight: 680;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.42rem 0.56rem;
}

.attractions-detail-btn:hover,
.attractions-detail-btn:focus-visible {
  border-color: rgba(43, 59, 87, 0.56);
  background: #ffffff;
}

.attractions-detail-btn--primary {
  border-color: rgba(239, 215, 165, 0.62);
  background: linear-gradient(145deg, rgba(34, 26, 31, 0.97), rgba(26, 19, 24, 0.95));
  color: var(--gold-200, #efd7a5);
}

.attractions-detail-btn--primary:hover,
.attractions-detail-btn--primary:focus-visible {
  border-color: rgba(239, 215, 165, 0.84);
  background: linear-gradient(145deg, rgba(40, 30, 35, 0.98), rgba(24, 18, 22, 0.96));
}

.attractions-detail-btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

@media (max-width: 1080px) {
  .attractions-desk-groups {
    grid-template-columns: 1fr;
  }

  .attractions-polaroid-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .attractions-editorial {
    padding: 0.78rem;
  }

  .attractions-editorial__intro {
    margin-bottom: 0.78rem;
    padding-bottom: 0.72rem;
  }

  .attractions-range-tabs {
    gap: 0.42rem;
  }

  .attractions-range-tab {
    font-size: 0.7rem;
    padding: 0.42rem 0.52rem;
  }

  .attractions-desks__arrow {
    width: 36px;
    height: 36px;
    top: calc(50% + 12px);
  }

  .attractions-desks__arrow--prev {
    left: 6px;
  }

  .attractions-desks__arrow--next {
    right: 6px;
  }

  .attractions-desk-slide {
    padding: 0.66rem 0.56rem 0.72rem;
    gap: 0.34rem;
  }

  .attractions-desk-group {
    padding: 0.9rem 0.52rem 0.52rem;
  }

  .attractions-polaroid-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    --board-gap: 0.56rem;
    gap: 0.56rem;
    padding: 0;
  }

  .attractions-polaroid {
    --span: 1;
    --shift-x: 0px !important;
    --shift-y: 0px !important;
    --tilt: 0deg !important;
    --tilt-hover: 0deg !important;
    transform: none;
  }

  .attractions-polaroid:focus-visible,
  .attractions-polaroid.is-flipped {
    transform: translateY(-4px) scale(1.02);
  }

  .attractions-polaroid__inner {
    aspect-ratio: 0.7 / 1;
  }

  .attractions-polaroid__face {
    border-width: 10px 10px 38px;
  }

  .attractions-polaroid__caption {
    padding: 0.42rem 0.3rem 0.08rem;
    gap: 0.12rem;
  }

  .attractions-polaroid__caption h3 {
    font-size: 0.78rem;
    line-height: 1.14;
    max-height: calc(1.14em * 2);
  }

  .attractions-polaroid__caption p {
    font-size: 0.65rem;
    line-height: 1.3;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .attractions-desk-slide__range {
    font-size: 0.68rem;
    line-height: 1.28;
  }

  .attractions-desk-slide__range .attractions-range-copy--desktop {
    display: none;
  }

  .attractions-desk-slide__range .attractions-range-copy--mobile {
    display: inline;
  }

  .attractions-polaroid__back {
    padding: 0.62rem 0.5rem;
  }

  .attractions-polaroid__back h3 {
    font-size: 0.84rem;
  }

  .attractions-polaroid__facts li,
  .attractions-polaroid__address,
  .attractions-polaroid__description {
    font-size: 0.67rem;
  }

  .attractions-polaroid__description {
    display: none;
  }

  .attractions-detail-overlay {
    padding: 0.46rem;
  }

  .attractions-detail-sheet {
    max-height: calc(100vh - 0.9rem);
  }

  .attractions-detail-top {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding: 0.5rem 0.56rem 0.76rem;
  }

  .attractions-detail-body {
    padding: 0.64rem 0.58rem;
  }

  .attractions-detail-body h3 {
    font-size: 1.22rem;
  }

  .attractions-detail-subtitle {
    font-size: 0.84rem;
  }

  .attractions-detail-address,
  .attractions-detail-description,
  .attractions-detail-facts li,
  .attractions-detail-btn {
    font-size: 0.73rem;
  }
}
.page-hikes-basic {
  background: linear-gradient(180deg, #fff8f4 0%, #fffefb 44%, #fff7f2 100%);
}

.page-hikes-basic .page {
  padding-top: 0;
}

.page-hikes-basic main section[id] {
  scroll-margin-top: 92px;
}

.hike-hero-basic {
  padding: 128px 0 42px;
  text-align: center;
  background:
    radial-gradient(860px 360px at 50% 8%, rgba(255, 226, 214, 0.56), transparent 64%),
    radial-gradient(820px 360px at 14% 96%, rgba(112, 171, 186, 0.22), transparent 66%);
  border-bottom: 1px solid rgba(147, 67, 90, 0.12);
}

.page-hikes-basic .serif-title {
  color: #7e4761;
}

.hike-topo {
  --hike-topo-surveyor-offset: -4px;
  position: relative;
  padding: 2rem 0 1.6rem;
}

.hike-topo::before {
  content: "";
  position: absolute;
  inset: 0 0 5% 0;
  pointer-events: none;
  background:
    radial-gradient(680px 320px at 78% 22%, rgba(201, 99, 124, 0.11), transparent 72%),
    radial-gradient(620px 280px at 18% 84%, rgba(82, 119, 90, 0.1), transparent 72%);
}

.hike-topo__intro {
  text-align: center;
  margin-bottom: 1.1rem;
}

.hike-topo__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  line-height: 0.94;
  letter-spacing: 0.01em;
  color: #7e4761;
}

.hike-topo__intro .subhead {
  max-width: 760px;
  margin: 0.6rem auto 0;
}

.hike-topo__fixed {
  position: fixed;
  inset: calc(50% + var(--hike-topo-surveyor-offset)) 0 auto 0;
  transform: translateY(-50%);
  z-index: 28;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
}

body.hike-topo-is-active .hike-topo__fixed {
  opacity: 1;
}

.hike-topo__surveyor-line {
  width: 100%;
  border-top: 1px dashed rgba(147, 67, 90, 0.58);
}

.hike-topo__live {
  margin: 0;
  position: absolute;
  top: 0;
  right: clamp(0.8rem, 4vw, 2.8rem);
  transform: translateY(-58%);
  min-width: 140px;
  padding: 0.52rem 0.72rem 0.56rem;
  border: 1px solid rgba(147, 67, 90, 0.35);
  border-radius: 0;
  background: rgba(255, 252, 249, 0.95);
  box-shadow: 0 10px 24px rgba(85, 44, 58, 0.18);
  text-align: right;
  display: grid;
  gap: 0.06rem;
}

.hike-topo__live span {
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6c4d59;
}

.hike-topo__live strong {
  font-family: var(--sans);
  font-size: clamp(1.2rem, 1.3vw, 1.38rem);
  line-height: 1;
  color: #2d1f24;
}

.hike-topo__plot {
  position: relative;
  min-height: clamp(1760px, 240vh, 2520px);
  margin: 0 auto;
  border: 1px solid rgba(147, 67, 90, 0.18);
  border-radius: 0;
  overflow: visible;
  background:
    linear-gradient(176deg, rgba(255, 255, 255, 0.91), rgba(255, 243, 238, 0.9) 52%, rgba(250, 244, 239, 0.86)),
    radial-gradient(520px 270px at 76% 12%, rgba(201, 99, 124, 0.15), transparent 72%),
    radial-gradient(640px 320px at 16% 80%, rgba(82, 119, 90, 0.12), transparent 72%);
  box-shadow: 0 24px 46px rgba(77, 54, 68, 0.14);
}

.hike-topo__ridge {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hike-topo__ridge-track,
.hike-topo__ridge-progress {
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hike-topo__ridge-track {
  stroke: rgba(201, 99, 124, 0.18);
}

.hike-topo__ridge-progress {
  stroke: var(--rose-500);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter: drop-shadow(0 0 6px rgba(201, 99, 124, 0.5));
  will-change: stroke-dashoffset;
  transition: stroke-dashoffset 90ms linear;
  opacity: 1;
}

.hike-topo__tier {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hike-topo__tier--base {
  top: 10%;
}

.hike-topo__tier--mid {
  top: 32%;
}

.hike-topo__tier--peak {
  top: 72%;
}

.hike-topo__tier span {
  display: inline-flex;
  padding: 0.22rem 0.56rem;
  border: 1px solid rgba(147, 67, 90, 0.26);
  background: rgba(255, 252, 249, 0.9);
  color: #74535f;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
}

.hike-topo-node {
  --node-top: 0px;
  --spread: clamp(72px, 11vw, 150px);
  position: absolute;
  top: var(--node-top);
  left: 50%;
  width: 0;
  height: 0;
  z-index: 3;
}

.hike-topo-node::before {
  content: "";
  position: absolute;
  top: 0;
  height: 1px;
  transform: translateY(-50%);
  background: rgba(147, 67, 90, 0.36);
  transition: background-color 320ms ease;
}

.hike-topo-node[data-side="right"]::before {
  left: 0;
  width: var(--node-spread, var(--spread));
}

.hike-topo-node[data-side="left"]::before {
  right: 0;
  width: var(--node-spread, var(--spread));
}

.hike-topo-node__anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 2px solid rgba(147, 67, 90, 0.7);
  background: #fff9f6;
  box-shadow: 0 0 0 7px rgba(255, 249, 246, 0.75), 0 4px 16px rgba(85, 44, 58, 0.16);
  z-index: 6;
  transition: background-color 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.hike-topo-node__card {
  --card-scale: 0.985;
  position: absolute;
  top: 0;
  width: min(224px, calc(100vw - 5.2rem));
  padding: 0.56rem 0.66rem 0.62rem;
  border: 1px solid rgba(97, 88, 111, 0.28);
  border-radius: 0;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(250, 244, 242, 0.91));
  box-shadow: 0 14px 30px rgba(77, 54, 68, 0.17);
  transform: translateY(-50%) scale(var(--card-scale));
  overflow: hidden;
  transition:
    width 420ms cubic-bezier(0.2, 0.82, 0.2, 1),
    padding 420ms cubic-bezier(0.2, 0.82, 0.2, 1),
    transform 420ms cubic-bezier(0.2, 0.82, 0.2, 1),
    box-shadow 420ms ease,
    border-color 360ms ease;
  z-index: 5;
}

.hike-topo-node[data-side="right"] .hike-topo-node__card {
  left: var(--node-spread, var(--spread));
  transform-origin: left center;
}

.hike-topo-node[data-side="left"] .hike-topo-node__card {
  right: var(--node-spread, var(--spread));
  transform-origin: right center;
}

.hike-topo-node__bg {
  --bg-scale: 0.96;
  position: absolute;
  top: 0;
  width: clamp(250px, 34vw, 500px);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0;
  border: 1px solid rgba(147, 67, 90, 0.14);
  pointer-events: none;
  mix-blend-mode: multiply;
  filter: saturate(1.05) contrast(1.03);
  opacity: 0;
  transform: translateY(-56%) scale(var(--bg-scale));
  transition: opacity 420ms ease, transform 420ms ease;
  z-index: 4;
}

.hike-topo-node[data-side="right"] .hike-topo-node__bg {
  left: calc(var(--node-spread, var(--spread)) + 1rem);
}

.hike-topo-node[data-side="left"] .hike-topo-node__bg {
  right: calc(var(--node-spread, var(--spread)) + 1rem);
}

.hike-topo-node__tier {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.64rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #74515f;
  font-weight: 700;
}

.hike-topo-node__hero {
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  border: 1px solid rgba(97, 88, 111, 0.2);
  transition: max-height 420ms ease, opacity 320ms ease, transform 320ms ease, margin-bottom 320ms ease;
}

.hike-topo-node__hero img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.hike-topo-node__title {
  margin: 0.16rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.32rem, 2.05vw, 1.94rem);
  line-height: 0.92;
  color: #2f1f24;
  transform: scale(1);
  transition: transform 420ms cubic-bezier(0.2, 0.82, 0.2, 1), color 320ms ease;
}

.hike-topo-node__subtitle {
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(6px);
  font-family: var(--sans);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #6f5561;
  transition: max-height 340ms ease, opacity 260ms ease, transform 260ms ease, margin-top 260ms ease;
}

.hike-topo-node__stats {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.24rem 0.28rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    max-height 460ms ease,
    opacity 320ms ease,
    transform 320ms ease,
    margin-top 320ms ease;
}

.hike-topo-node__stats li {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  column-gap: 0.24rem;
  row-gap: 0.06rem;
  padding: 0.2rem 0.26rem;
  border: 1px solid rgba(97, 88, 111, 0.2);
  background: rgba(255, 255, 255, 0.78);
  transition: background-color 320ms ease, border-color 320ms ease, color 320ms ease;
}

.hike-topo-node__stats li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.05rem;
  grid-row: 1 / span 2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.68;
}

.hike-topo-node__stats li:nth-child(1)::before {
  background-image: url("../../../images/time.png");
}

.hike-topo-node__stats li:nth-child(2)::before {
  background-image: url("../../../images/distance.png");
}

.hike-topo-node__stats li:nth-child(3)::before {
  background-image: url("../../../images/standard.png");
}

.hike-topo-node__stats li:nth-child(4)::before {
  background-image: url("../../../images/elevation.png");
}

.hike-topo-node__stats span {
  font-family: var(--sans);
  font-size: 0.5rem;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  color: #65525b;
}

.hike-topo-node__stats strong {
  font-family: var(--sans);
  font-size: 0.66rem;
  line-height: 1.1;
  color: #2f2429;
  font-weight: 700;
  grid-column: 2;
  max-height: 2.3em;
  overflow: hidden;
}

.hike-topo-node__detail {
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: max-height 460ms ease, opacity 320ms ease, transform 320ms ease, margin-top 320ms ease;
}

.hike-topo-node__detail p {
  margin: 0;
  grid-column: 1 / -1;
  font-size: 0.8rem;
  line-height: 1.38;
  color: #45343c;
}

.hike-topo-node__map {
  margin: 0;
  border: 1px solid rgba(97, 88, 111, 0.22);
  background: rgba(255, 255, 255, 0.8);
}

.hike-topo-node__map img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 132px;
  object-fit: cover;
}

.hike-topo-node__map figcaption {
  padding: 0.22rem 0.34rem 0.26rem;
  font-family: var(--sans);
  font-size: 0.52rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #6b4d5a;
  font-weight: 700;
}

.hike-topo-node__extras {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.24rem 0.28rem;
}

.hike-topo-node__extras li {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  column-gap: 0.24rem;
  row-gap: 0.06rem;
  padding: 0.2rem 0.26rem;
  border: 1px solid rgba(97, 88, 111, 0.18);
  background: rgba(255, 255, 255, 0.72);
  transition: background-color 320ms ease, border-color 320ms ease, color 320ms ease;
}

.hike-topo-node__extras li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.05rem;
  grid-row: 1 / span 2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.68;
}

.hike-topo-node__metric--views::before {
  background-image: url("../../../images/sights.png");
}

.hike-topo-node__metric--crowds::before {
  background-image: url("../../../images/crowds.png");
}

.hike-topo-node__extras span {
  font-family: var(--sans);
  font-size: 0.5rem;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  color: #65525b;
}

.hike-topo-node__extras strong {
  font-family: var(--sans);
  font-size: 0.66rem;
  line-height: 1.1;
  color: #2f2429;
  font-weight: 700;
  grid-column: 2;
  max-height: 2.3em;
  overflow: hidden;
}

.hike-topo-node__link {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  grid-column: 1 / -1;
  text-decoration: none;
  padding: 0.38rem 0.62rem;
  border: 1px solid rgba(126, 71, 97, 0.38);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.9);
  color: #6a4d5a;
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.hike-topo-node__link:hover,
.hike-topo-node__link:focus-visible {
  background: #7e4761;
  color: #fff;
  border-color: #7e4761;
  transform: translateY(-1px);
}

.hike-topo-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 118;
  background: rgba(36, 20, 28, 0.56);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.hike-topo-modal-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.hike-topo-modal-open {
  overflow: hidden;
}

.hike-topo--tap-mode .hike-topo-node__card {
  cursor: pointer;
}

.hike-topo--tap-mode .hike-topo-node__card:focus-visible {
  outline: 2px solid rgba(126, 71, 97, 0.65);
  outline-offset: 2px;
}

.hike-topo--tap-mode .hike-topo-node__link {
  position: relative;
  z-index: 2;
}

.hike-topo-node__close {
  display: none;
}

.hike-topo-node.is-active::before {
  background: rgba(147, 67, 90, 0.72);
}

.hike-topo-node.is-active .hike-topo-node__anchor {
  border-color: var(--rose-700);
  background: var(--rose-500);
  box-shadow: 0 0 0 8px rgba(255, 242, 237, 0.8), 0 7px 20px rgba(85, 44, 58, 0.24);
}

.hike-topo-node.is-active .hike-topo-node__card {
  --card-scale: 1.028;
  width: min(405px, calc(100vw - 4.4rem));
  padding: 0.72rem 0.76rem 0.8rem;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  grid-template-areas:
    "tier tier"
    "hero hero"
    "title title"
    "subtitle subtitle"
    "map stats"
    "map extras"
    "copy copy"
    "link link";
  gap: 0.28rem 0.34rem;
  align-items: start;
  border-color: rgba(147, 67, 90, 0.52);
  box-shadow: 0 24px 44px rgba(57, 34, 44, 0.28);
}

.hike-topo-node.is-active .hike-topo-node__tier {
  grid-area: tier;
}

.hike-topo-node.is-active .hike-topo-node__hero {
  grid-area: hero;
  margin-bottom: 0.5rem;
  max-height: 148px;
  opacity: 1;
  transform: translateY(0);
}

.hike-topo-node.is-active .hike-topo-node__title {
  grid-area: title;
  transform: scale(1.015);
  color: #6f3148;
}

.hike-topo-node.is-active .hike-topo-node__subtitle {
  grid-area: subtitle;
  margin-top: 0.2rem;
  max-height: 1.5rem;
  opacity: 1;
  transform: translateY(0);
}

.hike-topo-node.is-active .hike-topo-node__bg {
  --bg-scale: 1;
  opacity: 0;
}

.hike-topo-node.is-active .hike-topo-node__stats {
  grid-area: stats;
  margin-top: 0;
  max-height: 180px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hike-topo-node.is-active .hike-topo-node__detail {
  margin-top: 0;
  max-height: none;
  opacity: 1;
  transform: translateY(0);
  display: contents;
  overflow: visible;
}

.hike-topo-node.is-active .hike-topo-node__map {
  grid-area: map;
  margin: 0;
  align-self: stretch;
  position: relative;
  overflow: hidden;
  display: block;
}

.hike-topo-node.is-active .hike-topo-node__map img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  max-height: none;
  aspect-ratio: auto;
  object-fit: cover;
}

.hike-topo-node.is-active .hike-topo-node__map figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.18rem 0.3rem 0.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.86));
}

.hike-topo-node.is-active .hike-topo-node__extras {
  grid-area: extras;
  margin: 0;
  gap: 0.22rem 0.26rem;
}

.hike-topo-node.is-active .hike-topo-node__detail p {
  grid-area: copy;
  margin-top: 0.08rem;
}

.hike-topo-node.is-active .hike-topo-node__stat--elevation {
  background: #7e4761;
  border-color: #7e4761;
}

.hike-topo-node.is-active .hike-topo-node__stat--elevation span,
.hike-topo-node.is-active .hike-topo-node__stat--elevation strong {
  color: #ffe566;
}

.hike-topo-node.is-active .hike-topo-node__extras li {
  border-color: rgba(97, 88, 111, 0.2);
  background: rgba(255, 255, 255, 0.78);
}

.hike-topo--tap-mode .hike-topo-node.is-active .hike-topo-node__card {
  position: fixed;
  left: 50% !important;
  right: auto !important;
  top: 50%;
  transform: translate(-50%, -50%) scale(1.01);
  width: min(92vw, 430px);
  max-height: min(86vh, 760px);
  overflow: auto;
  z-index: 130;
  padding-top: 1.92rem;
}

.hike-topo--tap-mode .hike-topo-node.is-active .hike-topo-node__close {
  display: inline-flex;
  position: absolute;
  top: 0.46rem;
  right: 0.46rem;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  padding: 0.22rem 0.42rem;
  border: 1px solid rgba(126, 71, 97, 0.46);
  background: rgba(255, 255, 255, 0.94);
  color: #6a4d5a;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.hike-topo--tap-mode .hike-topo-node.is-active .hike-topo-node__close:hover,
.hike-topo--tap-mode .hike-topo-node.is-active .hike-topo-node__close:focus-visible {
  background: #7e4761;
  border-color: #7e4761;
  color: #fff;
}

.hike-topo--tap-mode .hike-topo-node.is-active .hike-topo-node__bg {
  opacity: 0;
}

body.hike-topo-modal-open .hike-topo__fixed {
  opacity: 0 !important;
}

.hike-topo-node.is-passed .hike-topo-node__anchor {
  border-color: rgba(147, 67, 90, 0.8);
}

.hike-topo__back {
  margin: 1.08rem 0 0;
  text-align: center;
}

.hike-topo__back .pill {
  min-width: 172px;
}

.page-hikes-basic .explore-places-section {
  margin-top: 1.3rem;
}

@media (max-width: 1100px) {
  .hike-topo__plot {
    min-height: clamp(1700px, 220vh, 2320px);
  }

  .hike-topo-node {
    --spread: clamp(60px, 9vw, 118px);
  }

  .hike-topo-node__card {
    width: min(214px, calc(100vw - 4.2rem));
  }

  .hike-topo-node.is-active .hike-topo-node__card {
    width: min(368px, calc(100vw - 3.2rem));
  }
}

@media (max-width: 900px) {
  .hike-topo__live {
    right: 0.7rem;
  }

  .hike-topo-node {
    --spread: clamp(54px, 9vw, 96px);
  }

  .hike-topo-node__card {
    width: min(206px, calc(100vw - 3rem));
  }

  .hike-topo-node.is-active .hike-topo-node__card {
    width: min(324px, calc(100vw - 2.3rem));
  }

  .hike-topo-node__stats {
    grid-template-columns: 1fr;
  }

  .hike-topo-node.is-active .hike-topo-node__card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "tier"
      "hero"
      "title"
      "subtitle"
      "stats"
      "map"
      "extras"
      "copy"
      "link";
    gap: 0.34rem;
  }

  .hike-topo-node.is-active .hike-topo-node__extras {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hike-hero-basic {
    padding: 108px 0 38px;
  }

  .hike-topo {
    padding-top: 1.5rem;
  }

  .hike-topo__title {
    font-size: clamp(1.95rem, 7.6vw, 2.7rem);
  }

  .hike-topo__fixed {
    z-index: 22;
  }

  .hike-topo__live {
    left: 50%;
    right: auto;
    transform: translate(-50%, -56%);
    min-width: 132px;
    text-align: center;
  }

  .hike-topo__plot {
    min-height: clamp(1640px, 190vh, 1800px);
  }

  .hike-topo__tier {
    left: 0.76rem;
    transform: none;
  }

  .hike-topo__tier--base {
    top: 9%;
  }

  .hike-topo__tier--mid {
    top: 34%;
  }

  .hike-topo__tier--peak {
    top: 74%;
  }

  .hike-topo__plot .hike-topo-node::before {
    display: none;
  }

  .hike-topo__plot .hike-topo-node .hike-topo-node__card {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%) scale(var(--card-scale));
    transform-origin: center;
    width: min(300px, calc(100vw - 2.5rem));
    max-width: 500px;
  }

  .hike-topo__plot .hike-topo-node.is-active .hike-topo-node__card {
    width: calc(100vw - 2.5rem);
  }

  .hike-topo__plot .hike-topo-node .hike-topo-node__bg {
    left: 50%;
    right: auto;
    width: calc(100vw - 2.2rem);
    max-width: 520px;
    transform: translate(-50%, -56%) scale(var(--bg-scale));
  }

  .hike-topo-node__title {
    font-size: clamp(1.5rem, 8.8vw, 2.15rem);
  }

}

@media (prefers-reduced-motion: reduce) {
  .hike-topo__fixed,
  .hike-topo-node::before,
  .hike-topo-node__anchor,
  .hike-topo-node__card,
  .hike-topo-node__title,
  .hike-topo-node__stats li,
  .hike-topo-node__detail,
  .hike-topo-node__bg,
  .hike-topo-node__link {
    transition: none !important;
  }
}

.hike-topo-debug {
  position: fixed;
  left: 12px;
  bottom: 12px;
  width: min(380px, calc(100vw - 24px));
  max-height: min(56vh, 420px);
  overflow: auto;
  z-index: 92;
  border: 1px solid rgba(56, 36, 45, 0.72);
  background: rgba(18, 12, 16, 0.94);
  color: #fbeef2;
  box-shadow: 0 16px 34px rgba(8, 4, 7, 0.48);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
}

body.hike-topo-debug-on .hike-topo-debug {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.hike-topo-debug__head {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.58rem 0.68rem;
  border-bottom: 1px solid rgba(251, 238, 242, 0.22);
  background: rgba(28, 19, 23, 0.96);
}

.hike-topo-debug__head strong {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--sans);
}

.hike-topo-debug__actions {
  display: flex;
  gap: 0.44rem;
}

.hike-topo-debug__actions button {
  border: 1px solid rgba(251, 238, 242, 0.45);
  background: transparent;
  color: #fbeef2;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.28rem 0.48rem;
  cursor: pointer;
}

.hike-topo-debug__actions button:hover,
.hike-topo-debug__actions button:focus-visible {
  background: rgba(251, 238, 242, 0.14);
}

.hike-topo-debug__readout {
  margin: 0;
  padding: 0.68rem;
  white-space: pre-wrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  line-height: 1.45;
}
.reach-view-switcher {
  margin: 0 0 0.8rem;
  display: flex;
  justify-content: flex-start;
}

.reach-view-tab {
  border: 1px solid rgba(126, 71, 97, 0.34);
  border-right: 0;
  background: rgba(255, 255, 255, 0.88);
  color: #6a4d5a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.48rem 0.86rem;
  line-height: 1.15;
  cursor: pointer;
}

.reach-view-tab:last-child {
  border-right: 1px solid rgba(126, 71, 97, 0.34);
}

.reach-view-tab.is-active {
  background: #7e4761;
  color: #fff;
}

.reach-carousel {
  --cards-per-view: 3;
  --carousel-gap: 1rem;
  position: relative;
  padding: 0 3.2rem 2rem;
}

.reach-carousel__viewport {
  overflow: hidden;
  padding: 0.95rem 0 1.1rem;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.reach-carousel.is-dragging .reach-carousel__viewport {
  cursor: grabbing;
}

.reach-carousel.is-grid {
  padding: 0 0 1.1rem;
}

.reach-carousel.is-grid .reach-carousel__viewport {
  overflow: visible;
  padding: 0;
  cursor: default;
  user-select: auto;
  -webkit-user-select: auto;
}

.reach-carousel.is-grid .reach-carousel__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  transform: none !important;
  transition: none !important;
}

.reach-carousel.is-grid .reach-carousel__arrow,
.reach-carousel.is-grid .reach-carousel__status {
  display: none;
}

.reach-carousel__track {
  display: flex;
  gap: var(--carousel-gap);
  transition: transform 300ms ease;
  will-change: transform;
}

.reach-carousel__arrow {
  position: absolute;
  top: calc(50% - 0.45rem);
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(126, 71, 97, 0.35);
  border-radius: 999px;
  color: #7e4761;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(43, 25, 39, 0.18);
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
}

.reach-carousel__arrow span {
  font-size: 1rem;
  line-height: 1;
}

.reach-carousel__arrow:disabled {
  opacity: 0.4;
  cursor: default;
}

.reach-carousel__arrow--prev {
  left: 0;
}

.reach-carousel__arrow--next {
  right: 0;
}

.reach-carousel__status {
  margin: 0.8rem 0 0;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6a4d5a;
}

.reach-card {
  position: relative;
  container-type: inline-size;
  flex: 0 0 calc((100% - (var(--cards-per-view) - 1) * var(--carousel-gap)) / var(--cards-per-view));
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(97, 88, 111, 0.2);
  background: linear-gradient(146deg, rgba(255, 255, 255, 0.97), rgba(245, 253, 255, 0.9));
  box-shadow: 0 11px 24px rgba(77, 54, 68, 0.15);
  transform: translateY(0) scale(1);
  transition: transform 320ms ease, box-shadow 320ms ease, filter 320ms ease;
  filter: saturate(0.92);
}

.reach-card.is-visible {
  filter: saturate(1);
}

.reach-card.is-featured {
  transform: translateY(-7px) scale(1.02);
  box-shadow: 0 18px 32px rgba(59, 34, 48, 0.22);
  z-index: 1;
}

.reach-carousel.is-grid .reach-card {
  flex: none;
  transform: none !important;
  filter: saturate(1);
  box-shadow: 0 12px 24px rgba(77, 54, 68, 0.14);
  z-index: auto;
}

.reach-card__photo {
  width: 100%;
  aspect-ratio: 2 / 1;
  height: 50cqw;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(97, 88, 111, 0.2);
}

.reach-card__body {
  padding: 0.72rem 0.72rem 0.84rem;
}

.reach-card__body h2 {
  margin: 0;
  font-size: clamp(1.18rem, 1.55vw, 1.48rem);
}

.reach-card__meta {
  margin: 0.2rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #5a434d;
}

.reach-card__icons {
  margin: 0.56rem 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem 0.44rem;
}

.reach-card__icons li {
  display: flex;
  align-items: flex-start;
  gap: 0.32rem;
  font-size: 0.76rem;
  line-height: 1.25;
  color: #4f3d45;
}

.reach-card__icons img {
  width: 13px;
  height: 13px;
  object-fit: contain;
  opacity: 0.75;
}

.reach-card__body p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.38;
}

.reach-card__cta {
  display: inline-flex;
  align-items: center;
  margin-top: 0.56rem;
  padding: 0.36rem 0.6rem;
  border: 1px solid rgba(126, 71, 97, 0.38);
  background: rgba(255, 255, 255, 0.9);
  color: #6a4d5a;
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.reach-card__cta:hover,
.reach-card__cta:focus-visible {
  background: #7e4761;
  border-color: #7e4761;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 1100px) {
  .reach-carousel {
    --cards-per-view: 2;
    padding: 0 2.8rem 1.8rem;
  }

  .reach-carousel.is-grid .reach-carousel__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .reach-view-tab {
    font-size: 0.68rem;
    padding: 0.42rem 0.7rem;
  }

  .reach-carousel {
    --cards-per-view: 1;
    padding: 0 0 1.2rem;
  }

  .reach-carousel__arrow {
    width: 1.9rem;
    height: 1.9rem;
    top: calc(50% - 0.5rem);
  }

  .reach-carousel__arrow span {
    font-size: 0.82rem;
  }

  .reach-carousel__arrow--prev {
    left: -0.2rem;
  }

  .reach-carousel__arrow--next {
    right: -0.2rem;
  }

  .reach-carousel__status {
    font-size: 0.74rem;
  }

  .reach-card {
    flex-basis: min(84vw, 340px);
    box-shadow: 0 10px 24px rgba(77, 54, 68, 0.14);
  }

  .reach-card.is-featured {
    transform: translateY(-6px) scale(1.018);
    box-shadow: 0 16px 32px rgba(59, 34, 48, 0.2);
  }

  .reach-carousel:not(.is-grid) .reach-card__photo {
    aspect-ratio: 1 / 1;
    height: 100cqw;
  }

  .reach-carousel:not(.is-grid) .reach-card__body {
    padding: 0.62rem 0.62rem 0.72rem;
  }

  .reach-carousel:not(.is-grid) .reach-card__body h2 {
    font-size: 1.06rem;
    line-height: 1.12;
  }

  .reach-carousel:not(.is-grid) .reach-card__meta {
    margin-top: 0.16rem;
    font-size: 0.62rem;
  }

  .reach-carousel:not(.is-grid) .reach-card__icons {
    display: none;
  }

  .reach-carousel:not(.is-grid) .reach-card__body p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-top: 0.36rem;
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .reach-carousel:not(.is-grid) .reach-card__cta {
    margin-top: 0.44rem;
    padding: 0.32rem 0.54rem;
    font-size: 0.6rem;
  }

  .reach-carousel.is-grid .reach-carousel__track {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .reach-carousel.is-grid .reach-card {
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(77, 54, 68, 0.12);
  }

  .reach-carousel.is-grid .reach-card__photo {
    aspect-ratio: 1 / 1;
    height: 100cqw;
  }

  .reach-carousel.is-grid .reach-card__body {
    padding: 0.46rem 0.46rem 0.52rem;
  }

  .reach-carousel.is-grid .reach-card__body h2 {
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .reach-carousel.is-grid .reach-card__meta {
    margin-top: 0.14rem;
    font-size: 0.58rem;
    letter-spacing: 0.05em;
  }

  .reach-carousel.is-grid .reach-card:not(.is-expanded) .reach-card__icons,
  .reach-carousel.is-grid .reach-card:not(.is-expanded) .reach-card__body p,
  .reach-carousel.is-grid .reach-card:not(.is-expanded) .reach-card__cta {
    display: none;
  }

  .reach-carousel.is-grid .reach-card.is-expanded {
    grid-column: 1 / -1;
    box-shadow: 0 16px 30px rgba(77, 54, 68, 0.2);
    z-index: 2;
  }

  .reach-carousel.is-grid .reach-card.is-expanded .reach-card__photo {
    aspect-ratio: 16 / 9;
    height: 56.25cqw;
  }

  .reach-carousel.is-grid .reach-card.is-expanded .reach-card__body {
    padding: 0.9rem 0.9rem 1rem;
  }

  .reach-carousel.is-grid .reach-card.is-expanded .reach-card__body h2 {
    font-size: 1.28rem;
  }

  .reach-carousel.is-grid .reach-card.is-expanded .reach-card__meta {
    margin-top: 0.24rem;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
  }

  .reach-carousel.is-grid .reach-card.is-expanded .reach-card__icons {
    display: grid;
    gap: 0.34rem 0.6rem;
  }

  .reach-carousel.is-grid .reach-card.is-expanded .reach-card__body p {
    display: block;
  }

}

@media (max-width: 980px) {
  .reach-card__icons {
    grid-template-columns: 1fr;
  }
}

.page-things-to-do .see-planner-panel .subhead,
.page-things-to-do .beach-editorial__intro p,
.page-things-to-do .attractions-editorial__intro .subhead,
.page-things-to-do .see-category-head .subhead {
  font-family: var(--sans);
  font-style: normal;
  letter-spacing: 0;
}

@media (max-width: 767px) {
  .see-mobile-collapse {
    border-top: 1px solid rgba(147, 67, 90, 0.16);
  }

  .see-mobile-collapse :is(.see-planner-panel h2, .beach-editorial__intro h2, .attractions-editorial__intro h2, .see-category-head h2) {
    position: relative;
    padding-right: 1.9rem;
    cursor: pointer;
  }

  .see-mobile-collapse :is(.see-planner-panel h2, .beach-editorial__intro h2, .attractions-editorial__intro h2, .see-category-head h2)::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #93435a;
    font-family: var(--sans);
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1;
  }

  .see-mobile-collapse.is-open :is(.see-planner-panel h2, .beach-editorial__intro h2, .attractions-editorial__intro h2, .see-category-head h2)::after {
    content: '-';
  }

  #shopping .see-category-head h2 {
    cursor: default;
  }

  #shopping .see-category-head h2::after {
    content: none;
  }

  #shopping .shopping-elevator-preview {
    display: none !important;
  }

  .see-mobile-collapse:not(.is-open) :is(
    .see-planner-panel .kicker,
    .see-filter-chips,
    .see-filter-status,
    .see-filter-grid,
    .beach-editorial__intro .kicker,
    .beach-jump-tabs,
    .beach-desks-wrap,
    .attractions-editorial__intro .kicker,
    .attractions-range-tabs,
    .attractions-desks,
    .see-category-head .kicker,
    .shopping-elevator-gate,
    .shopping-elevator-embed,
    .hike-mini-icons,
    .see-rail,
    .reach-view-switcher,
    .reach-carousel
  ) {
    display: none !important;
  }

  .see-mobile-collapse:not(.is-open) .hike-panel-toggle-wrap {
    display: none !important;
  }

  .see-mobile-collapse:not(.is-open) > .container,
  .see-mobile-collapse:not(.is-open) > .beach-editorial,
  .see-mobile-collapse:not(.is-open) .attractions-editorial {
    padding-block: 0.42rem;
  }

  .see-mobile-collapse:not(.is-open) :is(.see-planner-panel, .beach-editorial, .attractions-editorial, .see-category-head) {
    box-shadow: none;
  }

  .see-mobile-collapse:not(.is-open) :is(.see-planner-panel h2, .beach-editorial__intro h2, .attractions-editorial__intro h2, .see-category-head h2) {
    font-size: clamp(2.1rem, 9vw, 3.25rem);
    line-height: 1.03;
  }

  .see-mobile-collapse:not(.is-open) :is(.see-planner-panel .subhead, .beach-editorial__intro p, .attractions-editorial__intro .subhead, .see-category-head .subhead) {
    display: block;
    margin-top: 0.72rem;
    max-width: 34rem;
    color: rgba(47, 31, 37, 0.72);
    font-family: var(--sans) !important;
    font-size: 1rem;
    font-style: normal !important;
    line-height: 1.45;
  }

  .page-things-to-do .section--beach-editorial {
    padding-inline: 0;
  }

  .page-things-to-do .beach-editorial__intro {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  .page-things-to-do .section--beach-editorial.is-open .beach-editorial__intro {
    border-bottom: 0;
  }

  .page-things-to-do .section--see-carousel {
    display: none !important;
  }
}
