:root {
  --white: #fbfcfc;
  --ice: #edf5f7;
  --mist: #d8e8ed;
  --blue: #79afc0;
  --deep: #153d50;
  --ivory: #f7f1e6;
  --cream: #fffaf0;
  --snow: #eef7f6;
  --glacier: #b9e4eb;
  --glacier-bright: #7bc9d8;
  --fjord: #1d5362;
  --fjord-deep: #183f49;
  --sky: #dceef0;
  --sand: #dfb889;
  --peach: #efc6a8;
  --berry: #a85268;
  --ink: #24464c;
  --muted: #60777a;
  --line: rgba(36, 70, 76, .18);
  --max: 1320px;
}

/* 2026 cinematic direction */
.hero-premium {
  background: var(--deep);
  color: var(--white);
}
.hero-premium .hero-media { object-position: center center; transform: scale(1.015); }
.hero-premium .hero-wash {
  background:
    linear-gradient(180deg, rgba(14,42,56,.3) 0%, rgba(14,42,56,.04) 35%, rgba(14,42,56,.46) 100%),
    linear-gradient(90deg, rgba(10,38,51,.34), transparent 62%);
}
.hero-premium .hero-wash::after {
  right: -12%; bottom: -30%; width: 80vw; height: 42vw;
  background: rgba(245,250,251,.48); filter: blur(92px);
}
.hero-premium .hero-copy { padding-top: clamp(230px, 34vh, 380px); }
.hero-premium h1 {
  max-width: 1120px;
  font-family: "Bodoni MT", Didot, "Times New Roman", serif;
  font-size: clamp(72px, 10.8vw, 166px);
  font-weight: 400;
  letter-spacing: -.058em;
  line-height: .82;
}
.hero-premium .eyebrow,
.site-nav a,
.scroll-note,
.wordmark small {
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
}
.hero-premium .eyebrow { margin-bottom: 26px; font-size: 14px; font-weight: 400; letter-spacing: .22em; }
.hero-premium .hero-lede { max-width: 670px; margin-top: 34px; font-size: clamp(17px, 1.45vw, 21px); }
.hero-premium .scroll-note { color: inherit; font-size: 14px; text-decoration: none; }
.site-header .wordmark span { font-family: "Bodoni MT", Didot, serif; font-weight: 400; }
.site-header:not(.is-scrolled) .site-nav a { font-size: 14px; font-weight: 400; letter-spacing: .08em; }
.site-header:not(.is-scrolled) .nav-cta { border: 0; border-radius: 0; padding: 0; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; }
.content-width { width: min(calc(100% - 64px), var(--max)); margin-inline: auto; }
.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; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 1000; transform: translateY(-160%); background: var(--cream); padding: 10px 15px; }
.skip-link:focus { transform: translateY(0); }

.mist-curtain {
  position: fixed;
  inset: -20%;
  z-index: 999;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 40%, rgba(255,250,240,.98) 0 13%, transparent 35%),
    radial-gradient(circle at 75% 55%, rgba(207,235,238,.92) 0 16%, transparent 38%),
    linear-gradient(115deg, var(--cream), var(--sky));
  filter: blur(36px);
  animation: curtain-away 1.15s cubic-bezier(.62,0,.24,1) forwards;
}
body.is-leaving .mist-curtain { animation: curtain-in .52s ease forwards; }
@keyframes curtain-away { 0% { opacity: 1; transform: scale(1); } 100% { opacity: 0; transform: scale(1.18) translateX(8%); visibility: hidden; } }
@keyframes curtain-in { 0% { opacity: 0; visibility: visible; transform: scale(1.18) translateX(-8%); } 100% { opacity: 1; transform: scale(1); visibility: visible; } }

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  width: 100%;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 76px);
  color: var(--cream);
  transition: color .3s ease, background .3s ease, min-height .3s ease;
}
.site-header.is-scrolled {
  position: fixed;
  min-height: 68px;
  background: rgba(255,250,240,.90);
  color: var(--fjord-deep);
  box-shadow: 0 1px 0 rgba(36,70,76,.08);
  backdrop-filter: blur(18px);
}
.wordmark { display: inline-flex; flex-direction: column; line-height: .78; text-decoration: none; }
.wordmark span { font-family: Iowan Old Style, Baskerville, Georgia, serif; font-size: 31px; letter-spacing: -.07em; }
.wordmark small { margin-top: 8px; font-size: 8px; font-weight: 800; letter-spacing: .28em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.7vw, 38px); }
.site-nav a { position: relative; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-decoration: none; }
.site-nav a:not(.nav-cta)::after { position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: currentColor; content: ""; transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.site-nav a.active:not(.nav-cta)::after, .site-nav a:hover::after { transform: scaleX(1); }
.nav-cta { border: 1px solid currentColor; border-radius: 999px; padding: 10px 16px; }
.menu-button { display: none; }

.hero { position: relative; min-height: max(720px, 100svh); overflow: hidden; color: var(--cream); }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-home .hero-media { object-position: center 60%; }
.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21,65,75,.68), rgba(21,65,75,.16) 67%, rgba(21,65,75,.05)),
    linear-gradient(0deg, rgba(21,65,75,.50), transparent 55%);
}
.hero-wash::after {
  position: absolute;
  right: -12%;
  bottom: -22%;
  width: 64vw;
  height: 48vw;
  border-radius: 50%;
  background: rgba(244,246,235,.22);
  filter: blur(75px);
  content: "";
}
.hero-copy { position: relative; z-index: 2; padding-top: clamp(220px, 31vh, 360px); }
.eyebrow, .kicker, .chapter { margin: 0 0 20px; font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero h1, .interior-title h1, .partner-hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: Iowan Old Style, Baskerville, Georgia, serif;
  font-size: clamp(68px, 9.4vw, 142px);
  font-weight: 400;
  letter-spacing: -.075em;
  line-height: .82;
  text-wrap: balance;
}
.hero-lede { max-width: 610px; margin: 32px 0 36px; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; }
.pill { display: inline-flex; min-height: 49px; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 999px; padding: 0 21px; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-decoration: none; transition: transform .2s ease, background .2s ease; }
.pill:hover { transform: translateY(-2px); }
.pill-cream { background: var(--cream); color: var(--fjord-deep); }
.pill-blue { background: var(--fjord); color: var(--cream); }
.arrow-link, .text-link { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 800; text-decoration: none; }
.arrow-link span, .text-link span { transition: transform .2s ease; }
.arrow-link:hover span { transform: translateY(4px); }
.text-link:hover span { transform: translate(3px,-3px); }
.scroll-note { position: absolute; right: clamp(24px,5vw,76px); bottom: 30px; z-index: 2; display: flex; align-items: center; gap: 11px; font-size: 9px; letter-spacing: .08em; }
.scroll-note span { width: 38px; height: 1px; background: currentColor; }

.opening-statement { display: grid; grid-template-columns: .35fr 1.05fr .6fr; gap: clamp(30px,5vw,78px); padding-block: clamp(110px,14vw,210px); }
.kicker { color: var(--fjord); }
.opening-statement h2, .section-intro h2, .partner-tease h2, .hello-grid h2, .beliefs h2, .partnership-intro h2, .process h2 {
  margin: 0;
  font-family: Iowan Old Style, Baskerville, Georgia, serif;
  font-size: clamp(44px,5.7vw,82px);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .94;
}
.statement-side { padding-top: 4px; }
.statement-side p { margin: 0 0 28px; font-size: 16px; }

.cinema-pair { display: grid; min-height: 900px; grid-template-columns: 48% 52%; background: var(--glacier); }
.cinema-video { position: relative; min-height: 900px; overflow: hidden; }
.cinema-video video { width: 100%; height: 100%; object-fit: cover; }
.mist-edge { position: absolute; top: 0; right: -12%; bottom: 0; width: 28%; background: linear-gradient(90deg, transparent, var(--glacier)); filter: blur(22px); }
.cinema-copy { display: flex; justify-content: center; flex-direction: column; padding: clamp(60px,8vw,140px); }
.cinema-copy h2 { margin: 0 0 32px; font-family: Iowan Old Style, Baskerville, Georgia, serif; font-size: clamp(52px,6.3vw,93px); font-weight: 400; letter-spacing: -.065em; line-height: .9; }
.cinema-copy em { color: var(--fjord); font-weight: 400; }
.cinema-copy > p:last-child { max-width: 560px; font-size: 16px; }

.glacier-break { position: relative; height: min(78vw, 920px); min-height: 620px; overflow: hidden; }
.glacier-break img { width: 100%; height: 100%; object-fit: cover; }
.glacier-break::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,64,73,.55), transparent 48%); content: ""; }
.glacier-caption { position: absolute; right: 7vw; bottom: 7vw; z-index: 2; max-width: 620px; color: var(--cream); text-align: right; }
.glacier-caption p { margin: 0; font-family: Iowan Old Style, Baskerville, Georgia, serif; font-size: clamp(42px,5vw,74px); letter-spacing: -.055em; line-height: .92; }
.glacier-caption span { display: inline-block; max-width: 460px; margin-top: 18px; font-size: 14px; }

.story-chapters { padding-block: clamp(110px,14vw,200px); }
.section-intro { display: grid; grid-template-columns: .45fr 1.55fr; align-items: end; margin-bottom: clamp(70px,10vw,140px); }
.story-row { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(50px,9vw,140px); align-items: center; margin-bottom: clamp(90px,13vw,180px); }
.story-row.reverse { grid-template-columns: .8fr 1.2fr; }
.story-row.reverse .story-media { order: 2; }
.story-media { overflow: hidden; background: var(--sky); }
.story-media img, .story-media video { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.story-row:hover .story-media img, .story-row:hover .story-media video { transform: scale(1.025); }
.story-media.landscape { aspect-ratio: 1.28 / 1; }
.story-media.portrait { aspect-ratio: .78 / 1; max-height: 780px; }
.story-copy > span, .offer-block > span { display: block; margin-bottom: 35px; color: var(--berry); font-size: 10px; font-weight: 800; }
.story-copy h3, .belief-grid h3, .offer-block h3, .process-list h3 { margin: 0 0 18px; font-family: Iowan Old Style, Baskerville, Georgia, serif; font-size: clamp(42px,5vw,72px); font-weight: 400; letter-spacing: -.055em; line-height: .92; }
.story-copy p { max-width: 430px; font-size: 15px; }

.wild-chapter { position: relative; display: grid; min-height: 940px; grid-template-columns: 58% 42%; background: var(--snow); }
.wild-image { min-height: 940px; background: url("assets/web/glacier-overlook.jpg") 30% center/cover; }
.wild-panel { display: flex; justify-content: center; flex-direction: column; padding: clamp(55px,7vw,110px); background: var(--sky); }
.wild-panel h2 { margin: 0 0 32px; color: var(--fjord); font-family: Iowan Old Style, Baskerville, Georgia, serif; font-size: clamp(64px,7vw,108px); font-weight: 400; letter-spacing: -.075em; line-height: .78; }
.wild-panel > p:not(.chapter) { max-width: 560px; }
.quiet-note { color: var(--muted); font-size: 11px; }
.wild-panel .text-link { margin-top: 20px; }

.partner-tease { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(60px,10vw,150px); align-items: end; padding-block: clamp(120px,16vw,220px); }
.partner-tease > div:last-child p { max-width: 480px; margin: 0 0 30px; font-size: 16px; }
.site-footer { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; align-items: end; padding: 55px clamp(24px,5vw,76px); background: var(--fjord-deep); color: var(--cream); }
.site-footer p { margin: 0; font-size: 10px; }
.site-footer p:last-child { color: rgba(255,250,240,.68); text-align: right; }

.interior-hero { position: relative; height: 100svh; min-height: 680px; max-height: 960px; color: var(--cream); }
.interior-hero > img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.interior-wash { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,62,72,.63), transparent 60%), linear-gradient(90deg, rgba(20,62,72,.32), transparent 60%); }
.interior-title { position: absolute; right: 0; bottom: 7vw; left: 0; z-index: 2; }
.interior-title h1 { max-width: 1060px; }
.hello-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(60px,10vw,150px); padding-block: clamp(120px,16vw,220px); }
.long-copy { padding-top: 40px; font-size: 17px; }
.long-copy p { margin: 0 0 22px; }
.sven-feature { display: grid; grid-template-columns: .85fr 1.15fr; min-height: 1050px; background: var(--peach); }
.sven-photo { min-height: 1050px; }
.sven-photo img { width: 100%; height: 100%; object-fit: cover; }
.sven-copy { align-self: center; padding: clamp(70px,9vw,150px); }
.sven-copy h2 { margin: 0 0 30px; color: var(--fjord); font-family: Iowan Old Style, Baskerville, Georgia, serif; font-size: clamp(70px,8vw,122px); font-weight: 400; letter-spacing: -.075em; line-height: .78; }
.sven-copy p:not(.chapter) { max-width: 530px; }
.sven-secondary { position: absolute; display: none; }
.beliefs { padding-block: clamp(120px,16vw,220px); }
.belief-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.belief-grid article { min-height: 420px; padding: 34px; background: var(--snow); }
.belief-grid article:nth-child(2) { background: var(--glacier); }
.belief-grid article:nth-child(3) { background: var(--sand); }
.belief-grid span { color: var(--berry); font-size: 10px; font-weight: 800; }
.belief-grid h3 { margin-top: 100px; font-size: clamp(35px,3.7vw,55px); }
.belief-grid p { font-size: 13px; }
.full-video-note { position: relative; height: min(90vw, 980px); min-height: 700px; overflow: hidden; color: var(--cream); }
.full-video-note video { width: 100%; height: 100%; object-fit: cover; }
.full-video-note::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,64,73,.62), transparent 60%); content: ""; }
.full-video-note > div { position: absolute; bottom: 7vw; left: 7vw; z-index: 2; }
.full-video-note p { margin: 0; font-family: Iowan Old Style, Baskerville, Georgia, serif; font-size: clamp(60px,8vw,118px); letter-spacing: -.07em; line-height: .9; }
.full-video-note span { font-size: 15px; }

.partner-hero { position: relative; min-height: max(760px,100svh); background: var(--sky); }
.partner-hero::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(25,79,91,.28), transparent 70%); content: ""; }
.partner-hero-card { position: absolute; top: 50%; left: clamp(24px,7vw,110px); z-index: 2; max-width: 810px; transform: translateY(-42%); padding: clamp(42px,6vw,82px); background: rgba(247,241,230,.90); color: var(--fjord-deep); backdrop-filter: blur(14px); }
.partner-hero h1 { font-size: clamp(60px,7.5vw,112px); }
.partner-hero-card > p:not(.eyebrow) { max-width: 590px; margin: 28px 0; font-size: 16px; }
.partner-hero .pill-cream { background: var(--fjord); color: var(--cream); }
.partnership-intro { display: grid; grid-template-columns: .35fr 1.05fr .6fr; gap: clamp(30px,5vw,78px); align-items: start; padding-block: clamp(120px,16vw,220px); }
.partnership-intro > p:last-child { padding-top: 12px; font-size: 16px; }
.offer-editorial { padding-bottom: clamp(120px,16vw,220px); }
.offer-block { display: grid; grid-template-columns: .18fr .82fr; gap: 30px; padding: clamp(55px,7vw,95px) 0; border-top: 1px solid var(--line); }
.offer-block:last-child { border-bottom: 1px solid var(--line); }
.offer-block h3 { max-width: 900px; }
.offer-block > div > p:last-child { max-width: 640px; }
.fit-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 900px; background: var(--glacier); }
.fit-image img { width: 100%; height: 100%; object-fit: cover; }
.fit-copy { display: flex; justify-content: center; flex-direction: column; padding: clamp(55px,8vw,130px); }
.fit-copy h2 { margin: 0 0 35px; font-family: Iowan Old Style, Baskerville, Georgia, serif; font-size: clamp(52px,6vw,86px); font-weight: 400; letter-spacing: -.06em; line-height: .9; }
.fit-copy ul { margin: 0 0 25px; padding: 0; list-style: none; }
.fit-copy li { padding: 15px 0; border-top: 1px solid rgba(36,70,76,.22); font-size: 13px; }
.fit-copy li::before { margin-right: 12px; color: var(--berry); content: "↗"; }
.process { padding-block: clamp(120px,16vw,220px); }
.process-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.process-list li { display: grid; grid-template-columns: .3fr .7fr; gap: 30px; padding: 42px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--berry); font-size: 10px; font-weight: 800; }
.process-list h3 { font-size: clamp(34px,4vw,58px); }
.process-list p { max-width: 570px; }
.email-finale { padding: clamp(110px,15vw,210px) 7vw; background: var(--sand); text-align: center; }
.email-finale h2 { margin: 0 auto 34px; max-width: 1000px; font-family: Iowan Old Style, Baskerville, Georgia, serif; font-size: clamp(58px,8vw,118px); font-weight: 400; letter-spacing: -.07em; line-height: .88; }
.email-finale > a { display: inline-block; border-bottom: 1px solid currentColor; font-size: clamp(18px,2vw,28px); text-decoration: none; }
.email-finale small { display: block; max-width: 520px; margin: 20px auto 0; color: var(--muted); font-size: 10px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 920px) {
  .content-width { width: min(calc(100% - 40px), var(--max)); }
  .site-nav { position: absolute; top: 68px; right: 18px; display: none; min-width: 250px; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; background: rgba(255,250,240,.97); color: var(--fjord-deep); box-shadow: 0 18px 50px rgba(29,83,98,.16); }
  .site-nav.is-open { display: flex; }
  .site-nav a, .site-nav .nav-cta { border: 0; border-radius: 0; padding: 14px 12px; }
  .menu-button { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 7px; border: 0; background: transparent; color: currentColor; }
  .menu-button span:not(.sr-only) { width: 23px; height: 1px; background: currentColor; }
  .opening-statement, .partnership-intro { grid-template-columns: 1fr; }
  .opening-statement h2, .partnership-intro h2 { max-width: 800px; }
  .cinema-pair { grid-template-columns: 1fr; }
  .cinema-video { min-height: 75svh; }
  .cinema-copy { min-height: 650px; }
  .section-intro { grid-template-columns: 1fr; gap: 18px; }
  .story-row, .story-row.reverse { grid-template-columns: 1fr; }
  .story-row.reverse .story-media { order: 0; }
  .story-media.portrait { width: 72%; }
  .wild-chapter, .sven-feature, .fit-section { grid-template-columns: 1fr; }
  .wild-image, .sven-photo { min-height: 80svh; }
  .wild-panel, .sven-copy, .fit-copy { min-height: 650px; }
  .hello-grid, .partner-tease { grid-template-columns: 1fr; }
  .belief-grid { grid-template-columns: 1fr; }
  .belief-grid article { min-height: 330px; }
  .belief-grid h3 { margin-top: 70px; }
}

@media (max-width: 640px) {
  .site-header { min-height: 72px; padding-inline: 18px; }
  .hero { min-height: 790px; }
  .hero-copy { padding-top: 220px; }
  .hero h1 { font-size: clamp(64px,19vw,92px); }
  .hero-wash { background: linear-gradient(0deg, rgba(21,65,75,.70), rgba(21,65,75,.08) 80%); }
  .scroll-note { display: none; }
  .opening-statement { padding-block: 100px; }
  .cinema-pair, .cinema-video { min-height: 690px; }
  .cinema-copy { min-height: 580px; padding: 65px 24px; }
  .glacier-break { min-height: 700px; }
  .glacier-break img { object-position: 46% center; }
  .glacier-caption { right: 24px; bottom: 40px; left: 24px; text-align: left; }
  .story-chapters { padding-block: 100px; }
  .story-media.portrait { width: 100%; }
  .wild-image { min-height: 680px; background-position: 40% center; }
  .wild-panel { min-height: 620px; padding: 65px 24px; }
  .partner-tease { padding-block: 100px; }
  .site-footer { grid-template-columns: 1fr; align-items: start; }
  .site-footer p:last-child { text-align: left; }
  .interior-hero { min-height: 760px; }
  .interior-hero > img { object-position: 57% center; }
  .interior-title { bottom: 50px; }
  .interior-title h1 { font-size: clamp(62px,18vw,90px); }
  .hello-grid { padding-block: 100px; }
  .sven-photo { min-height: 760px; }
  .sven-copy { min-height: 610px; padding: 65px 24px; }
  .beliefs { padding-block: 100px; }
  .full-video-note { min-height: 760px; }
  .partner-hero-card { right: 18px; left: 18px; padding: 34px 26px; }
  .partner-hero h1 { font-size: clamp(55px,16vw,82px); }
  .partnership-intro, .process { padding-block: 100px; }
  .offer-block { grid-template-columns: 1fr; }
  .fit-image { min-height: 650px; }
  .fit-copy { min-height: 650px; padding: 65px 24px; }
  .process-list li { grid-template-columns: 44px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Mona in Alaska — cinematic homepage */
:root {
  --ivory: #fbfcfc;
  --cream: #fbfcfc;
  --snow: #edf5f7;
  --glacier: #d5e6eb;
  --glacier-bright: #87b8c7;
  --fjord: #17465b;
  --fjord-deep: #0f3547;
  --sky: #dcebf0;
  --sand: #d5e6eb;
  --peach: #edf5f7;
  --berry: #4e91aa;
  --ink: #183c4b;
  --muted: #58717d;
}
.interior-page {
  background: #fbfcfc;
  color: #183c4b;
  font-family: Bahnschrift, "Avenir Next", "Segoe UI", sans-serif;
}
.interior-page h1,
.interior-page h2,
.interior-page h3,
.interior-page .wordmark span {
  font-family: "Bodoni MT", Didot, "Times New Roman", serif;
}
.cinematic-home {
  --paper: #fbfcfc;
  --ice-blue: #edf5f7;
  --mist-blue: #d5e6eb;
  --glacier-blue: #87b8c7;
  --clear-blue: #4e91aa;
  --ocean-blue: #17465b;
  --deep-blue: #0f3547;
  --text-blue: #183c4b;
  margin: 0;
  background: var(--paper);
  color: var(--text-blue);
  font-family: Bahnschrift, "Avenir Next", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.62;
}
.cinematic-home .content-width { width: min(calc(100% - 96px), 1380px); }
.cinematic-home h1,
.cinematic-home h2,
.cinematic-home h3,
.cinematic-home blockquote,
.cinematic-home .wordmark span {
  font-family: "Bodoni MT", Didot, "Times New Roman", serif;
  font-weight: 400;
}
.cinematic-home .site-header { min-height: 102px; color: var(--paper); }
.cinematic-home .site-header.is-scrolled {
  min-height: 72px;
  background: rgba(251,252,252,.92);
  color: var(--deep-blue);
  box-shadow: 0 1px 0 rgba(15,53,71,.09);
}
.cinematic-home .wordmark span { font-size: 34px; letter-spacing: -.04em; }
.cinematic-home .wordmark small { margin-top: 9px; font-size: 9px; letter-spacing: .34em; }
.cinematic-home .site-nav { gap: clamp(24px, 3vw, 50px); }
.cinematic-home .site-nav a {
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.overline,
.chapter-label {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.overline.dark,
.chapter-label { color: var(--clear-blue); }
.chapter-label.light { color: rgba(251,252,252,.76); }
.new-hero {
  position: relative;
  height: max(760px, 100svh);
  overflow: hidden;
  background: var(--deep-blue);
  color: var(--paper);
}
.new-hero__film,
.new-hero__veil { position: absolute; inset: 0; width: 100%; height: 100%; }
.new-hero__film { object-fit: cover; transform: scale(1.015); }
.new-hero__veil {
  background:
    linear-gradient(180deg, rgba(7,37,52,.34) 0%, rgba(7,37,52,.03) 38%, rgba(7,37,52,.48) 100%),
    linear-gradient(90deg, rgba(7,37,52,.38), transparent 64%);
}
.new-hero__veil::after {
  position: absolute;
  right: -12%;
  bottom: -24%;
  width: 85vw;
  height: 40vw;
  border-radius: 50%;
  background: rgba(248,252,252,.52);
  filter: blur(110px);
  content: "";
}
.new-hero__copy {
  position: absolute;
  right: clamp(24px, 6vw, 90px);
  bottom: clamp(105px, 12vh, 150px);
  left: clamp(24px, 6vw, 90px);
  z-index: 2;
}
.new-hero__copy h1 {
  max-width: 1200px;
  margin: 20px 0 30px;
  color: var(--paper);
  font-size: clamp(76px, 11vw, 172px);
  letter-spacing: -.06em;
  line-height: .79;
}
.new-hero__copy > p:last-child { max-width: 680px; margin: 0; font-size: clamp(17px, 1.45vw, 21px); line-height: 1.55; }
.begin-link {
  position: absolute;
  right: clamp(24px, 6vw, 90px);
  bottom: 35px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  font-size: 14px;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.begin-link span { display: block; width: 52px; height: 1px; background: currentColor; transition: width .3s ease; }
.begin-link:hover span { width: 76px; }
.whiteout {
  position: relative;
  display: grid;
  min-height: 930px;
  place-items: center;
  overflow: hidden;
  padding: 160px 40px;
  background:
    radial-gradient(ellipse at 18% 15%, rgba(197,222,229,.55), transparent 32%),
    radial-gradient(ellipse at 80% 82%, rgba(219,236,240,.7), transparent 35%),
    var(--paper);
}
.whiteout::before {
  position: absolute;
  top: -145px;
  right: -10%;
  left: -10%;
  height: 300px;
  background: rgba(251,252,252,.93);
  filter: blur(50px);
  content: "";
}
.whiteout__ghost {
  position: absolute;
  top: 43%;
  left: 50%;
  color: rgba(66,132,154,.055);
  font-family: "Bodoni MT", Didot, serif;
  font-size: min(27vw, 430px);
  letter-spacing: -.075em;
  transform: translate(-50%,-50%);
  white-space: nowrap;
}
.whiteout__inner { position: relative; z-index: 1; width: min(900px, 100%); text-align: center; }
.whiteout h2 { margin: 35px 0 24px; font-size: clamp(82px, 11vw, 156px); letter-spacing: -.065em; line-height: .82; }
.whiteout__lead { margin: 0 auto; max-width: 820px; font-size: clamp(21px, 2.25vw, 32px); line-height: 1.48; }
.whiteout__lead em { color: var(--clear-blue); font-family: "Bodoni MT", Didot, serif; }
.whiteout__invitation { margin: 52px 0 0; font-size: 18px; letter-spacing: .06em; text-transform: uppercase; }
.meaning { padding-top: clamp(120px, 15vw, 220px); background: var(--paper); }
.meaning__heading { display: grid; grid-template-columns: .34fr 1fr; gap: 50px; align-items: start; padding-bottom: clamp(100px, 13vw, 180px); }
.meaning__heading h2 { margin: 0; font-size: clamp(65px, 8.7vw, 126px); letter-spacing: -.065em; line-height: .84; }
.meaning__scene { position: relative; height: min(88vw, 1040px); min-height: 680px; overflow: hidden; color: var(--paper); }
.meaning__scene img,
.meaning__scene video { width: 100%; height: 100%; object-fit: cover; }
.meaning__scene--glacier::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,48,64,.48), transparent 54%); content: ""; }
.meaning__scene--glacier p {
  position: absolute;
  right: 7vw;
  bottom: 8vw;
  z-index: 1;
  margin: 0;
  font-family: "Bodoni MT", Didot, serif;
  font-size: clamp(52px, 7.2vw, 108px);
  letter-spacing: -.055em;
  line-height: .87;
  text-align: right;
}
.meaning__interlude {
  position: relative;
  display: flex;
  min-height: 720px;
  align-items: center;
  justify-content: center;
  padding-block: 120px;
}
.meaning__interlude p { max-width: 1020px; margin: 0; font-family: "Bodoni MT", Didot, serif; font-size: clamp(44px, 6vw, 86px); letter-spacing: -.045em; line-height: .98; text-align: center; }
.drawn-line { position: absolute; right: 10%; bottom: 115px; width: min(42vw, 520px); height: 62px; }
.drawn-line svg { width: 100%; height: 100%; }
.drawn-line path { fill: none; stroke: var(--glacier-blue); stroke-linecap: round; stroke-width: 2; }
.meaning__scene--horses { height: min(68vw, 900px); }
.meaning__scene--horses video { object-position: center 58%; }
.meaning__scene-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,47,62,.64), transparent 70%); }
.meaning__scene--horses p {
  position: absolute;
  bottom: clamp(60px, 8vw, 120px);
  left: clamp(25px, 7vw, 110px);
  z-index: 1;
  max-width: 690px;
  margin: 0;
  font-family: "Bodoni MT", Didot, serif;
  font-size: clamp(44px, 5.5vw, 82px);
  letter-spacing: -.04em;
  line-height: .96;
}
.meaning__closing { padding-block: clamp(130px, 17vw, 250px); }
.meaning__closing > p:not(.meaning__signature) { max-width: 750px; margin: 0 0 25px auto; font-size: clamp(19px, 1.7vw, 25px); }
.meaning__closing h3 { max-width: 1130px; margin: clamp(100px, 12vw, 170px) auto 55px 0; font-size: clamp(52px, 7vw, 104px); letter-spacing: -.055em; line-height: .93; }
.meaning__closing h3 em { color: var(--clear-blue); }
.meaning__signature { margin: 0; font-size: 18px; letter-spacing: .05em; text-transform: uppercase; }
.explore { padding-top: clamp(130px, 16vw, 240px); background: var(--ice-blue); overflow: hidden; }
.explore__intro { display: grid; grid-template-columns: .32fr .9fr .62fr; gap: clamp(30px, 5vw, 80px); align-items: start; padding-bottom: clamp(90px, 11vw, 150px); }
.explore__intro h2 { margin: 0; font-size: clamp(68px, 8.8vw, 128px); letter-spacing: -.065em; line-height: .82; }
.explore__intro h2 em { color: var(--clear-blue); }
.explore__copy p { margin: 0 0 24px; }
.adventure-gallery { display: flex; width: 100%; height: min(67vw, 820px); min-height: 620px; background: var(--deep-blue); }
.gallery-panel {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.32);
  padding: 0;
  background: var(--panel-image) center/cover no-repeat;
  color: var(--paper);
  cursor: pointer;
  isolation: isolate;
  transition: flex .75s cubic-bezier(.22,.61,.36,1), filter .45s ease;
}
.gallery-panel::after { position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(8,42,57,.68), transparent 58%); content: ""; }
.gallery-panel:not(.is-active) { filter: saturate(.72) brightness(.8); }
.gallery-panel.is-active { flex: 2.65; filter: none; }
.gallery-panel__number { position: absolute; top: 30px; left: 30px; font-size: 14px; letter-spacing: .12em; }
.gallery-panel__label { position: absolute; bottom: 42px; left: 34px; font-family: "Bodoni MT", Didot, serif; font-size: clamp(27px, 3vw, 46px); line-height: .95; white-space: nowrap; writing-mode: vertical-rl; transform: rotate(180deg); transition: transform .45s ease, writing-mode .45s ease; }
.gallery-panel.is-active .gallery-panel__label { bottom: 36px; font-size: clamp(38px, 4.5vw, 68px); white-space: normal; writing-mode: horizontal-tb; transform: none; }
.permission { padding-block: clamp(130px, 17vw, 250px); text-align: center; }
.permission > p { margin: 0 auto 42px; max-width: 650px; }
.permission blockquote { margin: 0; color: var(--ocean-blue); font-size: clamp(55px, 7.8vw, 114px); letter-spacing: -.06em; line-height: .88; }
.permission > div { margin-top: 60px; }
.permission > div p { margin: 5px 0; }
.permission > div p:last-child { color: var(--clear-blue); font-size: 20px; }
.protecting { position: relative; min-height: 1180px; overflow: hidden; background: var(--deep-blue); color: var(--paper); }
.protecting__film { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.protecting__wash { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,40,54,.86), rgba(8,40,54,.38) 58%, rgba(8,40,54,.55)), linear-gradient(0deg, rgba(8,40,54,.62), transparent 45%); }
.protecting__content { position: relative; z-index: 1; display: grid; min-height: 1180px; grid-template-columns: 1.05fr .65fr; gap: clamp(60px, 10vw, 160px); align-items: center; padding-block: 150px; }
.protecting__title h2 { margin: 28px 0 0; font-size: clamp(80px, 10vw, 150px); letter-spacing: -.065em; line-height: .77; }
.protecting__title h2 em { color: #b9dae3; }
.protecting__body { align-self: end; padding-bottom: 40px; }
.protecting__lead { font-family: "Bodoni MT", Didot, serif; font-size: clamp(28px, 3vw, 43px); line-height: 1.08; }
.protecting__body ul { margin: 40px 0; padding: 0; list-style: none; }
.protecting__body li { padding: 16px 0; border-top: 1px solid rgba(255,255,255,.3); font-size: 16px; }
.protecting__body li:last-child { border-bottom: 1px solid rgba(255,255,255,.3); }
.series-statement { position: relative; min-height: 1050px; overflow: hidden; padding: clamp(160px, 20vw, 300px) 0; background: var(--paper); }
.series-statement__mark { position: absolute; top: 0; right: -4vw; color: rgba(91,154,174,.06); font-family: "Bodoni MT", Didot, serif; font-size: min(36vw, 560px); line-height: .8; }
.series-statement__inner { position: relative; z-index: 1; }
.series-statement__inner > p { max-width: 720px; margin: 0 0 28px; font-size: clamp(20px, 2vw, 28px); }
.series-statement__inner h2 { max-width: 1160px; margin: 110px 0 0 auto; color: var(--ocean-blue); font-size: clamp(56px, 7vw, 104px); letter-spacing: -.055em; line-height: .92; }
.meet { display: grid; grid-template-columns: 1.05fr .95fr; background: var(--mist-blue); }
.meet__portrait { position: sticky; top: 0; height: 100svh; min-height: 760px; }
.meet__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.meet__story { padding: clamp(100px, 10vw, 170px) clamp(45px, 8vw, 130px); }
.meet__story h2 { margin: 30px 0 52px; font-size: clamp(76px, 8vw, 120px); letter-spacing: -.065em; line-height: .82; }
.meet__story p { max-width: 610px; margin: 0 0 25px; }
.meet__story .meet__lead { font-family: "Bodoni MT", Didot, serif; font-size: 34px; }
.meet__story h3 { max-width: 600px; margin: 90px 0 38px; color: var(--ocean-blue); font-size: clamp(48px, 5vw, 76px); letter-spacing: -.045em; line-height: .94; }
.partner { position: relative; min-height: 1080px; overflow: hidden; background: var(--deep-blue); color: var(--paper); }
.partner__image { position: absolute; inset: 0; background: url("assets/web/glacier-water.jpg") center/cover no-repeat; transform: scale(1.05); }
.partner__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,38,53,.92), rgba(8,38,53,.48) 64%, rgba(8,38,53,.28)), linear-gradient(0deg, rgba(8,38,53,.78), transparent 60%); }
.partner__content { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .65fr; gap: clamp(60px, 10vw, 150px); align-content: center; min-height: 1080px; padding-block: 130px; }
.partner__content > .chapter-label { grid-column: 1 / -1; }
.partner__content h2 { margin: 0; font-size: clamp(72px, 9vw, 138px); letter-spacing: -.065em; line-height: .8; }
.partner__content h2 em { color: #b9dae3; }
.partner__copy { align-self: end; }
.partner__copy p { margin: 0 0 25px; }
.partner-link { display: inline-flex; gap: 18px; align-items: center; margin-top: 28px; border-bottom: 1px solid currentColor; padding: 0 0 8px; color: inherit; font-family: "Bodoni MT", Didot, serif; font-size: 29px; text-decoration: none; }
.partner-link span { transition: transform .25s ease; }
.partner-link:hover span { transform: translateX(8px); }
.new-footer { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; align-items: end; padding: 58px clamp(24px, 6vw, 90px); background: var(--deep-blue); color: var(--paper); }
.new-footer p { margin: 0; font-size: 14px; }
.new-footer p:nth-child(2) { text-align: center; }
.new-footer p:last-child { color: rgba(251,252,252,.68); text-align: right; }
.new-footer .wordmark { display: inline-flex; width: fit-content; flex-direction: column; line-height: .78; text-decoration: none; }
.new-footer .wordmark span { font-size: 34px; letter-spacing: -.04em; }
.new-footer .wordmark small { margin-top: 9px; font-family: Bahnschrift, sans-serif; font-size: 9px; font-weight: 500; letter-spacing: .34em; text-transform: uppercase; }

@media (max-width: 980px) {
  .cinematic-home .content-width { width: min(calc(100% - 48px), 1380px); }
  .cinematic-home .site-header { min-height: 78px; padding-inline: 24px; }
  .cinematic-home .site-nav { top: 68px; background: rgba(251,252,252,.98); color: var(--deep-blue); }
  .cinematic-home .site-nav a { font-size: 14px; }
  .meaning__heading,
  .explore__intro,
  .protecting__content,
  .partner__content { grid-template-columns: 1fr; }
  .meaning__heading { gap: 36px; }
  .explore__intro { gap: 32px; }
  .explore__copy { max-width: 650px; }
  .protecting__content { align-content: center; }
  .protecting__body { max-width: 620px; padding: 0; }
  .meet { grid-template-columns: 1fr; }
  .meet__portrait { position: relative; height: min(110vw, 900px); }
  .partner__content > .chapter-label { grid-column: auto; }
  .partner__copy { max-width: 620px; }
}

@media (max-width: 680px) {
  .cinematic-home { font-size: 16px; }
  .cinematic-home .content-width { width: min(calc(100% - 38px), 1380px); }
  .new-hero { min-height: 760px; }
  .new-hero__film { object-position: 56% center; }
  .new-hero__copy { right: 20px; bottom: 100px; left: 20px; }
  .new-hero__copy h1 { font-size: clamp(64px, 19vw, 94px); line-height: .82; }
  .new-hero__copy br { display: none; }
  .begin-link { right: auto; bottom: 32px; left: 20px; }
  .whiteout { min-height: 820px; padding: 130px 20px; }
  .whiteout h2 { font-size: 78px; }
  .whiteout__lead { font-size: 21px; }
  .meaning__heading h2,
  .explore__intro h2 { font-size: clamp(58px, 17vw, 82px); }
  .meaning__scene { min-height: 700px; }
  .meaning__scene--glacier img { object-position: 43% center; }
  .meaning__scene--glacier p { right: 21px; bottom: 45px; left: 21px; font-size: 54px; text-align: left; }
  .meaning__interlude { min-height: 620px; }
  .meaning__interlude p { font-size: 44px; }
  .drawn-line { right: 5%; bottom: 72px; width: 70vw; }
  .meaning__scene--horses { min-height: 670px; }
  .meaning__scene--horses video { object-position: 58% center; }
  .meaning__scene--horses p { right: 21px; bottom: 45px; left: 21px; font-size: 42px; }
  .meaning__closing h3 { font-size: 48px; }
  .adventure-gallery { display: grid; height: auto; min-height: 0; grid-template-columns: 1fr 1fr; }
  .gallery-panel,
  .gallery-panel.is-active { min-height: 430px; flex: none; }
  .gallery-panel__label,
  .gallery-panel.is-active .gallery-panel__label { right: 18px; bottom: 22px; left: 18px; font-size: 31px; white-space: normal; writing-mode: horizontal-tb; transform: none; }
  .gallery-panel__number { top: 18px; left: 18px; }
  .permission blockquote { font-size: 50px; }
  .protecting { min-height: 1100px; }
  .protecting__content { min-height: 1100px; padding-block: 100px; }
  .protecting__title h2 { font-size: 74px; }
  .protecting__body li { font-size: 15px; }
  .series-statement { min-height: 920px; }
  .series-statement__inner h2 { margin-top: 80px; font-size: 49px; }
  .meet__portrait { min-height: 680px; }
  .meet__story { padding: 90px 22px; }
  .meet__story h2 { font-size: 72px; }
  .partner { min-height: 1050px; }
  .partner__content { min-height: 1050px; padding-block: 90px; }
  .partner__content h2 { font-size: 64px; }
  .new-footer { grid-template-columns: 1fr; align-items: start; }
  .new-footer p:nth-child(2),
  .new-footer p:last-child { text-align: left; }
}
