:root {
  --navy: #081a22;
  --navy-2: #13343d;
  --ink: #102027;
  --muted: #5c6d74;
  --glacier: #f4f7f4;
  --ice: #176f8f;
  --ice-soft: #dceff0;
  --orange: #ff6638;
  --orange-dark: #da4820;
  --pine: #245848;
  --moss: #8fa66b;
  --snow: #fbfaf6;
  --line: #d6e0de;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(8, 26, 34, 0.18);
  --shadow-strong: 0 34px 100px rgba(8, 26, 34, 0.28);
  --radius: 8px;
  --display-font: "Fraunces", Georgia, serif;
  --text-font: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--text-font);
  font-size: 18px;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbfaf6 0%, #f4f7f4 42%, #ffffff 100%);
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(255, 102, 56, 0.85);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
  color: var(--white);
}

.site-header.site-header--solid,
.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(251, 250, 246, 0.9);
  box-shadow: 0 14px 42px rgba(8, 26, 34, 0.12);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1240px, calc(100% - 36px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  position: relative;
  width: 172px;
  height: 42px;
}

.brand__logo {
  position: absolute;
  inset: 0;
  width: 172px;
  height: 42px;
  transition: opacity 160ms ease;
}

.brand__logo--dark {
  opacity: 0;
}

.brand__logo--light {
  opacity: 1;
}

.site-header.site-header--solid .brand__logo--dark,
.site-header.is-scrolled .brand__logo--dark,
.site-header.is-open .brand__logo--dark {
  opacity: 1;
}

.site-header.site-header--solid .brand__logo--light,
.site-header.is-scrolled .brand__logo--light,
.site-header.is-open .brand__logo--light {
  opacity: 0;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 820;
  font-size: 0.88rem;
}

.site-header.site-header--solid .primary-nav,
.site-header.is-scrolled .primary-nav,
.site-header.is-open .primary-nav {
  border-color: rgba(16, 32, 39, 0.08);
  background: rgba(255, 255, 255, 0.68);
}

.primary-nav a {
  border-radius: 999px;
  padding: 9px 13px;
}

.primary-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-header.site-header--solid .primary-nav a:hover,
.site-header.is-scrolled .primary-nav a:hover,
.site-header.is-open .primary-nav a:hover {
  background: var(--white);
}

.primary-nav a,
.nav-search {
  opacity: 0.92;
  transition: opacity 160ms ease, transform 160ms ease;
}

.primary-nav a:hover,
.nav-search:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.nav-search {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  position: relative;
  background: rgba(255, 255, 255, 0.09);
}

.site-header.site-header--solid .nav-search,
.site-header.is-scrolled .nav-search,
.site-header.is-open .nav-search {
  border-color: rgba(16, 32, 39, 0.14);
  background: var(--white);
}

.nav-search span,
.hero-search__icon {
  position: relative;
}

.nav-search span::before,
.hero-search__icon::before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.nav-search span::after,
.hero-search__icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  right: -4px;
  bottom: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: currentColor;
  cursor: pointer;
}

.menu-toggle__line,
.menu-toggle__line::before,
.menu-toggle__line::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 180ms ease;
  content: "";
}

.menu-toggle__line::before {
  transform: translateY(-7px);
}

.menu-toggle__line::after {
  transform: translateY(5px);
}

.hero {
  min-height: 88vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: visible;
  color: var(--white);
  background: var(--navy);
  padding: 134px 0 42px;
}

.hero__image,
.hero__shade,
.hero__topography {
  position: absolute;
  inset: 0;
}

.hero__image {
  z-index: 0;
  overflow: hidden;
}

.hero__shade,
.hero__topography {
  z-index: 0;
  pointer-events: none;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: heroDrift 18s ease-out forwards;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(6, 18, 24, 0.92), rgba(8, 26, 34, 0.58) 46%, rgba(8, 26, 34, 0.1)),
    linear-gradient(0deg, rgba(6, 18, 24, 0.78), rgba(6, 18, 24, 0.06) 52%);
}

.hero__topography {
  opacity: 0.18;
  background-image:
    linear-gradient(115deg, transparent 0 18%, rgba(255, 255, 255, 0.2) 18.1% 18.25%, transparent 18.35% 100%),
    repeating-linear-gradient(122deg, transparent 0 54px, rgba(255, 255, 255, 0.13) 55px 56px);
  transform: translate3d(0, 0, 0);
}

.hero__content {
  position: relative;
  z-index: 30;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding-bottom: 92px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #c8e8ed;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--ice);
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(3.35rem, 7.5vw, 7.6rem);
  font-weight: 850;
  line-height: 0.91;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 720px;
  margin: 26px 0 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.18rem, 2vw, 1.48rem);
  line-height: 1.55;
}

.hero-search {
  position: relative;
  z-index: 70;
  width: min(820px, 100%);
  isolation: isolate;
}

.hero-search label {
  display: block;
  margin-bottom: 12px;
  font-weight: 850;
  font-size: 1.12rem;
}

.hero-search__control {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 0;
  min-height: 82px;
  padding: 10px;
  border-radius: 7px;
  background: var(--white);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.72);
  transition: box-shadow 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.hero-search:focus-within .hero-search__control {
  border-color: rgba(46, 127, 163, 0.55);
  box-shadow: 0 28px 80px rgba(12, 31, 42, 0.2);
  transform: translateY(-1px);
}

.hero-search__icon {
  display: grid;
  place-items: center;
  color: var(--ice);
  width: 58px;
  height: 58px;
}

.hero-search input {
  min-width: 0;
  height: 58px;
  border: 0;
  color: var(--ink);
  outline: 0;
  font-size: 1.18rem;
  font-weight: 700;
}

.hero-search input::placeholder {
  color: #78909b;
}

.hero-search__control > button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border: 0;
  border-radius: 6px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  font-size: 0.98rem;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(255, 102, 56, 0.28);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.hero-search__control > button:hover,
.button:hover {
  transform: translateY(-1px);
  background: var(--orange-dark);
  box-shadow: 0 16px 38px rgba(255, 102, 56, 0.34);
}

.suggestions {
  position: absolute;
  z-index: 1000;
  top: calc(100% + 12px);
  left: 0;
  width: min(860px, calc(100vw - 36px));
  max-height: min(520px, 64vh);
  overflow: auto;
  border: 1px solid #c7d6de;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 34px 90px rgba(7, 22, 30, 0.34), 0 2px 8px rgba(7, 22, 30, 0.12);
  padding: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(46, 127, 163, 0.42) transparent;
}

.suggestions__group + .suggestions__group {
  border-top: 1px solid rgba(216, 226, 231, 0.82);
  margin-top: 10px;
  padding-top: 10px;
}

.suggestions__title {
  padding: 8px 12px 7px;
  color: #2e7fa3;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.suggestions__empty {
  display: grid;
  justify-items: start;
  gap: 3px;
  padding: 18px 14px 12px;
  text-align: left;
}

.suggestions__empty strong {
  font-size: 1rem;
}

.suggestions__empty span {
  color: var(--muted);
  font-size: 0.92rem;
}

.suggestion {
  appearance: none;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 26px;
  gap: 14px;
  align-items: center;
  justify-content: stretch;
  justify-items: stretch;
  width: 100%;
  min-height: 72px;
  padding: 11px 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: none;
  transition: background 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}

.suggestion:hover,
.suggestion.is-active {
  background: #edf7fb;
  box-shadow: inset 3px 0 0 #ff6638, 0 12px 34px rgba(12, 31, 42, 0.09);
  transform: translateY(-1px);
}

.suggestion__thumb {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(46, 127, 163, 0.96), rgba(46, 90, 74, 0.96));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 0.78rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.suggestion__content {
  min-width: 0;
  display: grid;
  justify-items: start;
  gap: 2px;
  text-align: left;
}

.suggestion__type {
  color: #2e7fa3;
  font-size: 0.69rem;
  font-weight: 900;
  text-transform: uppercase;
}

.suggestion strong {
  display: block;
  width: 100%;
  overflow: hidden;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.22;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.suggestion__content > span:last-child {
  display: block;
  width: 100%;
  color: var(--muted);
  overflow: hidden;
  font-size: 0.94rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.suggestion mark {
  border-radius: 3px;
  background: rgba(255, 102, 56, 0.18);
  color: inherit;
  padding: 0 2px;
}

.suggestion__arrow {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #2e7fa3;
  background: rgba(46, 127, 163, 0.12);
  font-weight: 900;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 140ms ease, transform 140ms ease, background 140ms ease, color 140ms ease;
}

.suggestion:hover .suggestion__arrow,
.suggestion.is-active .suggestion__arrow {
  opacity: 1;
  transform: translateX(0);
  background: var(--orange);
  color: var(--white);
}

.suggestions__footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 10px 2px 0;
  padding: 12px 12px 2px;
  border-top: 1px solid rgba(216, 226, 231, 0.82);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.hero__quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero__quicklinks a {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
  font-size: 0.92rem;
  backdrop-filter: blur(12px);
  transition: background 160ms ease, transform 160ms ease;
}

.hero__quicklinks a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.hero__market-strip {
  position: absolute;
  z-index: 1;
  right: max(16px, calc((100vw - 1180px) / 2));
  bottom: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(104px, 1fr));
  width: min(510px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;
  background: rgba(8, 26, 34, 0.66);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.hero__market-strip div {
  padding: 18px;
}

.hero__market-strip div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero__market-strip strong,
.hero__market-strip span {
  display: block;
}

.hero__market-strip strong {
  font-family: var(--display-font);
  font-size: 1.48rem;
  line-height: 1;
}

.hero__market-strip span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
}

.section {
  padding: clamp(82px, 9vw, 136px) 0;
}

.sub-hero {
  position: relative;
  overflow: visible;
  padding: 154px 0 82px;
  background:
    linear-gradient(120deg, rgba(220, 239, 240, 0.88), rgba(251, 250, 246, 0.98) 44%, #ffffff 100%),
    var(--snow);
}

.sub-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 32, 39, 0.16), transparent);
}

.sub-hero h1,
.resort-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(3.05rem, 6.2vw, 6.4rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
}

.sub-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.24rem;
  line-height: 1.62;
}

.sub-hero .hero-search {
  margin-top: 28px;
}

.hero-search--compact {
  color: var(--ink);
}

.hero-search--compact label {
  color: var(--ink);
}

.breadcrumb {
  color: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  opacity: 0.82;
}

.breadcrumb a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.resort-hero {
  min-height: 680px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  padding: 150px 0 82px;
}

.resort-hero__image {
  position: absolute;
  inset: 0;
}

.resort-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resort-hero__content {
  position: relative;
  z-index: 2;
}

.resort-hero__content > p:not(.breadcrumb):not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.18rem, 1.8vw, 1.45rem);
  line-height: 1.58;
}

.price-chip {
  display: inline-flex;
  margin-top: 18px;
  padding: 11px 16px;
  border-radius: 6px;
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 18px 44px rgba(255, 102, 56, 0.26);
}

.resort-layout {
  background:
    linear-gradient(180deg, var(--white), var(--snow) 58%, var(--white));
}

.resort-layout__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.facts-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 42px;
}

.facts-panel div,
.ticket-card,
.search-hit {
  border: 1px solid rgba(16, 32, 39, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
}

.facts-panel div {
  padding: 18px;
  box-shadow: 0 16px 42px rgba(8, 26, 34, 0.06);
}

.facts-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.facts-panel strong {
  display: block;
  margin-top: 4px;
  font-size: 1.22rem;
}

.ticket-card {
  position: sticky;
  top: 104px;
  padding: 26px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(8, 26, 34, 0.12);
}

.ticket-card h2 {
  margin: 0 0 8px;
  font-family: var(--display-font);
  font-size: 1.72rem;
  line-height: 1.05;
}

.ticket-card p {
  color: var(--muted);
  font-size: 1.02rem;
}

.ticket-card .button {
  width: 100%;
}

.ticket-card__price {
  display: block;
  margin: 16px 0;
  color: var(--orange-dark);
  font-family: var(--display-font);
  font-size: 1.9rem;
}

.ticket-card small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.prose {
  max-width: 880px;
}

.prose h2 {
  margin: 42px 0 16px;
  font-family: var(--display-font);
  font-size: clamp(2.1rem, 3.3vw, 3.25rem);
  font-weight: 760;
  line-height: 1.02;
}

.prose h3 {
  margin: 34px 0 12px;
  font-size: 1.62rem;
  line-height: 1.18;
}

.prose p,
.prose li {
  color: #4f6269;
  font-size: 1.16rem;
  line-height: 1.76;
}

.prose p {
  margin: 0 0 18px;
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

.prose a {
  color: var(--ice);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.prose blockquote {
  margin: 32px 0;
  padding: 22px 26px;
  border-left: 5px solid var(--orange);
  background: var(--snow);
  box-shadow: 0 18px 44px rgba(8, 26, 34, 0.07);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.info-panel,
.contact-card {
  border: 1px solid rgba(16, 32, 39, 0.09);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 22px 64px rgba(8, 26, 34, 0.1);
}

.info-panel {
  padding: 28px;
}

.info-panel h2 {
  margin: 0 0 18px;
  font-family: var(--display-font);
  font-size: 1.72rem;
  line-height: 1.08;
}

.info-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.contact-card {
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(220, 239, 240, 0.62), rgba(255, 255, 255, 0.96)),
    var(--white);
}

.contact-card span {
  display: block;
  color: var(--ice);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-card a {
  display: inline-block;
  margin: 8px 0 18px;
  color: var(--orange-dark);
  font-family: var(--display-font);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.legal-copy {
  max-width: 980px;
}

.legal-copy h2 {
  padding-top: 10px;
  border-top: 1px solid rgba(16, 32, 39, 0.08);
  font-size: clamp(1.72rem, 2.8vw, 2.45rem);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -4px 0 34px;
}

.filter-bar label {
  padding: 12px 14px;
  border: 1px solid rgba(16, 32, 39, 0.1);
  border-radius: 999px;
  background: var(--white);
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(8, 26, 34, 0.05);
}

.search-hit {
  padding: 26px;
}

.search-hit h2 {
  margin: 0;
  font-family: var(--display-font);
}

.section--intro {
  padding: 72px 0;
  background:
    linear-gradient(90deg, var(--white), var(--snow));
}

.section__inner {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
}

.intro-grid,
.editorial__inner,
.discovery__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(36px, 7vw, 104px);
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.discovery h2,
.editorial h2,
.cta-band h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2.45rem, 4.4vw, 4.45rem);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: 0;
}

.intro-grid p:last-child,
.section-kicker,
.editorial__copy {
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.72;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.text-link {
  color: var(--ice);
  font-weight: 900;
  font-size: 0.98rem;
  white-space: nowrap;
  border-bottom: 2px solid rgba(23, 111, 143, 0.24);
}

.resort-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.resort-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 54px rgba(8, 26, 34, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.score-badge {
  --score: 72;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 86px;
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(8, 26, 34, 0.92) 0 58%, transparent 59%),
    conic-gradient(var(--orange) calc(var(--score) * 1%), rgba(255, 255, 255, 0.28) 0);
  color: var(--white);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.score-badge__label {
  grid-column: 1;
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.54rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.score-badge strong {
  display: block;
  margin-top: -3px;
  font-family: var(--display-font);
  font-size: 1.55rem;
  line-height: 1;
}

.score-badge span:last-child {
  display: block;
  margin-top: -7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.66rem;
  font-weight: 850;
}

.resort-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(16, 32, 39, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

.resort-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 92px rgba(8, 26, 34, 0.16);
}

.resort-grid:not(.resort-grid--list) .resort-card:first-child {
  grid-column: span 2;
}

.resort-grid:not(.resort-grid--list) .resort-card:first-child picture {
  aspect-ratio: 1.86;
}

.resort-grid:not(.resort-grid--list) .resort-card:first-child h3 {
  font-size: clamp(2.15rem, 3vw, 2.85rem);
}

.resort-grid:not(.resort-grid--list) .resort-card:first-child p {
  max-width: 68ch;
  min-height: 0;
}

.resort-card picture {
  display: block;
  aspect-ratio: 1.28;
  overflow: hidden;
  background: var(--ice-soft);
}

.resort-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.resort-card:hover img {
  transform: scale(1.025);
}

.resort-card__body {
  padding: 24px;
}

.country-pill {
  display: inline-block;
  color: var(--ice);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.resort-card h3 {
  margin: 9px 0 10px;
  font-family: var(--display-font);
  font-size: 1.92rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.resort-card p {
  margin: 0 0 22px;
  min-height: 88px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

.resort-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 20px;
}

.resort-card dl div {
  padding: 11px 10px;
  border-radius: 6px;
  background: #f5f8f6;
}

.resort-card dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.resort-card dd {
  margin: 2px 0 0;
  font-weight: 900;
  font-size: 0.98rem;
}

.card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.card-action strong {
  color: var(--orange-dark);
}

.card-action span {
  color: var(--ice);
  font-weight: 900;
}

.countries {
  background:
    linear-gradient(180deg, var(--white), var(--snow));
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.country-tile {
  min-height: 218px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 24px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(8, 26, 34, 0.04), rgba(8, 26, 34, 0.86)),
    url("https://images.unsplash.com/photo-1605540436563-5bca919ae766?auto=format&fit=crop&w=900&q=76") center/cover;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 58px rgba(8, 26, 34, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.country-tile::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 5px;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
}

.country-tile > * {
  position: relative;
  z-index: 1;
}

.country-tile:nth-child(2n) {
  background-image:
    linear-gradient(180deg, rgba(8, 26, 34, 0.04), rgba(8, 26, 34, 0.86)),
    url("https://images.unsplash.com/photo-1515767513519-e50caaf922e3?auto=format&fit=crop&w=900&q=76");
}

.country-tile:nth-child(3n) {
  background-image:
    linear-gradient(180deg, rgba(8, 26, 34, 0.04), rgba(8, 26, 34, 0.86)),
    url("https://images.unsplash.com/photo-1674043613875-eabfa5a45425?auto=format&fit=crop&w=900&q=76");
}

.country-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 86px rgba(8, 26, 34, 0.2);
}

.country-tile:hover::before {
  opacity: 1;
  transform: scale(1);
}

.country-tile--large {
  grid-column: span 2;
}

.country-grid .country-tile:first-child {
  grid-column: span 2;
}

.country-tile span {
  font-family: var(--display-font);
  font-size: 2.05rem;
  line-height: 1;
  font-weight: 950;
}

.country-tile strong {
  max-width: 23ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.38;
}

.discovery {
  background:
    linear-gradient(135deg, rgba(220, 239, 240, 0.86), rgba(251, 250, 246, 0.72) 52%, rgba(143, 166, 107, 0.18)),
    var(--glacier);
}

.type-list {
  display: grid;
  gap: 12px;
  counter-reset: type-list;
}

.type-list a {
  counter-increment: type-list;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  padding: 18px 22px;
  border: 1px solid rgba(16, 32, 39, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 42px rgba(8, 26, 34, 0.06);
  font-weight: 950;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.type-list a::before {
  content: counter(type-list, decimal-leading-zero);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--display-font);
  font-size: 1.04rem;
}

.type-list a:hover {
  transform: translateX(6px);
  border-color: var(--ice);
  background: var(--white);
  box-shadow: 0 24px 68px rgba(8, 26, 34, 0.12);
}

.type-list span {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.96rem;
  text-align: right;
}

.editorial {
  background:
    linear-gradient(90deg, var(--snow), var(--white) 42%, var(--white));
}

.editorial__copy p {
  margin-top: 0;
}

.cta-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(8, 26, 34, 0.96), rgba(19, 52, 61, 0.94)),
    var(--navy);
  color: var(--white);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 58%, rgba(255, 102, 56, 0.18) 58.15% 58.6%, transparent 58.75%),
    linear-gradient(110deg, transparent 0 68%, rgba(255, 255, 255, 0.12) 68.15% 68.35%, transparent 68.55%);
  pointer-events: none;
}

.cta-band__inner {
  position: relative;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.cta-band h2 {
  max-width: 820px;
}

.button--light {
  flex: 0 0 auto;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.button--light:hover {
  background: var(--orange);
  color: var(--white);
}

.site-footer {
  background: #061219;
  color: rgba(255, 255, 255, 0.78);
  padding: 70px 0 30px;
}

.footer__inner {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 36px;
}

.footer__inner p {
  max-width: 410px;
  font-size: 1rem;
}

.footer__inner h2 {
  margin: 0 0 13px;
  color: var(--white);
  font-size: 0.98rem;
}

.footer__inner a {
  display: block;
  padding: 5px 0;
  font-size: 0.98rem;
}

.footer__inner a:hover {
  color: var(--white);
}

.copyright {
  width: min(1240px, calc(100% - 36px));
  margin: 42px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from { transform: scale(1.04); }
  to { transform: scale(1.01); }
}

@keyframes topoMove {
  from { transform: translate3d(-1%, 0, 0); }
  to { transform: translate3d(1%, -1%, 0); }
}

@media (max-width: 920px) {
  body {
    font-size: 17px;
  }

  .nav-shell {
    width: min(100% - 28px, 1240px);
    min-height: 72px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    order: 3;
  }

  .primary-nav {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 14px;
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
    border-radius: 8px;
  }

  .primary-nav.is-open {
    display: grid;
    gap: 8px;
    justify-items: start;
  }

  .primary-nav a {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
  }

  .primary-nav a:hover {
    background: var(--glacier);
  }

  .nav-search {
    margin-left: auto;
  }

  .hero {
    min-height: 820px;
    padding-top: 112px;
  }

  .hero__content {
    padding-bottom: 190px;
  }

  .hero__market-strip {
    left: 16px;
    right: 16px;
    width: auto;
  }

  .intro-grid,
  .editorial__inner,
  .discovery__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

  .resort-grid:not(.resort-grid--list) .resort-card:first-child {
    grid-column: span 2;
  }

  .resort-card p {
    min-height: 0;
  }

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

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

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

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

.ticket-card {
    position: static;
  }

  .facts-panel {
    grid-template-columns: repeat(2, 1fr);
  }
}

.rating-panel {
  --score: 72;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 0 0 24px;
  padding: 0 0 24px;
  border-bottom: 1px solid rgba(16, 32, 39, 0.1);
}

.rating-panel__meter {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--white) 0 58%, transparent 59%),
    conic-gradient(var(--orange) calc(var(--score) * 1%), #dce6e4 0);
  box-shadow: inset 0 0 0 1px rgba(16, 32, 39, 0.08);
  text-align: center;
}

.rating-panel__meter strong {
  display: block;
  margin-top: 10px;
  font-family: var(--display-font);
  font-size: 2.1rem;
  line-height: 0.85;
}

.rating-panel__meter span {
  display: block;
  margin-top: -12px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
}

.rating-panel__eyebrow {
  color: var(--ice);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.rating-panel h2 {
  margin: 4px 0 6px;
}

.rating-panel p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.48;
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .nav-shell,
  .section__inner,
  .cta-band__inner,
  .footer__inner,
  .copyright {
    width: min(100% - 24px, 1240px);
  }

  .brand img {
    width: 132px;
  }

  .brand,
  .brand__logo {
    width: 132px;
    height: 32px;
  }

  .nav-search {
    display: none;
  }

  .hero {
    min-height: 820px;
    padding-top: 92px;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(7, 22, 30, 0.86), rgba(7, 22, 30, 0.54)),
      linear-gradient(0deg, rgba(7, 22, 30, 0.74), transparent 54%);
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.65rem);
  }

  .hero__lead,
  .sub-hero p {
    font-size: 1.1rem;
  }

  .hero-search__control {
    grid-template-columns: 40px 1fr;
    gap: 0;
    padding: 8px;
  }

  .hero-search__icon {
    width: 40px;
  }

  .hero-search__control > button {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 8px;
  }

  .suggestions {
    left: 0;
    width: calc(100vw - 24px);
    max-height: min(500px, 68vh);
    transform: none;
    padding: 8px;
  }

  .suggestion {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 68px;
    gap: 12px;
    padding: 10px;
  }

  .suggestion__thumb {
    width: 44px;
    height: 44px;
  }

  .suggestion__arrow {
    display: none;
  }

  .suggestions__footer {
    display: none;
  }

  .score-badge {
    width: 74px;
    min-height: 74px;
    top: 12px;
    right: 12px;
  }

  .score-badge strong {
    font-size: 1.34rem;
  }

  .hero__market-strip {
    grid-template-columns: 1fr;
    bottom: 24px;
  }

  .hero__market-strip div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

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

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

  .resort-card h3 {
    font-size: 1.72rem;
  }

  .resort-card p {
    min-height: 0;
  }

  .card-action {
    display: grid;
  }

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

  .country-tile--large {
    grid-column: span 1;
  }

  .country-grid .country-tile:first-child,
  .resort-grid:not(.resort-grid--list) .resort-card:first-child {
    grid-column: span 1;
  }

  .type-list a {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 4px;
  }

  .type-list a::before {
    grid-row: span 2;
    width: 42px;
    height: 42px;
  }

  .type-list span {
    grid-column: 2;
    text-align: left;
  }

  .cta-band__inner {
    min-height: 380px;
    display: grid;
    align-content: center;
  }

  .button--light {
    width: 100%;
  }

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

  .facts-panel {
    grid-template-columns: 1fr;
  }

  .rating-panel {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 14px;
  }

  .rating-panel__meter {
    width: 78px;
    height: 78px;
  }

  .rating-panel__meter strong {
    font-size: 1.72rem;
  }

  .sub-hero,
  .resort-hero {
    padding-top: 112px;
  }

  .sub-hero h1,
  .resort-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

  .prose h2 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

  .prose p,
  .prose li {
    font-size: 1.08rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

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