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

:root {
  --bg: #05070a;
  --navy: #071a2f;
  --ice: #f7f3ea;
  --muted: #aeb8c5;
  --gold: #c8a45d;
  --line: rgba(200,164,93,.24);
  --glass: rgba(255,255,255,.035);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ice);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 78px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 64px);
  background: rgba(5, 7, 10, .72);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 210px;
  font-size: 16px;
  letter-spacing: .30em;
  font-weight: 700;
  color: var(--ice);
  line-height: 1;
}
.brand img {
  width: 54px;
  height: 42px;
  object-fit: contain;
  object-position: center;
  display: block;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 12px rgba(200,164,93,.24));
}
.brand span {
  display: block;
  transform: translateY(1px);
}
.nav { display: flex; gap: clamp(18px, 2.2vw, 34px); }
.nav a,
.header-cta {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .25s ease, border-color .25s ease, transform .25s ease;
}
.nav a:hover { color: var(--gold); }
.header-cta {
  border: 1px solid var(--line);
  color: var(--gold);
  padding: 14px 18px;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}
.header-cta:hover { transform: translateY(-2px); border-color: rgba(200,164,93,.65); }

@media (max-width: 900px) {
  .site-header { height: 72px; }
  .brand { min-width: auto; font-size: 14px; gap: 10px; }
  .brand img { width: 42px; height: 34px; }
  .nav { display: none; }
  .header-cta { padding: 12px 14px; font-size: 10px; }
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  padding: 140px 22px 80px;
  overflow: hidden;
  background: #05070a url("assets/hero-poster.jpg") center / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/hero-poster.jpg") center / cover no-repeat;
  opacity: .55;
  filter: saturate(.82) contrast(1.08) brightness(.72);
  z-index: 0;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .82;
  filter: saturate(.95) contrast(1.12) brightness(.92);
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom, rgba(5,7,10,.18), rgba(5,7,10,.48) 48%, rgba(5,7,10,.90)),
    radial-gradient(circle at 50% 18%, rgba(200,164,93,.16), transparent 34%),
    linear-gradient(90deg, rgba(5,7,10,.62), rgba(5,7,10,.20) 50%, rgba(5,7,10,.62));
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 35%, rgba(255,255,255,.035) 45%, transparent 55%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.018) 0 1px, transparent 1px 90px);
  opacity: .55;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 940px;
  text-align: center;
}
.hero-logo {
  width: clamp(90px, 12vw, 140px);
  height: auto;
  object-fit: contain;
  margin-bottom: 28px;
  filter: drop-shadow(0 18px 44px rgba(0,0,0,.65));
}
.eyebrow {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 22px;
}
.eyebrow.small { font-size: 10px; margin-bottom: 12px; }
h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  margin: 0;
}
h1 {
  font-size: clamp(58px, 11vw, 132px);
  line-height: .88;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
h2 {
  font-size: clamp(42px, 6vw, 82px);
  line-height: .95;
  letter-spacing: -.025em;
}
h3 { font-size: clamp(32px, 4vw, 54px); line-height: 1; }
p {
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.85;
  font-weight: 300;
}
.hero-content p { max-width: 700px; margin: 30px auto 0; }
.hero-actions { margin-top: 42px; display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
  border: 0;
  cursor: pointer;
}
.btn:hover { transform: translateY(-3px); }
.btn.primary { background: var(--gold); color: #071a2f; }
.btn.ghost { border: 1px solid var(--line); color: var(--ice); background: transparent; }
.scroll-mark {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .32em;
}
.section {
  padding: clamp(90px, 12vw, 160px) clamp(20px, 5vw, 72px);
  position: relative;
}
.section.compact { padding-top: clamp(60px, 9vw, 110px); }
.intro { max-width: 980px; margin: 0 auto; text-align: center; }
.intro p, .section-head p { max-width: 760px; margin: 24px auto 0; }
.section-head { max-width: 850px; margin: 0 auto 54px; text-align: center; }

.horizontal-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 39vw);
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 8px max(20px, calc((100vw - 1220px) / 2)) 26px;
  margin: 0 calc(clamp(20px, 5vw, 72px) * -1);
}
.horizontal-scroll::-webkit-scrollbar { height: 8px; }
.horizontal-scroll::-webkit-scrollbar-thumb { background: rgba(200,164,93,.42); border-radius: 999px; }
.accommodation-card {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(200,164,93,.20);
  border-radius: 38px;
  overflow: hidden;
  scroll-snap-align: center;
  background:
    linear-gradient(160deg, rgba(7,26,47,.96), rgba(5,7,10,.72)),
    radial-gradient(circle at 50% 0%, rgba(200,164,93,.22), transparent 42%);
  box-shadow: 0 38px 110px rgba(0,0,0,.34);
}
.accommodation-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,7,10,.95), transparent 60%), var(--card-image, none);
  background-size: cover;
  background-position: center;
  opacity: var(--image-opacity, .22);
}
.accommodation-card-footer { position: absolute; inset: auto 0 0 0; padding: 34px; }
.tag {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(200,164,93,.28);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}
.accommodation-card h3 { font-size: clamp(44px, 5vw, 76px); }
.accommodation-card p { font-size: 15px; }
.accommodation-location { display: block; margin: 8px 0 16px; color: rgba(247,243,234,.86); font-size: 12px; letter-spacing: .20em; text-transform: uppercase; font-weight: 700; }
.accommodation-card button { margin-top: 18px; }

.mini-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.mini-card {
  min-height: 150px;
  border-radius: 24px;
  border: 1px solid rgba(200,164,93,.16);
  background: rgba(255,255,255,.035);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.mini-card strong { font-family: "Cormorant Garamond", serif; font-size: 30px; font-weight: 500; }
.mini-card span { color: var(--muted); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; margin-top: 8px; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.data-cards { grid-template-columns: repeat(4, 1fr); }
.beyond-cards { grid-template-columns: repeat(3, 1fr); }
.card, .choice-card {
  min-height: 330px;
  padding: 30px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(7,26,47,.78), rgba(255,255,255,.025));
  border: 1px solid rgba(200,164,93,.18);
  box-shadow: 0 30px 90px rgba(0,0,0,.34);
  transition: transform .35s ease, border-color .35s ease;
}
.card:hover, .choice-card:hover { transform: translateY(-8px); border-color: rgba(200,164,93,.55); }
.card .number {
  display: block;
  color: rgba(200,164,93,.44);
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  margin-bottom: 28px;
}
.card h3 { font-size: 32px; }
.card p, .choice-card p { font-size: 14px; }
.card button, .choice-card button { margin-top: 18px; }

.journey { background: linear-gradient(180deg, transparent, rgba(7,26,47,.24), transparent); }
.journey-block {
  max-width: 1220px;
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: .58fr 1.42fr;
  gap: 30px;
  align-items: stretch;
}
.journey-copy {
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(200,164,93,.18);
  background: rgba(255,255,255,.025);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.choice-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(360px, 42vw, 520px);
  grid-template-columns: none;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 4px 18px;
  scroll-snap-type: inline mandatory;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}
.choice-grid::-webkit-scrollbar { height: 8px; }
.choice-grid::-webkit-scrollbar-track { background: rgba(255,255,255,.045); border-radius: 999px; }
.choice-grid::-webkit-scrollbar-thumb { background: rgba(200,164,93,.48); border-radius: 999px; }
.choice-card {
  min-height: 218px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.choice-card h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  line-height: 1;
}
.choice-card small {
  display: block;
  margin: 14px 0 8px;
  color: var(--gold);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 52px;
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
}
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.service-grid div {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  background: rgba(255,255,255,.035);
  color: var(--ice);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 700;
}
.request-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 86px);
  text-align: center;
  border-radius: 42px;
  border: 1px solid rgba(200,164,93,.22);
  background:
    radial-gradient(circle at 50% 0%, rgba(200,164,93,.18), transparent 36%),
    rgba(7,26,47,.72);
  box-shadow: 0 40px 120px rgba(0,0,0,.38);
}
.privacy-note { font-size: 12px; max-width: 560px; margin: 22px auto 0; color: rgba(174,184,197,.75); }
.footer {
  min-height: 160px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 36px 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.footer strong { color: var(--ice); }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .data-cards { grid-template-columns: repeat(2, 1fr); }
  .mini-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-block { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .site-header { height: 72px; }
  .nav, .header-cta { display: none; }
  .brand span { font-size: 15px; }
  .hero { text-align: center; padding-top: 120px; }
  .cards, .split, .data-cards, .beyond-cards { grid-template-columns: 1fr; }
  .choice-grid { grid-auto-columns: minmax(310px, 86vw); padding-bottom: 20px; }
  .horizontal-scroll { grid-auto-columns: minmax(280px, 84vw); }
  .accommodation-card { min-height: 470px; }
  .card, .choice-card { min-height: auto; }
  .service-grid { grid-template-columns: 1fr; }
}

/* v3 logo safety fix: the SkiElit symbol is never used as a full-screen cover image. */
.brand img {
  width: 34px !important;
  height: 34px !important;
  object-fit: contain !important;
  object-position: center !important;
}

.hero-logo {
  display: block !important;
  width: clamp(130px, 18vw, 230px) !important;
  max-width: 60vw !important;
  height: auto !important;
  max-height: 230px !important;
  object-fit: contain !important;
  object-position: center !important;
  margin: 0 auto 32px !important;
  filter: drop-shadow(0 20px 46px rgba(200,164,93,.18)) drop-shadow(0 22px 46px rgba(0,0,0,.8));
}

.hero,
.hero-bg,
.hero-bg::after {
  background-size: auto !important;
}

.hero-content {
  padding-top: 10px;
}

@media (max-width: 720px) {
  .hero-logo {
    width: min(170px, 52vw) !important;
    max-height: 170px !important;
    margin-bottom: 24px !important;
  }
}


/* v4 no-logo-fight fix: hero uses text mark only; triangle stays only in header/logo assets. */
.hero-content .hero-logo {
  display: none !important;
}
.hero-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 18px;
  margin: 0 auto 24px;
  border: 1px solid rgba(200,164,93,.38);
  border-radius: 999px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .42em;
  text-transform: uppercase;
  background: rgba(0,0,0,.26);
  box-shadow: 0 14px 50px rgba(0,0,0,.38);
}
.hero-content {
  isolation: isolate;
}
.hero-content h1,
.hero-content p,
.hero-actions,
.hero-mark,
.hero-content .eyebrow {
  position: relative;
  z-index: 3;
}


/* v7 clean logo fix: no image asset in header, no oversized triangle. */
.site-header {
  height: 76px !important;
  align-items: center !important;
}
.brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 14px !important;
  min-width: 190px !important;
  line-height: 1 !important;
  position: relative !important;
  z-index: 60 !important;
}
.brand img,
.hero-logo {
  display: none !important;
}
.brand-symbol {
  width: 42px !important;
  height: 32px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 42px !important;
  overflow: visible !important;
  filter: drop-shadow(0 0 10px rgba(200,164,93,.36));
}
.brand-symbol svg {
  width: 42px !important;
  height: 32px !important;
  display: block !important;
}
.brand-symbol path:first-child {
  fill: var(--gold);
}
.brand-symbol path:nth-child(2) {
  fill: var(--bg);
}
.brand-symbol circle {
  fill: #fff3b0;
}
.brand-name {
  display: block !important;
  color: var(--ice) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: .32em !important;
  transform: translateY(1px) !important;
}
.hero {
  padding-top: 130px !important;
}
.hero-content {
  max-width: 1020px !important;
  padding-top: 0 !important;
}
.hero-mark {
  margin-top: 0 !important;
}
@media (max-width: 880px) {
  .site-header { height: 70px !important; }
  .brand { min-width: auto !important; gap: 10px !important; }
  .brand-symbol, .brand-symbol svg { width: 36px !important; height: 28px !important; flex-basis: 36px !important; }
  .brand-name { font-size: 13px !important; letter-spacing: .26em !important; }
  .hero { padding-top: 108px !important; }
}

/* v14 luxury scroll reveal + private selection refinement */
.hero-video {
  display: block !important;
  background: #05070a;
}
.hero::before {
  z-index: 0 !important;
  pointer-events: none;
}
.hero-bg {
  z-index: 2 !important;
}

/* Scroll transition message: appears from black, reaches full luxury focus, then disappears back into black. */
.scroll-message {
  --msg-opacity: 0;
  --msg-scale: .72;
  --msg-blur: 20px;
  --msg-y: 34px;
  --msg-letter: .08em;
  --glow-opacity: 0;
  min-height: 175vh;
  padding: 0 clamp(20px, 5vw, 72px);
  background: #020304;
  position: relative;
  overflow: clip;
  isolation: isolate;
}
.scroll-message::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(213,177,100,.20), transparent 23%),
    radial-gradient(circle at 50% 48%, rgba(255,255,255,.06), transparent 38%);
  opacity: var(--glow-opacity);
  transform: scale(calc(.72 + (var(--glow-opacity) * .34)));
  transition: opacity .12s linear;
  z-index: 0;
}
.scroll-message::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, #020304 0%, rgba(2,3,4,.82) 18%, rgba(2,3,4,.24) 50%, rgba(2,3,4,.82) 82%, #020304 100%);
  pointer-events: none;
  z-index: 2;
}
.scroll-message-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  opacity: var(--msg-opacity);
  transform: translateY(var(--msg-y)) scale(var(--msg-scale));
  filter: blur(var(--msg-blur));
  will-change: opacity, transform, filter;
}
.scroll-message-inner .eyebrow {
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: calc(.22em + var(--msg-letter));
}
.scroll-message-inner h2 {
  font-size: clamp(48px, 7vw, 108px);
  line-height: .88;
  max-width: 820px;
  margin: 0;
  text-shadow: 0 18px 70px rgba(0,0,0,.8);
}
.scroll-message-inner p {
  max-width: 620px;
  margin: 24px auto 0;
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.65;
  color: rgba(247,243,234,.66);
}
.private-selection {
  padding-top: clamp(78px, 10vw, 128px);
}
.private-selection-head {
  max-width: 760px;
  margin-bottom: 38px;
}
.private-selection-head h2 {
  font-size: clamp(44px, 6.4vw, 86px);
  line-height: .92;
  max-width: 780px;
}
.private-selection-head .eyebrow {
  color: var(--gold);
  margin-bottom: 16px;
}
.accommodation-card-footer p {
  max-width: 520px;
  line-height: 1.55;
  color: rgba(247,243,234,.72);
}
.accommodation-card h3 {
  line-height: .92;
}
@media (max-width: 880px) {
  .scroll-message { min-height: 155vh; }
  .scroll-message-inner h2 { font-size: clamp(42px, 15vw, 72px); }
  .scroll-message-inner p { max-width: 340px; }
  .private-selection-head { margin-bottom: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-message { min-height: 82vh; --msg-opacity: 1; --msg-scale: 1; --msg-blur: 0px; --msg-y: 0px; --glow-opacity: .55; }
  .scroll-message-inner { position: relative; height: 82vh; }
}


/* v16: journey options use true horizontal scroll to reduce vertical height on mobile and desktop. */
.journey-block { margin-bottom: 34px; }
.journey-copy h3 { margin-bottom: 0; }
.choice-card p { max-width: 92%; }
@media (max-width: 1100px) {
  .choice-grid { grid-auto-columns: minmax(340px, 58vw); }
}
@media (max-width: 880px) {
  .journey { padding-top: 70px; }
  .journey-block { gap: 18px; margin-bottom: 28px; }
  .journey-copy { padding: 24px; border-radius: 28px; }
  .choice-card { min-height: 210px; padding: 24px; border-radius: 28px; }
}
@media (max-width: 480px) {
  .choice-grid { grid-auto-columns: minmax(286px, 84vw); gap: 14px; }
  .choice-card { min-height: 220px; }
}
