:root {
  --powder: #F6F3EC;
  --powder-deep: color-mix(in srgb, var(--powder) 91%, var(--cedar));
  --lizard: #16324A;
  --lizard-soft: color-mix(in srgb, var(--lizard) 82%, var(--powder));
  --pine: #1E3D2F;
  --cedar: #6B4A2F;
  --gold: #D9A441;
  --granite: #2A2E33;
  --signal: #B33A2B;
  /* Legacy component aliases now resolve into the original Island Lake palette. */
  --bluebird: var(--lizard);
  --bluebird-soft: var(--lizard-soft);
  --bluebird-sky: color-mix(in srgb, var(--lizard) 42%, var(--powder));
  --bluebird-deep: color-mix(in srgb, var(--lizard) 82%, var(--granite));
  --sky-mist: color-mix(in srgb, var(--powder) 94%, var(--lizard));
  --spring-green: var(--pine);
  --spring-green-soft: color-mix(in srgb, var(--pine) 65%, var(--powder));
  --spring-green-deep: color-mix(in srgb, var(--pine) 82%, var(--granite));
  --white: #fff;
  --line: rgba(22, 50, 74, 0.2);
  --page-gutter: clamp(1.75rem, 5vw, 6rem);
  --header-inset: clamp(0.75rem, 1.5vw, 1.5rem);
  --wrap: min(77.5rem, calc(100% - var(--page-gutter) - var(--page-gutter)));
  --section-space: clamp(4.5rem, calc(4rem + 4vw), 8rem);
  --layout-gap: clamp(2.5rem, 5vw, 5.5rem);
  --heading-gap: clamp(1.5rem, 2.5vw, 2.25rem);
  --type-hero: clamp(2.5rem, 4.5vw, 4rem);
  --type-title: clamp(2rem, 3.5vw, 3rem);
  --type-subtitle: clamp(1.5rem, 2.2vw, 2rem);
  --type-lede: clamp(1.125rem, 1.5vw, 1.25rem);
  --type-body: 1rem;
  --type-small: .875rem;
  --display: "Fraunces", Georgia, serif;
  --body: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
  background: var(--lizard);
}

body {
  margin: 0;
  color: var(--granite);
  background: var(--powder);
  font-family: var(--body);
  font-size: var(--type-body);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
a:focus-visible {
  outline-color: var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--powder);
  background: var(--lizard);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.section-pad {
  padding-block: var(--section-space);
}

.kicker {
  margin: 0 0 1.25rem;
  color: var(--lizard);
  font-family: var(--body);
  font-size: var(--type-small);
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.55;
  text-transform: uppercase;
}

.kicker-light {
  color: rgba(247, 244, 237, 0.82);
}

.kicker-gold {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: -0.035em;
  text-wrap: balance;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: var(--heading-gap);
  font-size: var(--type-title);
  line-height: 1.08;
}

h3 {
  margin-bottom: 1rem;
  font-size: var(--type-subtitle);
  line-height: 1.2;
}

.lede {
  font-family: var(--body);
  font-size: var(--type-lede);
  line-height: 1.5;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  text-align: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: var(--type-small);
  font-weight: 600;
  line-height: 1.2;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  color: var(--granite);
  background: var(--gold);
}

.button-gold:hover {
  background: color-mix(in srgb, var(--gold) 84%, var(--powder));
}

.button-ghost {
  color: var(--powder);
  border-color: rgba(247, 244, 237, 0.55);
  background: rgba(22, 50, 74, 0.12);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: var(--powder);
  background: rgba(247, 244, 237, 0.1);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--lizard);
  font-size: var(--type-body);
  font-weight: 600;
  line-height: 1.4;
}

.text-link span {
  flex-shrink: 0;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link-light {
  color: var(--powder);
}

.site-header {
  position: fixed;
  top: var(--header-inset);
  right: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
}

.nav-shell {
  position: relative;
  display: flex;
  width: min(85rem, calc(100% - var(--header-inset) - var(--header-inset)));
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  padding: 0.625rem 1rem;
  border: 1px solid rgba(247, 244, 237, 0.28);
  border-radius: 5px;
  background: rgba(247, 244, 237, 0.92);
  box-shadow: 0 16px 50px rgba(8, 19, 29, 0.13);
  backdrop-filter: blur(18px);
  pointer-events: auto;
  transition: min-height 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled .nav-shell {
  min-height: 70px;
  background: rgba(247, 244, 237, 0.97);
  box-shadow: 0 12px 40px rgba(8, 19, 29, 0.2);
}

.brand {
  flex: 0 0 auto;
  min-width: 0;
  max-width: 55%;
}

.brand img {
  width: 194px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2vw, 2rem);
  color: #111;
  font-size: var(--type-small);
  font-weight: 600;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 12px;
  white-space: nowrap;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: #111;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  padding-inline: 19px;
  border-radius: 3px;
  color: var(--powder);
  background: var(--lizard);
}

.nav-cta:hover {
  background: var(--lizard-soft);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: 100svh;
  height: auto;
  overflow: hidden;
  color: var(--powder);
  background: var(--lizard);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 0;
  transform: translate(-50%, -50%);
}

.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0;
}

.hero-video video::-webkit-media-controls,
.hero-video video::-webkit-media-controls-enclosure,
.hero-video video::-webkit-media-controls-panel,
.hero-video video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.hero-video-cover {
  z-index: 1;
  pointer-events: none;
}

.hero-video-toggle {
  position: absolute;
  z-index: 3;
  top: 8rem;
  right: var(--page-gutter);
  min-height: 44px;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 3px;
  color: var(--white);
  background: rgba(10, 25, 32, 0.7);
  font: 500 var(--type-small)/1.4 var(--body);
  cursor: pointer;
}

.hero-video-toggle[hidden] {
  display: none;
}

.hero-video-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.hero-media {
  object-fit: cover;
  object-position: center 52%;
  animation: hero-settle 1.6s cubic-bezier(0.2, 0.65, 0.2, 1) both;
}

.hero-shade {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 19, 29, 0.36) 0%, rgba(6, 19, 29, 0.05) 33%, rgba(6, 19, 29, 0.1) 52%, rgba(6, 19, 29, 0.82) 100%),
    linear-gradient(90deg, rgba(8, 22, 33, 0.3), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: clamp(10rem, 18svh, 14rem) clamp(3rem, 7svh, 6rem);
}

.hero-content .kicker {
  margin-bottom: 20px;
}

.hero-panel {
  width:min(54rem,100%);
  padding:clamp(1.25rem,2.4vw,2rem);
  background:rgba(8,22,33,.34);
  border:1px solid rgba(246,243,236,.2);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
}

.hero-panel-heading {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:1.5rem;
}

.hero-panel-heading .hero h1,
.hero-panel-heading h1 {margin-bottom:0}

.overlay-panel-toggle {
  flex:0 0 2.75rem;
  width:2.75rem;
  height:2.75rem;
  display:grid;
  place-items:center;
  color:var(--powder);
  background:transparent;
  border:1px solid rgba(246,243,236,.5);
  border-radius:50%;
  cursor:pointer;
  transition:background .25s ease,border-color .25s ease;
}

.overlay-panel-toggle:hover,.overlay-panel-toggle:focus-visible {background:rgba(246,243,236,.14);border-color:var(--powder)}
.overlay-panel-toggle span {width:.75rem;height:.75rem;border-right:1.5px solid currentColor;border-bottom:1.5px solid currentColor;transform:translateY(-2px) rotate(45deg);transition:transform .45s cubic-bezier(.2,.7,.2,1)}
.is-open>.hero-panel-heading .overlay-panel-toggle span,
.is-open>.page-hero-panel-heading .overlay-panel-toggle span {transform:translateY(2px) rotate(225deg)}

.hero h1 {
  max-width: 19ch;
  margin: 0 0 var(--heading-gap);
  font-size: var(--type-hero);
  line-height: 1.06;
  text-wrap: balance;
}

@media (min-width: 60.0625rem) {
  .hero h1 {
    font-size: var(--type-hero);
    line-height: 1.12;
  }
}

.hero-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  padding-top: 26px;
  border-top: 1px solid rgba(247, 244, 237, 0.45);
  max-height:0;
  opacity:0;
  overflow:hidden;
  padding-top:0;
  border-top-color:transparent;
  transform:translateY(1rem);
  transition:max-height .65s cubic-bezier(.2,.7,.2,1),opacity .35s ease,transform .5s ease,padding-top .5s ease,border-color .5s ease;
}

.hero-panel.is-open .hero-bottom,
.hero-panel:focus-within .hero-bottom {max-height:18rem;opacity:1;transform:none;padding-top:26px;border-top-color:rgba(247,244,237,.45);margin-top:1.35rem}

@media(hover:hover){
  .hero-panel:hover .hero-bottom {max-height:18rem;opacity:1;transform:none;padding-top:26px;border-top-color:rgba(247,244,237,.45);margin-top:1.35rem}
}

.hero-deck {
  max-width: 42ch;
  margin-bottom: 0;
  font-family: var(--body);
  font-size: var(--type-lede);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
}

.hero-coordinate {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -44px;
  color: rgba(247, 244, 237, 0.65);
  font-family: var(--body);
  font-size: var(--type-small);
  letter-spacing: 0.1em;
  transform: rotate(90deg);
}

.proof-rail {
  color: var(--powder);
  background: var(--lizard);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-block: 34px;
}

.proof-item {
  display: flex;
  min-height: 80px;
  flex-direction: column;
  justify-content: center;
  padding-inline: clamp(18px, 3vw, 46px);
  border-left: 1px solid rgba(247, 244, 237, 0.16);
}

.proof-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.proof-item strong {
  margin-bottom: 6px;
  color: var(--gold);
  font-family: var(--body);
  font-size: var(--type-subtitle);
  font-weight: 500;
  line-height: 1;
}

.proof-item span {
  color: rgba(247, 244, 237, 0.72);
  font-size: var(--type-small);
}

.welcome {
  padding-bottom: 2rem;
  background: var(--powder);
}

.welcome + .film {
  padding-top: 0;
}

.welcome-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: var(--layout-gap);
}

.welcome-copy {
  max-width: 680px;
}

.welcome-copy > p:not(.kicker) {
  max-width: 610px;
  margin-bottom: 24px;
}

.welcome-copy .text-link {
  margin-top: 16px;
}

.catskiing-intro {
  background: var(--powder-deep);
}

.catskiing-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: var(--layout-gap);
}

.catskiing-intro-copy {
  max-width: 38rem;
  min-width: 0;
}

.catskiing-intro-copy h2 {
  max-width: 15ch;
}

.catskiing-intro-copy .text-link {
  margin-top: 0.75rem;
}

.catskiing-intro-image {
  min-width: 0;
  margin: 0;
}

.catskiing-intro-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.catskiing-intro-image figcaption {
  margin-top: 0.75rem;
  font-size: var(--type-small);
  color: var(--granite);
}

.portrait-image {
  position: relative;
  margin: 0;
}

.portrait-image::before {
  position: absolute;
  z-index: 1;
  inset: 18px;
  border: 1px solid rgba(247, 244, 237, 0.5);
  content: "";
  pointer-events: none;
}

.portrait-image img {
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.portrait-image figcaption,
.lodge-gallery figcaption,
.heritage-image figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  color: rgba(42, 46, 51, 0.68);
  font-family: var(--body);
  font-size: var(--type-small);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.terrain-band {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(620px, 78vw, 900px);
  overflow: hidden;
  color: var(--powder);
  background: var(--lizard);
}

.terrain-band-image,
.terrain-band-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.terrain-band-image {
  object-fit: cover;
  object-position: 50% center;
}

.terrain-band-overlay {
  background: linear-gradient(180deg, rgba(8, 26, 38, 0.04), rgba(8, 26, 38, 0.76));
}

.terrain-band-copy {
  position: relative;
  z-index: 1;
  right: 0;
  padding-block: var(--section-space);
  left: 0;
}

.terrain-band-copy h2 {
  max-width: 900px;
  margin-bottom: 0;
}

.signature {
  position: relative;
  overflow: hidden;
  color: var(--powder);
  background: var(--pine);
}

.signature::before {
  position: absolute;
  top: -280px;
  right: -240px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(247, 244, 237, 0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 72px rgba(247, 244, 237, 0.025),
    0 0 0 144px rgba(247, 244, 237, 0.018);
  content: "";
}

.signature-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.7fr);
  column-gap: var(--layout-gap);
  align-items: end;
}

.signature-head .kicker {
  grid-column: 1 / -1;
  color: var(--gold);
}

.signature-head h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.signature-head > p:last-child {
  max-width: 520px;
  margin-bottom: 6px;
  color: rgba(247, 244, 237, 0.75);
}

.signature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: var(--layout-gap);
  border-top: 1px solid rgba(247, 244, 237, 0.18);
}

.signature-card {
  min-height: 300px;
  padding: 34px clamp(22px, 3vw, 44px) 12px;
  border-left: 1px solid rgba(247, 244, 237, 0.18);
}

.signature-card:first-child {
  padding-left: 0;
  border-left: 0;
}

.card-index {
  display: block;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  color: var(--gold);
  font-family: var(--body);
  font-size: var(--type-small);
}

.signature-card p {
  max-width: 330px;
  color: rgba(247, 244, 237, 0.7);
}

.illustrated-mountain {
  background: var(--powder);
}

.illustrated-mountain-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: end;
  gap: var(--layout-gap);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.illustrated-mountain-heading h2,
.illustrated-mountain-heading > p {
  margin-bottom: 0;
}

.illustrated-mountain-art {
  margin: 0;
}

.illustrated-mountain-image {
  display: block;
  width: var(--wrap);
  margin-inline: auto;
  cursor: zoom-in;
}

.illustrated-mountain-image img {
  width: 100%;
  height: auto;
}

.illustrated-mountain-caption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-top: 1.5rem;
}

@media (max-width: 48rem) {
  .illustrated-mountain-heading {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }
}

.lodge {
  color: var(--powder);
  background: var(--lizard);
}

.lodge-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.7fr);
  align-items: end;
  gap: var(--layout-gap);
}

.lodge-heading h2 {
  max-width: 830px;
  margin-bottom: 0;
}

.lodge-heading > p {
  margin-bottom: 8px;
  color: rgba(247, 244, 237, 0.72);
}

.lodge-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.65fr);
  align-items: end;
  gap: 28px;
  margin-top: var(--layout-gap);
}

.lodge-gallery figure {
  margin: 0;
}

.lodge-gallery img {
  width: 100%;
  object-fit: cover;
}

.lodge-gallery-main img {
  min-height: 610px;
  aspect-ratio: 1.4 / 1;
}

.lodge-gallery-side {
  padding-bottom: 40px;
}

.lodge-gallery-side img {
  min-height: 420px;
  aspect-ratio: 4 / 5;
}

.lodge-gallery figcaption {
  color: rgba(247, 244, 237, 0.56);
}

.dayline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 72px;
  padding: 0;
  border-top: 1px solid rgba(247, 244, 237, 0.16);
  list-style: none;
}

.dayline li {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  padding: 28px 24px 0;
  border-left: 1px solid rgba(247, 244, 237, 0.16);
}

.dayline li:first-child {
  padding-left: 0;
  border-left: 0;
}

.dayline span {
  margin-bottom: auto;
  color: var(--gold);
  font-family: var(--body);
  font-size: var(--type-small);
}

.dayline strong {
  font-family: var(--body);
  font-size: var(--type-lede);
  font-weight: 500;
}

.dayline small {
  color: rgba(247, 244, 237, 0.58);
  font-size: var(--type-small);
}

.film {
  background: var(--powder);
}

.film-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: var(--layout-gap);
  margin-bottom: var(--layout-gap);
}

.film-heading h2 {
  max-width: 20ch;
  margin-bottom: 0;
}

.film-heading > p {
  max-width: 420px;
  margin-bottom: 10px;
}

.film-frame {
  position: relative;
  aspect-ratio: 16 / 8.3;
  overflow: hidden;
  background: var(--granite);
}

.film-link,
.film-link img,
.film-wash,
.film-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.film-link img {
  object-fit: cover;
  image-rendering: auto;
  transform: scale(1.01);
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.film-link:hover img {
  transform: scale(1.045);
}

.film-wash {
  background:
    linear-gradient(180deg, rgba(7, 20, 29, 0.08), rgba(7, 20, 29, 0.62)),
    linear-gradient(90deg, rgba(7, 20, 29, 0.34), transparent 50%);
}

.play-button {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(80px, 9vw, 126px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(247, 244, 237, 0.78);
  border-radius: 50%;
  background: rgba(22, 50, 74, 0.24);
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
  transition: background 180ms ease, transform 180ms ease;
}

.film-link:hover .play-button {
  background: rgba(217, 164, 65, 0.88);
  transform: translate(-50%, -50%) scale(1.06);
}

.play-button i {
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--powder);
}

.film-meta {
  position: absolute;
  z-index: 1;
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(24px, 4vw, 52px);
  left: clamp(24px, 4vw, 58px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  color: var(--powder);
}

.film-meta small {
  font-family: var(--body);
  font-size: var(--type-small);
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.film-meta strong {
  font-size: var(--type-small);
  font-weight: 600;
}

.film-frame iframe {
  border: 0;
}

.safety {
  color: var(--powder);
  background: var(--granite);
}

.safety-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.82fr);
  gap: var(--layout-gap);
}

.safety-intro p:not(.kicker) {
  max-width: 610px;
  color: rgba(247, 244, 237, 0.74);
}

.safety-intro .text-link {
  margin-top: 18px;
}

.safety-proof {
  border-top: 1px solid rgba(247, 244, 237, 0.2);
}

.safety-number {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding-block: 34px 56px;
  border-bottom: 1px solid rgba(247, 244, 237, 0.2);
}

.safety-number strong {
  color: var(--gold);
  font-family: var(--body);
  font-size: var(--type-title);
  font-weight: 400;
  line-height: 0.77;
}

.safety-number span {
  color: rgba(247, 244, 237, 0.64);
  font-size: var(--type-small);
  line-height: 1.5;
  text-align: right;
}

.safety-list > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 20px;
  padding-block: 24px;
  border-bottom: 1px solid rgba(247, 244, 237, 0.13);
}

.safety-list span {
  color: var(--gold);
  font-family: var(--body);
  font-size: var(--type-small);
}

.safety-list p {
  margin-bottom: 0;
  color: rgba(247, 244, 237, 0.78);
}

.risk-note {
  margin-top: 86px;
  margin-bottom: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(247, 244, 237, 0.13);
  color: rgba(247, 244, 237, 0.43);
  font-size: var(--type-small);
  line-height: 1.6;
}

.heritage {
  overflow: hidden;
  background: var(--powder-deep);
}

.heritage-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
  align-items: center;
  gap: var(--layout-gap);
}

.heritage-image {
  position: relative;
  margin: 0;
  padding: 16px 16px 18px;
  background: #fcfaf5;
  box-shadow: 0 34px 65px rgba(37, 39, 35, 0.16);
  transform: rotate(-2deg);
}

.heritage-image img {
  width: 100%;
  min-height: 410px;
  object-fit: cover;
  filter: sepia(0.15) contrast(1.06);
}

.heritage-copy h2 {
  max-width: 800px;
}

.heritage-copy .lede {
  max-width: 720px;
}

.heritage-years {
  margin-top: 54px;
  border-top: 1px solid var(--line);
}

.heritage-years > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
}

.heritage-years span {
  color: var(--cedar);
  font-family: var(--body);
  font-size: var(--type-small);
}

.heritage-years p {
  margin-bottom: 0;
  font-size: var(--type-small);
}

.stewardship {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--powder);
  background: var(--lizard);
}

.stewardship::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 25, 21, 0.48) 0%, rgba(7, 25, 21, 0.66) 48%, rgba(7, 25, 21, 0.9) 100%),
    linear-gradient(180deg, rgba(7, 25, 21, 0.15), rgba(7, 25, 21, 0.68));
}

.stewardship-background {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
}

.stewardship-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  align-items: end;
  gap: var(--layout-gap);
}

.stewardship-title h2 {
  margin-bottom: 0;
}

.stewardship-copy {
  max-width: 580px;
  padding-left: 34px;
  border-left: 1px solid rgba(247, 244, 237, 0.36);
}

.stewardship-copy p {
  color: rgba(247, 244, 237, 0.82);
}

.stewardship-copy p:last-child {
  margin-bottom: 0;
  color: var(--powder);
  font-family: var(--body);
  font-size: var(--type-lede);
}

.concierge {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: var(--powder);
  background: var(--lizard);
}

.concierge > img,
.concierge-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.concierge > img {
  object-fit: cover;
  object-position: center 40%;
}

.concierge-wash {
  background:
    linear-gradient(90deg, rgba(8, 23, 35, 0.85) 0%, rgba(8, 23, 35, 0.45) 58%, rgba(8, 23, 35, 0.28) 100%),
    linear-gradient(180deg, rgba(8, 23, 35, 0.1), rgba(8, 23, 35, 0.7));
}

.concierge-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 820px;
  flex-direction: column;
  justify-content: center;
  padding-block: var(--section-space);
}

.concierge-content h2 {
  max-width: 850px;
  margin-bottom: 26px;
}

.concierge-content > p:not(.kicker) {
  max-width: 570px;
  margin-bottom: 38px;
  font-size: var(--type-lede);
}

.concierge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer {
  padding-block: 72px 24px;
  color: var(--powder);
  background: var(--bluebird-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.65fr 1fr 0.5fr;
  gap: 50px;
}

.footer-brand img {
  width: 210px;
  padding: 12px;
  border-radius: 3px;
  background: var(--powder);
}

.footer-brand p {
  margin-top: 24px;
  margin-bottom: 0;
  color: rgba(247, 244, 237, 0.67);
  font-family: var(--body);
  font-size: var(--type-lede);
  line-height: 1.5;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column p:not(.footer-label),
.footer-column a {
  margin-bottom: 6px;
  color: rgba(247, 244, 237, 0.68);
  font-size: var(--type-small);
}

.footer-column a:hover {
  color: var(--powder);
}

.footer-label {
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--body);
  font-size: var(--type-small);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 74px;
  padding-top: 20px;
  border-top: 1px solid rgba(247, 244, 237, 0.14);
  color: rgba(247, 244, 237, 0.42);
  font-family: var(--body);
  font-size: var(--type-small);
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.65, 0.2, 1);
}

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

@keyframes hero-settle {
  from {
    opacity: 0.6;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Collapse navigation before its labels become crowded. */
@media (max-width: 72rem) {
  .nav-shell {
    position: relative;
    width: min(85rem, calc(100% - var(--header-inset) - var(--header-inset)));
    min-height: 66px;
    padding: 0.625rem 1rem;
    background: var(--powder);
    border-color: var(--line);
  }

  .site-header.scrolled .nav-shell {
    min-height: 62px;
    background: var(--powder);
  }

  .brand img {
    width: clamp(9rem, 30vw, 11rem);
  }

  .menu-button {
    display: flex;
    min-height: 44px;
    align-items: center;
    gap: 12px;
    padding: 0.5rem;
    border: 0;
    color: var(--lizard);
    background: transparent;
    font: 600 var(--type-small)/1.2 var(--body);
    flex-shrink: 0;
    cursor: pointer;
  }

  .menu-icon {
    display: flex;
    width: 20px;
    flex-direction: column;
    gap: 5px;
  }

  .menu-icon i {
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] .menu-icon i:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-icon i:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    z-index: 101;
    top: calc(100% + 0.75rem);
    right: 0;
    left: 0;
    display: flex;
    min-height: 0;
    max-height: calc(100svh - 8rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
    padding: clamp(1.5rem, 4vw, 3rem);
    border-radius: 4px;
    color: var(--powder);
    background: var(--lizard);
    border: 1px solid color-mix(in srgb, var(--powder) 18%, transparent);
    box-shadow: 0 18px 45px rgba(22, 50, 74, 0.24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s;
  }

  .primary-nav > a:not(.nav-cta) {
    display: block;
    width: 100%;
    padding-block: 12px;
    font-family: var(--body);
    font-size: var(--type-subtitle);
    line-height: 1.25;
    white-space: normal;
    font-weight: 400;
  }

  .primary-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .primary-nav > a:not(.nav-cta):hover,
  .primary-nav > a[aria-current="page"] {
    color: var(--gold);
  }

  .primary-nav > a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
  }

  .nav-cta {
    margin-top: 24px;
    color: var(--powder);
    background: transparent;
    border: 1px solid var(--gold);
  }

  .nav-cta:hover,
  .nav-cta:focus-visible {
    color: var(--lizard);
    background: var(--powder);
  }

}

@media (max-width: 60rem) {
  .hero {
    --mobile-hero-media: clamp(27rem, 62svh, 34rem);
    display: flex;
    min-height: var(--mobile-hero-media);
  }

  .hero .hero-visual,
  .hero > .hero-shade {
    height: 100%;
  }

  .hero > .hero-shade {
    background: linear-gradient(180deg, rgba(6, 19, 29, 0.3) 0%, rgba(6, 19, 29, 0.04) 42%, rgba(6, 19, 29, 0.32) 100%);
  }

  .hero-media {
    object-position: 65% 52%;
    animation: none;
  }

  .hero-video-toggle {
    top: 6.75rem;
    right: var(--page-gutter);
  }

  .hero-content {
    position:absolute;
    inset:auto 0 0;
    width:var(--wrap);
    margin-inline:auto;
    padding-block:0 1rem;
  }

  .hero-panel {width:100%;box-sizing:border-box}

  .hero h1 {
    max-width: 15ch;
    font-size: clamp(2.35rem, 11vw, 3.6rem);
    line-height: 1.03;
  }

  .hero-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .hero-actions {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-coordinate {
    display: none;
  }

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

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

  .proof-item,
  .proof-item:first-child {
    min-height: 116px;
    padding: 22px 14px;
    border-top: 1px solid rgba(247, 244, 237, 0.14);
    border-left: 1px solid rgba(247, 244, 237, 0.14);
  }

  .proof-item:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .welcome-grid,
  .signature-head,
  .lodge-heading,
  .film-heading,
  .safety-grid,
  .heritage-grid,
  .stewardship-grid {
    grid-template-columns: 1fr;
  }

  .welcome-grid {
    gap: 2.5rem;
  }

  .welcome-copy {
    order: 1;
  }

  .welcome .portrait-image {
    order: 2;
  }

  .welcome .portrait-image img {
    min-height: 0;
  }

  .portrait-image img {
    min-height: 480px;
  }

  .terrain-band {
    min-height: 690px;
  }

  .terrain-band-image {
    object-position: 62% center;
  }

  .signature-head {
    gap: 26px;
  }

  .signature-grid {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .signature-card,
  .signature-card:first-child {
    min-height: auto;
    padding: 28px 0 34px;
    border-top: 1px solid rgba(247, 244, 237, 0.16);
    border-left: 0;
  }

  .signature-card:first-child {
    border-top: 0;
  }

  .card-index {
    margin-bottom: 36px;
  }

  .lodge-heading,
  .film-heading,
  .safety-grid,
  .heritage-grid,
  .stewardship-grid {
    gap: var(--layout-gap);
  }

  .lodge-gallery {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 56px;
  }

  .lodge-gallery-main img,
  .lodge-gallery-side img {
    min-height: 400px;
  }

  .lodge-gallery-side {
    padding-bottom: 0;
  }

  .dayline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 52px;
  }

  .dayline li,
  .dayline li:first-child {
    min-height: 160px;
    padding: 22px 14px 0;
    border-top: 1px solid rgba(247, 244, 237, 0.16);
    border-left: 1px solid rgba(247, 244, 237, 0.16);
  }

  .dayline li:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .film-heading {
    margin-bottom: 36px;
  }

  .film-frame {
    aspect-ratio: 9 / 13;
  }

  .film-link img {
    object-position: center;
  }

  .film-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .safety-grid {
    gap: var(--layout-gap);
  }

  .safety-number {
    align-items: flex-start;
    flex-direction: column;
  }

  .safety-number span {
    text-align: left;
  }

  .risk-note {
    /* The stacked safety list already supplies the separating rule. */
    margin-top: 0;
    border-top: 0;
  }

  .heritage-grid {
    gap: var(--layout-gap);
  }

  .heritage-image {
    width: calc(100% - 12px);
    margin-left: 6px;
  }

  .heritage-image img {
    min-height: 310px;
  }

  .heritage-years > div {
    grid-template-columns: 76px 1fr;
    gap: 16px;
  }

  .stewardship-copy {
    padding-top: 26px;
    padding-left: 0;
    border-top: 1px solid rgba(247, 244, 237, 0.36);
    border-left: 0;
  }

  .concierge,
  .concierge-content {
    min-height: 760px;
  }

  .concierge > img {
    object-position: 64% center;
  }

  .concierge-actions {
    width: 100%;
    flex-direction: column;
  }

  .concierge-actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-brand {
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(247, 244, 237, 0.14);
  }

  .footer-column:last-child {
    display: flex;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 54px;
  }
}

@media(prefers-reduced-motion:reduce){
  .hero-bottom,.page-hero-panel-details,.overlay-panel-toggle span{transition:none}
}

/* Expandable hero copy is a phone-only treatment. */
@media (min-width:48.0625rem) {
  .hero-panel {
    width:100%;
    padding:0;
    background:transparent;
    border:0;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
  }
  .hero-panel-heading {display:block}
  .hero-panel-heading .hero h1,
  .hero-panel-heading h1 {margin-bottom:var(--heading-gap)}
  .hero-panel .overlay-panel-toggle {display:none}
  .hero-panel .hero-bottom {
    max-height:none;
    opacity:1;
    overflow:visible;
    padding-top:26px;
    border-top-color:rgba(247,244,237,.45);
    transform:none;
    margin-top:0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

/* Keep copy inside its column, including when browser text is enlarged. */
.wrap > *,
:is(.welcome-grid, .signature-head, .signature-grid, .lodge-heading, .safety-grid, .heritage-grid, .stewardship-grid) > * {
  min-width: 0;
}
:is(.welcome-copy, .signature-head, .lodge-heading, .safety-intro, .heritage-copy, .stewardship-copy) p:not(.kicker) {
  max-width: 60ch;
}
.home-feature-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
  margin-top: 2rem;
}
.home-film-fallback {
  margin-top: 1.25rem;
  margin-bottom: 0;
}
@media (max-width: 60rem) {
  .responsive-break { display: none; }
  .portrait-image img { max-height: 40rem; }
}
@media (max-width: 22rem) {
  .menu-button-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
}

/* Weddings */
.wedding-feature{margin:3rem 0 0}.wedding-feature img{display:block;width:100%;max-height:760px;object-fit:cover}.wedding-feature figcaption,.wedding-ceremony figcaption{margin-top:.75rem;font:500 var(--type-small)/1.4 var(--body);letter-spacing:.08em;text-transform:uppercase;opacity:.7}.wedding-gallery{display:grid;grid-template-columns:repeat(12,1fr);gap:1rem;margin-top:3rem}.wedding-gallery figure{grid-column:span 4;margin:0;overflow:hidden;aspect-ratio:4/3}.wedding-gallery figure.gallery-wide{grid-column:span 8;aspect-ratio:16/9}.wedding-gallery img{width:100%;height:100%;display:block;object-fit:cover;transition:transform .5s ease}.wedding-gallery figure:hover img{transform:scale(1.02)}.wedding-faqs{margin-top:2.5rem}.wedding-press{margin-top:2.5rem}.photo-credit{margin-top:2rem;max-width:70ch;opacity:.72}.summer-faq-cta{margin-top:3rem}
@media(max-width:760px){.wedding-gallery{grid-template-columns:1fr;gap:.65rem}.wedding-gallery figure,.wedding-gallery figure.gallery-wide{grid-column:auto;aspect-ratio:4/3}}

/* Shared typography: six sizes and two families across every template. */
h4, h5, h6 { font-family: var(--display); font-size: var(--type-subtitle); font-weight: 500; line-height: 1.25; }
button, input, select, textarea { font-family: var(--body); }
input, select, textarea { font-size: var(--type-body); }
.hero-deck { line-height: 1.65; }
.proof-item strong, .stats-grid strong, .terrain-catalogue strong { font-variant-numeric: tabular-nums; }

/* Island Lake secondary navigation: forest green, editorial type and landscape photography. */
.nav-group{position:static}
.site-header .nav-section-trigger,.site-header .nav-cta,.site-header .menu-button-label{text-transform:uppercase;word-spacing:.12em}
.nav-section-trigger{position:relative;display:flex;align-items:center;gap:.65rem;padding:1.2rem 0;border:0;background:none;color:var(--lizard);font:600 .9375rem/1.3 var(--body);white-space:nowrap;text-decoration:none;cursor:pointer}
.hover-dot-region{position:relative}
.hover-dot{position:absolute;left:0;top:0;width:6px;height:6px;background:var(--gold);opacity:0;pointer-events:none;z-index:2;transition:left .4s cubic-bezier(.34,1.56,.64,1),top .4s cubic-bezier(.34,1.56,.64,1),opacity .15s linear}
.hover-dot.is-visible{opacity:1}
.hover-dot.is-positioning{transition:none}
.nav-section-trigger.is-current{color:var(--pine)}
.nav-next,.nav-back{display:none}
.nav-panel[hidden]{display:none!important}
.nav-panel{position:absolute;left:-1px;right:-1px;top:calc(100% - 1px);padding:2.5rem 2.75rem;background:#19392e;color:var(--powder);border:1px solid rgba(246,243,236,.12);border-top:2px solid var(--gold);border-radius:0 0 5px 5px;box-shadow:0 28px 40px rgba(10,27,21,.28);max-height:calc(100dvh - 8rem);overflow-y:auto;overscroll-behavior:contain;animation:nav-panel-in .18s ease both}
.has-open-panel .nav-shell{background:var(--powder);border-radius:5px 5px 0 0}
.nav-panel-grid{display:grid;grid-template-columns:minmax(0,1.3fr) minmax(0,1fr);gap:3.5rem;align-items:stretch}
.nav-panel-heading{font:400 clamp(2rem,2.6vw,2.5rem)/1.2 var(--display);letter-spacing:-.025em;margin:0 0 1.5rem;color:var(--powder)}
.nav-panel-links{list-style:none;margin:0;padding:0;display:grid;gap:0 2rem}
.nav-panel-links-two{grid-template-columns:repeat(2,minmax(0,1fr));grid-auto-flow:column;grid-template-rows:repeat(var(--nav-link-rows,5),auto)}
.nav-panel-links a{position:relative;display:block;padding:.85rem .25rem .85rem 1rem;border-bottom:1px solid rgba(246,243,236,.17);color:var(--powder);font:400 1rem/1.45 var(--body);text-decoration:none;transition:color .15s,border-color .15s}
.nav-panel-links a:hover,.nav-panel-links a:focus-visible{color:#edc57b;border-color:rgba(237,197,123,.6)}
.nav-feature{position:relative;display:grid;min-height:19rem;text-decoration:none;color:var(--powder);min-width:0;isolation:isolate;overflow:hidden;border-radius:2px}
.nav-feature-image{grid-area:1/1;overflow:hidden;background:#112b22}
.nav-feature img{display:block;width:100%;height:100%;min-height:19rem;object-fit:cover;transition:transform .5s ease}
.nav-feature:hover img{transform:scale(1.025)}
[data-nav-group="mountain"] .nav-feature img{object-position:center;transform:none}
.nav-feature>span{position:relative;grid-area:1/1;align-self:end;z-index:1;display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:3.5rem 1.5rem 1.5rem;background:linear-gradient(transparent,rgba(8,25,18,.9));font:400 1.5rem/1.35 var(--display);text-shadow:0 1px 10px rgba(0,0,0,.25)}
.nav-feature svg{flex-shrink:0;width:42px;height:42px;padding:10px;border:1px solid rgba(246,243,236,.65);border-radius:50%;transition:background .2s,color .2s}
.nav-feature:hover svg{background:var(--powder);color:#19392e}
.nav-section-trigger:focus-visible,.nav-panel a:focus-visible,.nav-back:focus-visible{outline:2px solid var(--gold);outline-offset:4px}
@keyframes nav-panel-in{from{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:none}}
@media(min-width:72.001rem){.primary-nav{gap:clamp(1rem,1.7vw,1.6rem)}}
@media(max-width:72rem){
 .primary-nav{align-items:stretch;gap:0;padding:1.25rem 1.5rem;background:#19392e;border-top:2px solid var(--gold);max-height:calc(100svh - 7rem);max-height:calc(100dvh - 7rem)}
 .nav-group{width:100%}
 .nav-section-trigger{width:100%;justify-content:space-between;color:var(--powder);font:400 1.375rem/1.35 var(--body);padding:1.15rem 0;border-bottom:1px solid rgba(246,243,236,.2);white-space:normal;text-align:left;min-height:64px}
 .nav-section-trigger.is-current{color:var(--gold)}
 .nav-shell>.hover-dot,.nav-panel-directory>.hover-dot{display:none}
 .nav-next{display:flex;color:var(--gold)}
 .nav-panel{position:static;padding:0;background:transparent;color:var(--powder);border:0;box-shadow:none;max-height:none;overflow:visible;animation:nav-panel-in .2s ease both}
 .has-open-panel .nav-shell{border-radius:5px}
 .primary-nav.is-drilled .nav-group:not(.is-expanded),.primary-nav.is-drilled .nav-section-trigger{display:none}
 .nav-back{display:flex;align-items:center;gap:.65rem;padding:.65rem 0 1.2rem;border:0;background:none;color:var(--powder);font:500 .9375rem/1.4 var(--body);cursor:pointer;min-height:44px}
 .nav-back svg{transform:rotate(180deg);color:var(--gold)}
 .nav-panel-grid{display:block}
 .nav-panel-heading{color:var(--powder);margin:0 0 .45rem;padding:.5rem 0 1rem;font-size:1.875rem}
 .nav-panel-links,.nav-panel-links-two{display:flex;flex-direction:column;gap:0}
 .nav-panel-links a{color:var(--powder);padding:.85rem 0;font-size:1.0625rem;line-height:1.45;border-bottom:1px solid rgba(246,243,236,.13);min-height:48px}
 .nav-panel-links a:hover,.nav-panel-links a:focus-visible{color:var(--gold);transform:none}
 .nav-feature{display:block;min-height:0;overflow:visible;color:var(--powder);padding:.5rem 0}
 .nav-feature-image{display:none}
 .nav-feature>span{font:500 .9375rem/1.4 var(--body);padding:.9rem 0;color:#edc57b;background:none;text-shadow:none}
 .nav-feature svg{width:19px;height:19px;padding:0;border:0;border-radius:0}
 .primary-nav .nav-cta{align-self:flex-start;margin-top:1.5rem;min-height:48px}
}
@media(prefers-reduced-motion:reduce){.nav-panel{animation:none}.hover-dot,.nav-panel-links a,.nav-feature img,.nav-feature svg{transition:none}}
