:root {
  --bg: #f6f2ea;
  --paper: rgba(255, 252, 247, 0.84);
  --paper-strong: rgba(255, 252, 247, 0.96);
  --ink: #1b2f38;
  --muted: #5c6c73;
  --line: rgba(27, 47, 56, 0.12);
  --shadow: 0 22px 60px rgba(21, 41, 50, 0.12);
  --winter: #7ab7ff;
  --winter-deep: #0f4f82;
  --summer: #1da38b;
  --summer-deep: #14685f;
  --sun: #ffc86a;
  --accent: #ff7c52;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --content-width: min(1180px, calc(100vw - 40px));
  --winter-hero-image-width: 440px;
  --winter-hero-image-height: 390px;
  --winter-hero-image-focus-x: 50%;
  --winter-hero-image-focus-y: 100%;
  --winter-hero-image-scale: 1;
  --winter-hero-text-width: 700px;
  --winter-hero-gap: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 200, 106, 0.22), transparent 18%),
    radial-gradient(circle at 85% 14%, rgba(122, 183, 255, 0.22), transparent 20%),
    linear-gradient(180deg, #fbf8f2 0%, #f2f7fb 52%, #eef7f1 100%);
  min-height: 100vh;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page-glow {
  position: fixed;
  inset: auto;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.34;
  pointer-events: none;
  z-index: 0;
}

.glow-winter {
  width: 360px;
  height: 360px;
  top: 90px;
  right: -80px;
  background: rgba(122, 183, 255, 0.65);
}

.glow-summer {
  width: 300px;
  height: 300px;
  bottom: 110px;
  left: -90px;
  background: rgba(29, 163, 139, 0.3);
}

.site-header {
  position: relative;
  z-index: 31;
  width: var(--content-width);
  margin: 14px auto 0;
  pointer-events: none;
}

.site-header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  padding-top: 2px;
  z-index: 31;
  pointer-events: none;
}

body.header-logo-hidden .site-header-logo {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-header-logo img {
  display: block;
  width: min(360px, 42vw);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

.site-header-bar-wrap {
  position: sticky;
  top: 0;
  z-index: 30;
  width: var(--content-width);
  margin: 84px auto 0;
}

body.header-logo-hidden .site-header-bar-wrap {
  margin-top: 0;
}

.site-header-bar {
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  background: rgba(255, 252, 247, 0.72);
  box-shadow: 0 12px 28px rgba(29, 50, 59, 0.08);
  overflow: visible;
}

.site-header-spacer {
  display: block;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(255, 200, 106, 0.95), rgba(255, 124, 82, 0.94));
  color: #fffaf5;
  font-family: "Trebuchet MS", "Aptos Display", "Gill Sans MT", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-family: "Trebuchet MS", "Aptos Display", "Gill Sans MT", sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
}

.brand-copy span {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  justify-self: center;
  font-size: 18px;
  color: var(--muted);
}

.nav-link,
.nav-trigger-row,
.nav-trigger-link,
.nav-trigger-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-trigger-row {
  gap: 8px;
  cursor: pointer;
}

.nav-link::after,
.nav-trigger-row::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--winter), var(--summer));
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-dropdown:hover .nav-trigger-row::after,
.nav-dropdown:focus-within .nav-trigger-row::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  padding-bottom: 6px;
  margin-bottom: -6px;
}

.nav-trigger-link,
.nav-trigger-toggle {
  color: inherit;
  z-index: 1;
  pointer-events: auto;
}

.nav-trigger-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-caret {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 180ms ease;
}

.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret {
  transform: rotate(225deg) translateY(-1px);
}

.nav-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  min-width: 520px;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 252, 247, 0.94);
  box-shadow: 0 30px 60px rgba(21, 41, 50, 0.18);
  backdrop-filter: blur(18px);
  transform: translate(-50%, 12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.nav-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -36px;
  height: 36px;
}

.nav-panel-wide {
  min-width: 580px;
}

.nav-dropdown:hover .nav-panel,
.nav-dropdown:focus-within .nav-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-panel-column {
  display: grid;
  gap: 10px;
}

.nav-panel-label {
  margin: 0;
  padding: 0 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--winter-deep);
}

.nav-menu-item,
.nav-location-card,
.nav-location-map-item {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid rgba(27, 47, 56, 0.08);
  background: rgba(255, 255, 255, 0.82);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav-location-card {
  grid-template-columns: minmax(92px, 118px) minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.nav-location-map-item {
  grid-template-columns: minmax(0, 1fr) 104px;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 8px 16px;
}

.nav-resort-logo {
  width: 100%;
  max-width: 112px;
  max-height: 34px;
  object-fit: contain;
  object-position: left center;
}

.nav-location-copy {
  display: grid;
  gap: 4px;
}

.nav-location-copy-compact {
  gap: 0;
}

.nav-location-copy-compact strong {
  font-size: 14px;
  line-height: 1.2;
}

.nav-menu-item strong,
.nav-location-copy strong {
  font-size: 15px;
  color: var(--ink);
}

.nav-menu-item span,
.nav-location-copy span {
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}

.nav-location-copy span,
.nav-panel-column:last-child .nav-menu-item span {
  display: none;
}

.nav-panel-column:last-child .nav-menu-item,
.nav-panel-column:last-child .nav-location-map-item {
  align-content: center;
  min-height: 68px;
}

.nav-menu-item:hover,
.nav-menu-item:focus-visible,
.nav-location-card:hover,
.nav-location-card:focus-visible,
.nav-location-map-item:hover,
.nav-location-map-item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(20, 104, 95, 0.2);
  box-shadow: 0 14px 26px rgba(21, 41, 50, 0.08);
}

.nav-mini-map {
  width: 100%;
  height: 62px;
  object-fit: cover;
  object-position: center center;
  border-radius: 16px;
  border: 1px solid rgba(27, 47, 56, 0.08);
  box-shadow: 0 10px 20px rgba(21, 41, 50, 0.08);
}

.resort-emblem {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fffdf8;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.resort-emblem-msl {
  background: linear-gradient(135deg, #245f94, #4aa8ef);
}

.resort-emblem-glen {
  background: linear-gradient(135deg, #3f6e63, #8cc26c);
}

.resort-emblem-lake {
  background: linear-gradient(135deg, #5a4e8a, #8ca2f2);
}

.resort-emblem-cert {
  background: linear-gradient(135deg, #ffbf66, #ff7c52);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 13px 20px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

.header-cta,
.button-primary {
  color: #fffdfa;
  background: linear-gradient(135deg, var(--winter-deep), var(--summer-deep));
  box-shadow: 0 12px 22px rgba(20, 104, 95, 0.18);
}

.header-cta {
  justify-self: end;
}

.header-cta:hover,
.button:hover,
.header-cta:focus-visible,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-secondary,
.button-ghost,
.button-slot {
  border-color: rgba(27, 47, 56, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.button-slot[aria-disabled="true"] {
  opacity: 0.6;
  pointer-events: none;
}

.page-shell,
.site-footer {
  position: relative;
  z-index: 1;
}

.page-shell > section,
.site-footer {
  width: var(--content-width);
  margin: 12px auto 0;
}

.hero,
.section-card,
.site-footer {
  border-radius: var(--radius-xl);
}

.hero,
.section-card {
  padding: 18px;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero {
  display: grid;
  gap: 14px;
  align-items: stretch;
}

.hero-home {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
}

.hero-subpage {
  grid-template-columns: minmax(0, 1fr) 400px;
}

.hero-winter {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--winter-hero-gap);
}

.hero-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  gap: 16px;
  align-items: stretch;
}

.hero-photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-content: start;
}

.hero-photo-card {
  overflow: hidden;
}

.hero-photo-card-large {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.media-stack {
  display: grid;
  gap: 16px;
}

.media-frame,
.media-note {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(27, 47, 56, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.media-frame {
  position: relative;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame.tall {
  min-height: 540px;
}

.hero-summer-photo {
  align-self: start;
  min-height: 0;
  height: auto;
}

.hero-summer-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-winter-photo {
  min-height: var(--winter-hero-image-height);
  height: var(--winter-hero-image-height);
  align-self: end;
  width: var(--winter-hero-image-width);
  flex: 0 0 auto;
  justify-self: end;
}

.hero-winter-photo img {
  object-position: var(--winter-hero-image-focus-x) var(--winter-hero-image-focus-y);
  transform: scale(var(--winter-hero-image-scale));
  transform-origin: var(--winter-hero-image-focus-x) var(--winter-hero-image-focus-y);
}

.media-frame.medium {
  min-height: 280px;
}

.image-caption {
  display: none;
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  margin: 0;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 252, 247, 0.9);
  backdrop-filter: blur(10px);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.5;
}

.media-note {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(122, 183, 255, 0.12), rgba(29, 163, 139, 0.08)),
    rgba(255, 255, 255, 0.86);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: clamp(0.95rem, 0.4vw + 0.82rem, 1.06rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--winter-deep);
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.gateway-card h3,
.detail-card h3,
.pricing-card h3,
.booking-card h3,
.media-note h3,
.site-footer h2 {
  font-family: "Trebuchet MS", "Aptos Display", "Gill Sans MT", sans-serif;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-copy {
  display: grid;
  align-content: start;
  min-width: 0;
  width: var(--winter-hero-text-width);
  max-width: 100%;
  flex: 0 0 auto;
}

.hero-text,
.body-copy,
.section-heading p,
.gateway-card p,
.detail-card p,
.pricing-card p,
.booking-card p,
.site-footer p,
.season-summary,
.location-card p,
.media-note p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.hero-text {
  margin: 12px 0 0;
  max-width: none;
  font-size: 16px;
}

.hero-text-support {
  margin-top: 8px;
}

.trust-band,
.gateway-grid,
.detail-grid,
.pricing-grid,
.booking-grid {
  display: grid;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 0;
}

.hero-bullets {
  margin: 12px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.hero-bullets-wide {
  max-width: none;
  width: 100%;
}

.hero-section-label {
  margin-top: 14px;
}

.hero-photo-card-summer img {
  object-position: center 68%;
}

.hero-bullets strong {
  color: var(--ink);
}

.hero-pills span,
.mini-badges span,
.card-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(27, 47, 56, 0.08);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  white-space: nowrap;
}

.card-kicker {
  margin-bottom: 14px;
  color: var(--summer-deep);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.hero-season-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  max-width: 100%;
  white-space: nowrap;
}

.trust-band {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(27, 47, 56, 0.08);
  box-shadow: 0 12px 28px rgba(29, 50, 59, 0.06);
}

.trust-item {
  padding: 10px 16px;
  border-left: 1px solid rgba(27, 47, 56, 0.08);
}

.trust-item:first-child {
  border-left: none;
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.trust-item span {
  color: var(--muted);
  font-size: 13px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 0;
  max-width: 72ch;
}

.section-heading-wide {
  max-width: none;
}

.gateway-grid,
.detail-grid,
.pricing-grid,
.booking-grid {
  gap: 8px;
  margin-top: 14px;
}

.gateway-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-grid,
.pricing-grid,
.booking-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.certification-layout {
  display: grid;
  gap: 14px;
}

.certification-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
}

.certification-mark {
  justify-self: end;
  width: min(220px, 24vw);
  padding-top: 6px;
}

.certification-mark img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.certification-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.certification-card {
  height: 100%;
}

.gateway-card,
.detail-card,
.pricing-card,
.booking-card {
  padding: 14px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(27, 47, 56, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.gateway-card,
.booking-card {
  position: relative;
}

.gateway-card h3,
.detail-card h3,
.pricing-card h3,
.booking-card h3,
.media-note h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.card-image {
  width: calc(100% + 28px);
  height: 220px;
  margin: -14px -14px 10px;
  object-fit: cover;
  border-radius: 26px 26px 0 0;
}

.gateway-card-accent {
  grid-column: 1 / -1;
  background:
    linear-gradient(180deg, rgba(122, 183, 255, 0.14), rgba(29, 163, 139, 0.1)),
    rgba(255, 255, 255, 0.84);
}

.gateway-card {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.gateway-card:hover,
.gateway-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(21, 41, 50, 0.14);
}

.feature-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.gateway-card .button,
.detail-card .button,
.pricing-card .button,
.booking-card .button {
  margin-top: 10px;
}

.season-link-list {
  margin-top: 10px;
  display: grid;
  gap: 6px;
}

.season-link-list a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(27, 47, 56, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.season-link-list a::after {
  content: ">";
  color: var(--summer-deep);
  font-weight: 900;
}

.season-link-list a:hover,
.season-link-list a:focus-visible {
  transform: translateX(4px);
  border-color: rgba(20, 104, 95, 0.2);
  background: rgba(255, 255, 255, 0.92);
}

.season-link-list-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-column-layout,
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 12px;
  align-items: stretch;
}

.editorial-section {
  padding: 22px 18px;
  border-radius: var(--radius-xl);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 14px;
  align-items: center;
}

.editorial-grid-reverse {
  grid-template-columns: minmax(320px, 0.98fr) minmax(0, 1.02fr);
}

.editorial-grid-text {
  grid-template-columns: minmax(0, 1fr);
}

.editorial-copy {
  max-width: 60ch;
}

.editorial-section-narrow {
  padding: 22px 18px;
}

.editorial-centered {
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  gap: 0;
}

.editorial-centered .eyebrow,
.editorial-centered h2 {
  text-align: left;
}

.editorial-centered h2 {
  max-width: 28ch;
  margin-left: 0;
  margin-right: 0;
}

.editorial-centered-full h2,
.editorial-centered-full .editorial-intro,
.editorial-centered-full .editorial-bullet-list {
  max-width: none;
  width: 100%;
}

.editorial-intro {
  max-width: 92ch;
  margin: 10px 0 0;
  text-align: left;
}

.editorial-bullet-list {
  max-width: 96ch;
  margin: 14px 0 0;
  display: grid;
  gap: 8px;
}

.editorial-copy h2 {
  margin: 0;
  font-family: "Trebuchet MS", "Aptos Display", "Gill Sans MT", sans-serif;
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.editorial-copy .body-copy {
  margin: 10px 0 0;
  font-size: 16px;
}

.story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 13px;
}

.story-link-list {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

.story-link-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding-bottom: 4px;
  color: var(--ink);
  font-weight: 700;
  border-bottom: 1px solid rgba(27, 47, 56, 0.14);
}

.story-link-list a::after {
  content: ">";
  color: var(--summer-deep);
  font-weight: 900;
}

.location-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 13px;
}

.location-columns h3 {
  margin: 0 0 6px;
  font-family: "Trebuchet MS", "Aptos Display", "Gill Sans MT", sans-serif;
  font-size: 18px;
}

.plain-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.credential-list {
  margin-top: 11px;
  max-width: 54ch;
}

.narrative-bullet-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 74ch;
}

.narrative-bullet-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.narrative-bullet-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--winter-deep);
  font-size: 18px;
  line-height: 1.4;
}

.narrative-bullet-list strong {
  color: var(--ink);
}

.hero-narrative-list {
  margin-top: 12px;
  max-width: 68ch;
}

.narrative-bullet-list-wide {
  max-width: none;
}

.location-bullet-list li {
  padding-left: 26px;
  max-width: 92ch;
}

.location-bullet-list li p {
  margin: 4px 0 0;
  color: var(--muted);
}

.location-inline-address {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-weight: 600;
}

.location-title-link {
  display: inline-block;
  position: relative;
  z-index: 2;
  pointer-events: auto;
  text-decoration: none;
  border-bottom: 1px solid rgba(27, 47, 56, 0.18);
}

.location-title-link:hover,
.location-title-link:focus-visible {
  color: var(--summer-deep);
  border-bottom-color: rgba(20, 104, 95, 0.4);
}

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

.summer-locations-layout .media-frame {
  display: none;
}

.lesson-guide-list {
  gap: 12px;
  width: 100%;
  max-width: none;
}

.lesson-guide-list li {
  max-width: none;
}

.narrative-bullet-list li::before {
  content: "\2022";
}

.editorial-cta {
  background:
    linear-gradient(135deg, rgba(122, 183, 255, 0.12), rgba(29, 163, 139, 0.08)),
    rgba(255, 252, 247, 0.9);
}

.detail-grid-tight {
  margin-top: 11px;
}

.mini-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.pricing-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price {
  display: block;
  margin-top: 16px;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.price-note {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

.card-image-experience {
  object-position: center 62%;
}

.card-image-smallgroup {
  object-position: center 84%;
}

.card-image-tour {
  object-position: center 46%;
}

.season-toggle {
  display: inline-flex;
  gap: 8px;
  margin-top: 12px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(27, 47, 56, 0.08);
}

.season-switch {
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
}

.season-switch.is-active {
  background: linear-gradient(135deg, rgba(15, 79, 130, 0.96), rgba(20, 104, 95, 0.94));
  color: #fff;
}

.season-summary {
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(27, 47, 56, 0.08);
}

.section-card-booking {
  padding: 22px 18px;
}

.booking-heading-wide,
.booking-heading-wide h2,
.booking-heading-wide .body-copy,
.booking-heading-wide .season-summary,
.booking-heading-wide .season-summary-plain {
  max-width: none;
  width: 100%;
}

.season-summary-plain {
  margin-top: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.booking-shell {
  margin-top: 22px;
}

.booking-panel {
  display: none;
  gap: 16px;
}

.booking-panel.is-visible {
  display: grid;
}

.booking-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: start;
}

.booking-panel-grid-winter {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 18px;
}

.booking-panel-grid-summer {
  grid-template-columns: 1fr;
  gap: 18px;
}

.contact-stack {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.contact-stack a,
.contact-stack span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(27, 47, 56, 0.08);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(27, 47, 56, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.booking-form-winter {
  background:
    linear-gradient(180deg, rgba(122, 183, 255, 0.08), rgba(255, 255, 255, 0.94)),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 30px rgba(21, 41, 50, 0.08);
}

.booking-form-head {
  display: grid;
  gap: 6px;
  margin-bottom: 4px;
}

.booking-form-head h3 {
  margin: 0;
}

.booking-helper {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  border: 1px solid rgba(27, 47, 56, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(122, 183, 255, 0.36);
  border-color: rgba(20, 104, 95, 0.5);
}

.full-width {
  grid-column: 1 / -1;
}

.booking-form-foot {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.booking-form-foot .button {
  margin-top: 0;
}

.booking-reassurance {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.booking-contact-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(122, 183, 255, 0.08), rgba(255, 255, 255, 0.94)),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 30px rgba(21, 41, 50, 0.08);
}

.booking-card-summer-locations {
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(29, 163, 139, 0.07), rgba(255, 255, 255, 0.94)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 30px rgba(21, 41, 50, 0.08);
}

.booking-contact-card-summer {
  background:
    linear-gradient(180deg, rgba(29, 163, 139, 0.08), rgba(255, 255, 255, 0.95)),
    rgba(255, 255, 255, 0.9);
}

.booking-contact-grid-summer {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(220px, 0.92fr);
  gap: 18px;
  align-items: start;
}

.booking-support-copy,
.booking-support-side {
  display: grid;
  gap: 14px;
  align-content: start;
}

.booking-side-intro,
.booking-footnote {
  margin: 0;
}

.contact-method-list {
  display: grid;
  gap: 12px;
}

.contact-method {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(27, 47, 56, 0.08);
}

.contact-method:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-method-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--winter-deep);
}

.contact-method a,
.contact-method strong {
  color: var(--ink);
  font-weight: 700;
}

.contact-method p {
  margin: 0;
}

.booking-qr-card {
  width: min(220px, 100%);
  margin: 0;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(27, 47, 56, 0.08);
  box-shadow: 0 12px 24px rgba(21, 41, 50, 0.1);
}

.booking-qr-card img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.booking-qr-card figcaption {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.booking-note-box {
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(27, 47, 56, 0.08);
  background:
    linear-gradient(180deg, rgba(122, 183, 255, 0.1), rgba(255, 255, 255, 0.95)),
    rgba(255, 255, 255, 0.92);
}

.booking-note-title {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--winter-deep);
}

.feature-list-compact {
  margin: 0;
  padding-left: 18px;
}

.feature-list-compact li + li {
  margin-top: 4px;
}

.location-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.summer-location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.location-card {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(27, 47, 56, 0.08);
  background: rgba(255, 255, 255, 0.76);
}

.location-card-summer {
  display: grid;
  align-content: start;
  gap: 0;
  min-height: 100%;
}

.location-card h4 {
  margin: 0;
  font-size: 20px;
}

.location-card p {
  margin: 10px 0 0;
}

.location-card .location-address {
  margin-top: 8px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.6;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.map-note {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(27, 47, 56, 0.06);
  color: var(--muted);
  font-weight: 700;
}

.resort-grid {
  display: grid;
  gap: 8px;
  margin-top: 11px;
}

.resort-sheet {
  margin-top: 11px;
  border-radius: 26px;
  border: 1px solid rgba(27, 47, 56, 0.08);
  background: rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.resort-line {
  display: grid;
  grid-template-columns: minmax(170px, 210px) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 18px 22px;
}

.resort-line + .resort-line {
  border-top: 1px solid rgba(27, 47, 56, 0.08);
}

.resort-card {
  display: grid;
  grid-template-columns: minmax(140px, 168px) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 24px;
  border: 1px solid rgba(27, 47, 56, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.resort-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 44px;
}

.resort-logo-wrap-centered {
  justify-content: center;
}

.resort-logo {
  width: 100%;
  max-width: 160px;
  max-height: 50px;
  object-fit: contain;
  object-position: left center;
}

.resort-logo-wrap-centered .resort-logo {
  object-position: center center;
}

.resort-logo-glen {
  max-width: 124px;
}

.resort-logo-lakeridge {
  max-width: 150px;
}

.resort-copy h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.12;
}

.resort-copy p {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.resort-address {
  font-weight: 600;
  color: var(--ink);
}

.winter-credibility {
  margin-top: 13px;
  padding-top: 11px;
  border-top: 1px solid rgba(27, 47, 56, 0.1);
}

.credential-list-plain {
  margin-top: 6px;
  padding-left: 20px;
  max-width: none;
}

.split-layout-map {
  grid-template-columns: minmax(0, 1fr) 520px;
  align-items: start;
}

.winter-map-frame,
.home-map-frame {
  min-height: 420px;
  display: flex;
  align-items: stretch;
  padding: 8px;
  background:
    linear-gradient(180deg, rgba(122, 183, 255, 0.12), rgba(255, 255, 255, 0.94)),
    rgba(255, 255, 255, 0.86);
}

.winter-map-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-map-frame {
  background-image: url("./assets/gta-program-map-home.png"), linear-gradient(180deg, rgba(122, 183, 255, 0.12), rgba(255, 255, 255, 0.94));
  background-repeat: no-repeat, no-repeat;
  background-position: center center, center center;
  background-size: calc(100% - 16px) calc(100% - 16px), cover;
}

.home-map-frame img {
  display: none;
}

.winter-rate-table-wrap {
  margin-top: 10px;
  width: 100%;
  border-radius: 26px;
  border: 1px solid rgba(27, 47, 56, 0.09);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 28px rgba(29, 50, 59, 0.05);
  overflow-x: auto;
}

.winter-rate-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.winter-rate-table thead th {
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(62, 128, 203, 0.16), rgba(62, 128, 203, 0.08));
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: left;
}

.winter-rate-table tbody th,
.winter-rate-table tbody td {
  padding: 18px;
  border-top: 1px solid rgba(27, 47, 56, 0.08);
  vertical-align: top;
  text-align: left;
  font-size: 15px;
  line-height: 1.55;
}

.winter-rate-table tbody th {
  font-size: 20px;
  line-height: 1.1;
  color: var(--ink);
  font-family: "Trebuchet MS", "Aptos Display", "Gill Sans MT", sans-serif;
  letter-spacing: -0.03em;
}

.winter-rate-table tbody td:last-child {
  color: var(--muted);
}

.rate-cell-strong {
  display: inline-block;
  font-size: 21px;
  line-height: 1.05;
  font-weight: 800;
  color: var(--ink);
}

.winter-rate-footnotes {
  margin-top: 10px;
  display: grid;
  gap: 3px;
}

.winter-rate-footnote {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.winter-rate-cards {
  display: none;
}

.winter-rate-card {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(27, 47, 56, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 28px rgba(29, 50, 59, 0.05);
}

.winter-rate-card + .winter-rate-card {
  margin-top: 12px;
}

.winter-rate-card-title {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.winter-rate-card-grid {
  display: grid;
  gap: 10px;
}

.winter-rate-card-item,
.winter-rate-card-note {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(242, 247, 251, 0.82);
}

.winter-rate-card-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--winter-deep);
}

.winter-rate-card-value {
  font-size: 20px;
  line-height: 1.05;
  color: var(--ink);
}

.winter-rate-card-copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}

section[id],
article[id],
div[id] {
  scroll-margin-top: 132px;
}

.site-footer {
  margin-bottom: 40px;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  background: rgba(27, 47, 56, 0.94);
  color: #f7f4ef;
  box-shadow: var(--shadow);
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-contact-wrap {
  display: grid;
  grid-template-columns: 148px auto;
  gap: 22px;
  align-items: center;
}

.footer-qr {
  width: 148px;
  margin: 0;
  padding: 10px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 26px rgba(12, 23, 29, 0.24);
}

.footer-qr img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.footer-links {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.9);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-enhanced .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 540ms ease, transform 540ms ease;
}

.js-enhanced .reveal.is-revealed {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .site-header {
    width: min(1180px, calc(100vw - 24px));
    gap: 8px;
  }

  .site-header-logo img {
    width: min(300px, 70vw);
  }

  .site-header {
    pointer-events: auto;
  }

  .site-header-logo {
    position: static;
    transform: none;
    width: 100%;
  }

  .site-header-bar-wrap {
    position: static;
    width: var(--content-width);
    margin: 12px auto 0;
  }

  .site-header-bar {
    display: none;
  }

  .site-nav {
    display: none;
  }

  .hero-home,
  .hero-subpage,
  .hero-visual-grid,
  .editorial-grid,
  .editorial-grid-reverse,
  .two-column-layout,
  .split-layout,
  .certification-header,
  .certification-card-grid,
  .booking-panel-grid,
  .booking-panel-grid-summer,
  .footer-contact-wrap,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-winter {
    display: grid;
  }

  .hero-copy,
  .hero-winter-photo {
    width: 100%;
    flex: initial;
  }

  .gateway-grid,
  .pricing-grid.three-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .season-link-list-compact {
    grid-template-columns: 1fr;
  }

  .hero-winter-photo {
    min-height: auto;
    height: auto;
    align-self: stretch;
  }
}

@media (max-width: 760px) {
  :root {
    --content-width: calc(100vw - 24px);
  }

  .site-header {
    margin-top: 10px;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .section-card,
  .site-footer {
    padding: 22px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .gateway-grid,
  .detail-grid,
  .pricing-grid,
  .booking-grid,
  .summer-location-grid,
  .trust-band,
  .location-columns,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-contact-grid-summer {
    grid-template-columns: 1fr;
  }

  .gateway-card-accent {
    grid-column: auto;
  }

  .resort-card {
    grid-template-columns: 1fr;
  }

  .resort-line {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .editorial-section {
    padding: 28px 22px;
  }

  .footer-qr {
    width: 140px;
  }

  .hero-season-note {
    white-space: normal;
  }

  .certification-mark {
    justify-self: start;
    width: min(200px, 54vw);
  }

  .card-image {
    width: calc(100% + 44px);
    margin: -22px -22px 18px;
  }

  .trust-item {
    border-left: none;
    border-top: 1px solid rgba(27, 47, 56, 0.08);
  }

  .trust-item:first-child {
    border-top: none;
  }
}

:root {
  --page-background:
    radial-gradient(circle at 10% 18%, rgba(255, 200, 106, 0.22), transparent 18%),
    radial-gradient(circle at 85% 14%, rgba(122, 183, 255, 0.22), transparent 20%),
    linear-gradient(180deg, #fbf8f2 0%, #f2f7fb 52%, #eef7f1 100%);
}

body {
  background: var(--page-background);
}

.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(27, 47, 56, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  box-shadow: 0 10px 20px rgba(21, 41, 50, 0.08);
  cursor: pointer;
}

.mobile-nav-toggle-line {
  display: block;
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(18, 31, 39, 0.28);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.mobile-nav-drawer {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 71;
  width: min(360px, calc(100vw - 24px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  padding: 20px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 252, 247, 0.96);
  box-shadow: 0 28px 60px rgba(21, 41, 50, 0.2);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.mobile-nav-header {
  display: grid;
  gap: 6px;
}

.mobile-nav-kicker,
.mobile-nav-block-label {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--winter-deep);
}

.mobile-nav-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.mobile-nav-close {
  justify-self: start;
  margin-top: 4px;
  padding: 10px 14px;
  border: 1px solid rgba(27, 47, 56, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  cursor: pointer;
}

.mobile-nav-block + .mobile-nav-block {
  margin-top: 18px;
}

.mobile-nav-links {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(27, 47, 56, 0.08);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.4;
}

.mobile-nav-link::after {
  content: ">";
  color: var(--muted);
  font-size: 15px;
}

body.mobile-nav-open {
  overflow: hidden;
}

body.is-mobile-layout {
  --content-width: calc(100vw - 24px);
}

body.is-mobile-layout .page-glow {
  filter: blur(72px);
}

body.is-mobile-layout .glow-winter {
  width: 250px;
  height: 250px;
  top: 70px;
  right: -80px;
}

body.is-mobile-layout .glow-summer {
  width: 220px;
  height: 220px;
  bottom: 110px;
  left: -90px;
}

body.is-mobile-layout .site-header {
  position: sticky;
  top: 8px;
  z-index: 72;
  margin-top: 10px;
  margin-bottom: 8px;
  width: var(--content-width);
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 252, 247, 0.84);
  box-shadow: 0 10px 22px rgba(21, 41, 50, 0.08);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

body.is-mobile-layout .site-header::before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
}

body.is-mobile-layout .site-header-logo {
  grid-column: 2;
  position: static;
  transform: none;
  width: 100%;
  justify-content: center;
  pointer-events: auto;
}

body.is-mobile-layout .site-header-logo img {
  width: min(166px, 50vw);
  pointer-events: auto;
}

body.is-mobile-layout .mobile-nav-toggle {
  display: inline-flex;
  grid-column: 3;
  justify-self: end;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border-width: 0.8px;
  box-shadow: 0 4px 8px rgba(21, 41, 50, 0.05);
}

body.is-mobile-layout .site-header-bar-wrap,
body.is-mobile-layout .site-header-bar,
body.is-mobile-layout .site-nav,
body.is-mobile-layout .header-cta,
body.is-mobile-layout .site-header-spacer {
  display: none;
}

body.is-mobile-layout .page-shell > section,
body.is-mobile-layout .site-footer {
  width: var(--content-width);
}

body.is-mobile-layout .hero,
body.is-mobile-layout .section-card,
body.is-mobile-layout .site-footer {
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 5px 12px rgba(21, 41, 50, 0.05);
}

body.is-mobile-layout .hero-home,
body.is-mobile-layout .hero-subpage,
body.is-mobile-layout .hero-visual-grid,
body.is-mobile-layout .editorial-grid,
body.is-mobile-layout .editorial-grid-reverse,
body.is-mobile-layout .two-column-layout,
body.is-mobile-layout .split-layout,
body.is-mobile-layout .certification-header,
body.is-mobile-layout .certification-card-grid,
body.is-mobile-layout .booking-panel-grid,
body.is-mobile-layout .booking-panel-grid-winter,
body.is-mobile-layout .booking-panel-grid-summer,
body.is-mobile-layout .detail-grid,
body.is-mobile-layout .pricing-grid,
body.is-mobile-layout .booking-grid,
body.is-mobile-layout .summer-location-grid,
body.is-mobile-layout .gateway-grid,
body.is-mobile-layout .trust-band,
body.is-mobile-layout .location-columns,
body.is-mobile-layout .booking-form,
body.is-mobile-layout .booking-contact-grid-summer,
body.is-mobile-layout .footer-contact-wrap,
body.is-mobile-layout .site-footer,
body.is-mobile-layout .resort-card,
body.is-mobile-layout .resort-line {
  grid-template-columns: 1fr;
  gap: 4px;
}

body.is-mobile-layout .hero {
  gap: 6px;
}

body.is-mobile-layout .hero-copy,
body.is-mobile-layout .editorial-copy,
body.is-mobile-layout .editorial-centered,
body.is-mobile-layout .booking-support-copy,
body.is-mobile-layout .booking-support-side {
  max-width: none;
  width: 100%;
}

body.is-mobile-layout .hero-photo-grid,
body.is-mobile-layout .season-link-list,
body.is-mobile-layout .season-link-list-compact {
  grid-template-columns: 1fr;
  gap: 4px;
}

body.is-mobile-layout .hero-photo-card img,
body.is-mobile-layout .media-frame img,
body.is-mobile-layout .card-image img {
  object-fit: cover;
  transform: scale(0.96) !important;
  transform-origin: center center !important;
}

body.is-mobile-layout .hero h1 {
  font-size: clamp(1.7rem, 6.8vw, 2.1rem) !important;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

body.is-mobile-layout .hero h2,
body.is-mobile-layout .editorial-copy h2,
body.is-mobile-layout .editorial-centered h2,
body.is-mobile-layout .section-heading h2,
body.is-mobile-layout .split-layout h2,
body.is-mobile-layout .booking-card h2 {
  font-size: clamp(1.12rem, 4.8vw, 1.42rem) !important;
  line-height: 1.16;
}

body.is-mobile-layout .site-footer h2,
body.is-mobile-layout .booking-card h3,
body.is-mobile-layout .detail-card h3,
body.is-mobile-layout .gateway-card h3,
body.is-mobile-layout .pricing-card h3,
body.is-mobile-layout .location-card h3,
body.is-mobile-layout .media-note h3,
body.is-mobile-layout .location-columns h3 {
  font-size: 14px !important;
  line-height: 1.22;
}

body.is-mobile-layout .eyebrow,
body.is-mobile-layout .card-kicker,
body.is-mobile-layout .nav-panel-label,
body.is-mobile-layout .contact-method-label {
  font-size: 9px !important;
  letter-spacing: 0.16em;
}

body.is-mobile-layout .hero p,
body.is-mobile-layout .hero li,
body.is-mobile-layout .section-card p,
body.is-mobile-layout .section-card li,
body.is-mobile-layout .site-footer p,
body.is-mobile-layout .site-footer a,
body.is-mobile-layout .booking-card p,
body.is-mobile-layout .booking-card li,
body.is-mobile-layout .editorial-copy p,
body.is-mobile-layout .editorial-copy li,
body.is-mobile-layout .editorial-centered p,
body.is-mobile-layout .editorial-centered li,
body.is-mobile-layout .story-link-list a,
body.is-mobile-layout .narrative-bullet-list li,
body.is-mobile-layout .plain-list li,
body.is-mobile-layout .feature-list li,
body.is-mobile-layout .contact-method p,
body.is-mobile-layout .contact-method a,
body.is-mobile-layout .location-inline-address {
  font-size: 11px !important;
  line-height: 1.38;
}

body.is-mobile-layout .price,
body.is-mobile-layout .rate-cell-strong {
  font-size: 15px !important;
}

body.is-mobile-layout .image-caption,
body.is-mobile-layout .price-note,
body.is-mobile-layout .hero-season-note {
  font-size: 10px !important;
  line-height: 1.32;
}

body.is-mobile-layout .hero-bullets {
  gap: 3px;
  padding-left: 12px;
  margin-top: 4px;
}

body.is-mobile-layout .hero-actions,
body.is-mobile-layout .location-actions {
  flex-direction: column;
  gap: 4px;
}

body.is-mobile-layout .hero-actions .button,
body.is-mobile-layout .location-actions .button,
body.is-mobile-layout .booking-form-foot .button {
  width: 100%;
}

body.is-mobile-layout .button,
body.is-mobile-layout .header-cta {
  min-height: 24px;
  padding: 4px 7px;
  border-radius: 8px;
  font-size: 10px;
  line-height: 1.1;
  white-space: normal;
  box-shadow: 0 2px 5px rgba(21, 41, 50, 0.04);
}

body.is-mobile-layout .editorial-section {
  padding: 10px;
}

body.is-mobile-layout .gateway-grid,
body.is-mobile-layout .pricing-grid.three-up {
  grid-template-columns: 1fr;
}

body.is-mobile-layout .hero-season-note {
  white-space: normal;
}

body.is-mobile-layout .booking-card-summer-locations,
body.is-mobile-layout .booking-card {
  padding: 8px;
}

body.is-mobile-layout .section-heading {
  gap: 2px;
}

body.is-mobile-layout .feature-list,
body.is-mobile-layout .plain-list,
body.is-mobile-layout .narrative-bullet-list {
  gap: 4px;
}

body.is-mobile-layout .feature-list,
body.is-mobile-layout .plain-list {
  padding-left: 12px;
}

body.is-mobile-layout .story-link-list {
  gap: 2px;
  margin-top: 4px;
}

body.is-mobile-layout .story-link-list a {
  padding-bottom: 2px;
}

body.is-mobile-layout .certification-mark {
  display: none;
}

body.is-mobile-layout .media-frame,
body.is-mobile-layout .hero-photo-card,
body.is-mobile-layout .hero-winter-photo {
  min-height: 0 !important;
  aspect-ratio: 6 / 5;
  border-radius: 10px;
  border-width: 0.8px;
  box-shadow: 0 4px 10px rgba(21, 41, 50, 0.04);
}

body.is-mobile-layout .media-frame.tall,
body.is-mobile-layout .media-frame.medium,
body.is-mobile-layout .hero-summer-photo,
body.is-mobile-layout .hero-photo-card-large,
body.is-mobile-layout .home-map-frame {
  min-height: 0 !important;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
}

body.is-mobile-layout .winter-rate-table-wrap {
  display: none;
}

body.is-mobile-layout .winter-rate-cards {
  display: grid;
  gap: 6px;
  margin-top: 6px;
}

body.is-mobile-layout .winter-rate-card {
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(21, 41, 50, 0.04);
}

body.is-mobile-layout .winter-rate-card + .winter-rate-card {
  margin-top: 0;
}

body.is-mobile-layout .winter-rate-card-title {
  margin-bottom: 6px;
  font-size: 16px;
}

body.is-mobile-layout .winter-rate-card-grid {
  gap: 4px;
}

body.is-mobile-layout .winter-rate-card-item,
body.is-mobile-layout .winter-rate-card-note {
  gap: 2px;
  padding: 7px 8px;
  border-radius: 8px;
}

body.is-mobile-layout .winter-rate-card-label {
  font-size: 8px;
}

body.is-mobile-layout .winter-rate-card-value {
  font-size: 13px;
}

body.is-mobile-layout .winter-rate-card-copy {
  font-size: 10px;
  line-height: 1.35;
}

body.is-mobile-layout .winter-rate-footnotes {
  gap: 2px;
  margin-top: 6px;
}

body.is-mobile-layout .winter-rate-footnote {
  font-size: 10px !important;
  line-height: 1.35;
}

body.is-mobile-layout .hero-home {
  align-items: start;
}

body.is-mobile-layout .hero-home .eyebrow {
  max-width: none;
  white-space: normal;
  overflow-wrap: anywhere;
}

body.is-mobile-layout .hero-home h1 {
  max-width: 8.5ch;
}

body.is-mobile-layout .hero-home .hero-text,
body.is-mobile-layout .hero-home .hero-text-support,
body.is-mobile-layout .hero-home .hero-bullets,
body.is-mobile-layout .hero-home .hero-season-note {
  max-width: none;
}

body.is-mobile-layout .hero-home .hero-actions {
  margin-top: 1px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
}

body.is-mobile-layout .hero-home .button {
  width: 100%;
}

body.is-mobile-layout .booking-form {
  gap: 5px;
  padding: 9px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(21, 41, 50, 0.04);
}

body.is-mobile-layout .booking-form-head {
  gap: 2px;
  margin-bottom: 0;
}

body.is-mobile-layout .booking-form-head h3,
body.is-mobile-layout .booking-contact-card h3,
body.is-mobile-layout .booking-heading h2 {
  max-width: 18ch;
  text-wrap: balance;
}

body.is-mobile-layout .booking-form label {
  gap: 2px;
  font-size: 11px;
}

body.is-mobile-layout .booking-form input,
body.is-mobile-layout .booking-form select,
body.is-mobile-layout .booking-form textarea {
  padding: 5px 8px;
  border-radius: 8px;
  border-width: 0.8px;
  font-size: 11px;
}

body.is-mobile-layout .booking-form textarea {
  min-height: 56px;
}

body.is-mobile-layout .booking-form-foot {
  gap: 4px;
}

body.is-mobile-layout .booking-helper,
body.is-mobile-layout .booking-reassurance {
  font-size: 10px !important;
  line-height: 1.3;
}

body.is-mobile-layout .field-label-text {
  display: inline-block;
}

body.is-mobile-layout .booking-form.is-mobile-simplified .booking-helper,
body.is-mobile-layout .booking-form.is-mobile-simplified .booking-reassurance {
  display: none;
}

body.is-mobile-layout .booking-form.is-mobile-simplified .booking-form-head h3 {
  max-width: 18ch;
}

body.is-mobile-layout .booking-form.is-mobile-simplified .booking-form-foot {
  justify-items: stretch;
}

body.is-mobile-layout .footer-contact-wrap {
  gap: 8px;
}

body.is-mobile-layout .footer-qr {
  width: 72px;
  padding: 4px;
  border-radius: 10px;
}

body.is-mobile-layout .card-image {
  width: calc(100% + 16px);
  height: 112px;
  margin: -8px -8px 6px;
  object-fit: cover;
  object-position: center center;
  transform: scale(0.96) !important;
  border-radius: 10px 10px 0 0;
}

body.is-mobile-layout .booking-card,
body.is-mobile-layout .booking-card-summer-locations,
body.is-mobile-layout .pricing-card,
body.is-mobile-layout .detail-card,
body.is-mobile-layout .gateway-card,
body.is-mobile-layout .location-card,
body.is-mobile-layout .resort-sheet,
body.is-mobile-layout .booking-qr-card,
body.is-mobile-layout .footer-qr {
  border-radius: 10px;
  border-width: 0.8px;
  box-shadow: 0 4px 10px rgba(21, 41, 50, 0.04);
}

body.is-mobile-layout .booking-contact-card-summer .booking-contact-grid-summer {
  gap: 6px;
}

body.is-mobile-layout .booking-contact-card-summer .booking-support-side {
  gap: 4px;
  justify-items: start;
}

body.is-mobile-layout .booking-contact-card-summer .booking-qr-card {
  width: min(88px, 34vw);
  padding: 4px;
  border-radius: 8px;
}

body.is-mobile-layout .booking-contact-card-summer .booking-qr-card img {
  border-radius: 5px;
}

body.is-mobile-layout .booking-contact-card-summer .booking-qr-card figcaption {
  margin-top: 3px;
  font-size: 8px;
  line-height: 1.15;
}

body.is-mobile-layout .booking-panel[data-panel="winter"] .booking-contact-card .booking-qr-card {
  width: min(88px, 34vw);
  padding: 4px;
  border-radius: 8px;
}

body.is-mobile-layout .booking-panel[data-panel="winter"] .booking-contact-card .booking-qr-card img {
  border-radius: 5px;
}

body.is-mobile-layout .booking-panel[data-panel="winter"] .booking-contact-card .booking-qr-card figcaption {
  margin-top: 3px;
  font-size: 8px;
  line-height: 1.15;
}

body.is-mobile-layout .trust-item {
  border-left: none;
  border-top: 1px solid rgba(27, 47, 56, 0.08);
}

body.is-mobile-layout .trust-item:first-child {
  border-top: none;
}

body.is-mobile-layout .resort-line {
  gap: 14px;
  text-align: center;
}

body.is-mobile-layout #winter-locations .split-layout-map {
  gap: 6px;
}

body.is-mobile-layout #winter-locations .split-layout-map > div {
  display: grid;
  gap: 4px;
}

body.is-mobile-layout #winter-locations .eyebrow {
  margin-bottom: 0;
}

body.is-mobile-layout #winter-locations h2 {
  margin-bottom: 0;
}

body.is-mobile-layout #winter-locations .body-copy {
  margin: 0;
  font-size: 10px !important;
  line-height: 1.28;
}

body.is-mobile-layout #winter-locations .resort-sheet {
  margin-top: 2px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  height: min(27vh, 210px);
  border-radius: 10px;
  align-items: stretch;
}

body.is-mobile-layout #winter-locations .resort-line {
  grid-template-columns: 1fr !important;
  gap: 3px !important;
  align-content: center;
  justify-items: center;
  padding: 5px 3px;
  min-height: 0;
  border-radius: 8px;
  background: rgba(247, 250, 252, 0.92);
  text-align: center;
}

body.is-mobile-layout #winter-locations .resort-line + .resort-line {
  border-top: none;
}

body.is-mobile-layout #winter-locations .resort-logo-wrap,
body.is-mobile-layout #winter-locations .resort-logo-wrap-centered {
  min-height: 24px;
  justify-content: center;
}

body.is-mobile-layout #winter-locations .resort-logo {
  max-width: 54px;
  max-height: 20px;
  width: auto;
  object-position: center center;
  transform: scale(0.88) !important;
}

body.is-mobile-layout #winter-locations .resort-logo-glen {
  max-width: 48px;
}

body.is-mobile-layout #winter-locations .resort-logo-lakeridge {
  max-width: 50px;
}

body.is-mobile-layout #winter-locations .resort-copy h3 {
  font-size: 9px !important;
  line-height: 1.12;
}

body.is-mobile-layout #winter-locations .resort-copy p,
body.is-mobile-layout #winter-locations .resort-address {
  margin-top: 1px;
  font-size: 8px !important;
  line-height: 1.18;
}

body.is-mobile-layout #winter-locations .winter-map-frame {
  min-height: 0 !important;
  height: min(27vh, 210px);
  aspect-ratio: auto;
  border-radius: 10px;
}

body.is-mobile-layout #winter-locations .winter-map-frame img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(0.94) !important;
}

body.is-mobile-layout .booking-card-summer-locations .summer-location-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  margin-top: 4px;
}

body.is-mobile-layout .booking-card-summer-locations .location-card {
  padding: 7px 7px 6px;
  border-radius: 8px;
  min-height: 0;
}

body.is-mobile-layout .booking-card-summer-locations .location-card-summer {
  gap: 2px;
}

body.is-mobile-layout .booking-card-summer-locations .location-card h4 {
  margin: 0;
  font-size: 9px !important;
  line-height: 1.08;
}

body.is-mobile-layout .booking-card-summer-locations .location-card p {
  margin: 2px 0 0;
  font-size: 8px !important;
  line-height: 1.18;
}

body.is-mobile-layout .booking-card-summer-locations .location-card .location-address {
  margin-top: 2px;
  font-size: 8px !important;
  line-height: 1.16;
}

body.is-mobile-layout .booking-card-summer-locations .location-card > p:not(.location-address) {
  display: none;
}

body.is-mobile-layout .booking-card-summer-locations .location-actions {
  margin-top: 4px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
}

body.is-mobile-layout .booking-card-summer-locations .location-actions .button {
  min-height: 20px;
  padding: 3px 5px;
  font-size: 8px;
  border-radius: 7px;
}
