:root {
  --navy-950: #06192c;
  --navy-900: #0b2744;
  --navy-800: #123b5e;
  --blue-700: #0c6f92;
  --blue-500: #20a8d2;
  --blue-200: #b9e8f7;
  --ice-100: #eef9fd;
  --ice-50: #f7fcfe;
  --white: #ffffff;
  --gold: #f4b94f;
  --green: #2e946b;
  --red: #c74a54;
  --text: #17324a;
  --muted: #61778a;
  --border: rgba(11, 39, 68, .12);
  --shadow-sm: 0 8px 30px rgba(6, 25, 44, .08);
  --shadow-lg: 0 28px 80px rgba(6, 25, 44, .18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: min(1180px, calc(100% - 40px));
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--ice-50);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { color: var(--white); background: var(--blue-700); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.section-soft { background: linear-gradient(180deg, #fff 0%, #eef9fd 100%); }
.section-dark { color: var(--white); background: var(--navy-950); }
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stack { display: grid; gap: 18px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--blue-700);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  border-radius: 99px;
  background: currentColor;
}
.section-dark .eyebrow { color: var(--blue-200); }
.section-title {
  max-width: 760px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.section-dark .section-title { color: var(--white); }
.section-lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.section-dark .section-lead { color: rgba(255,255,255,.72); }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.section-heading .section-lead { max-width: 430px; margin: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid rgba(32,168,210,.36); outline-offset: 3px; }
.btn-primary { color: var(--white); background: var(--blue-700); box-shadow: 0 14px 34px rgba(12,111,146,.3); }
.btn-primary:hover { background: var(--navy-800); box-shadow: 0 18px 44px rgba(6,25,44,.3); }
.btn-light { color: var(--navy-950); background: var(--white); box-shadow: 0 14px 34px rgba(6,25,44,.16); }
.btn-light:hover { background: var(--ice-100); }
.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.08); backdrop-filter: blur(10px); }
.btn-ghost:hover { background: rgba(255,255,255,.16); }
.btn-outline { color: var(--navy-900); border-color: var(--border); background: var(--white); }
.btn-outline:hover { border-color: var(--blue-500); color: var(--blue-700); }
.btn svg { width: 18px; height: 18px; }

.topbar {
  position: relative;
  z-index: 31;
  color: rgba(255,255,255,.82);
  background: var(--navy-950);
  font-size: .82rem;
}
.topbar-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar-list { display: flex; align-items: center; gap: 22px; }
.topbar a:hover { color: var(--white); }

.site-header {
  position: absolute;
  inset: 38px 0 auto;
  z-index: 30;
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.site-header.is-sticky {
  position: fixed;
  inset: 0 0 auto;
  color: var(--navy-950);
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 36px rgba(6,25,44,.1);
  backdrop-filter: blur(18px);
}
.site-header.is-sticky .logo-text, .site-header.is-sticky .nav-link { color: var(--navy-950); }
.site-header.is-sticky .logo-mark { color: var(--blue-700); background: var(--ice-100); }
.site-header.is-sticky .menu-toggle { color: var(--navy-950); border-color: var(--border); }
.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo { display: inline-flex; align-items: center; gap: 12px; color: var(--white); }
.logo-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 15px;
  color: var(--navy-950);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(6,25,44,.14);
}
.logo-mark svg { width: 28px; height: 28px; }
.logo-text { display: grid; color: var(--white); line-height: 1.08; }
.logo-text strong { font-size: .96rem; letter-spacing: -.02em; }
.logo-text small { margin-top: 4px; opacity: .68; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav-list { display: flex; align-items: center; gap: 25px; margin: 0; padding: 0; list-style: none; }
.nav-link {
  position: relative;
  padding: 28px 0;
  color: rgba(255,255,255,.9);
  font-size: .91rem;
  font-weight: 720;
}
.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  content: "";
  border-radius: 99px;
  background: var(--blue-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.site-header:not(.is-sticky) .header-actions .btn-outline { color: var(--white); border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.08); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 14px;
  color: var(--white);
  background: transparent;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  content: "";
  border-radius: 99px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle span { margin: 5px 0; }
.menu-open .menu-toggle::before { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle span { opacity: 0; }
.menu-open .menu-toggle::after { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}
.hero-media, .page-hero-media {
  position: absolute;
  inset: 0;
}
.hero-media picture, .hero-media img, .page-hero-media picture, .page-hero-media img { width: 100%; height: 100%; }
.hero-media img, .page-hero-media img { object-fit: cover; object-position: center; }
.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(4,20,36,.92) 0%, rgba(5,30,50,.67) 46%, rgba(5,30,50,.22) 75%, rgba(5,30,50,.16) 100%),
    linear-gradient(0deg, rgba(4,20,36,.54) 0%, transparent 45%);
}
.hero::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  opacity: .28;
  background-image:
    radial-gradient(circle at 15% 20%, #fff 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 75% 30%, #fff 0 1px, transparent 1.6px),
    radial-gradient(circle at 45% 65%, #fff 0 1px, transparent 1.5px);
  background-size: 120px 140px, 160px 190px, 210px 230px;
  animation: snow 18s linear infinite;
  pointer-events: none;
}
@keyframes snow { to { background-position: 0 140px, 0 190px, 0 230px; } }
.hero-inner {
  position: relative;
  z-index: 4;
  display: grid;
  min-height: 860px;
  align-items: center;
  padding: 170px 0 100px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .58fr);
  gap: 70px;
}
.hero-copy { max-width: 760px; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  font-size: .82rem;
  font-weight: 700;
}
.hero-kicker::before { width: 8px; height: 8px; content: ""; border-radius: 50%; background: var(--blue-200); box-shadow: 0 0 0 6px rgba(185,232,247,.14); }
.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.2rem, 7.1vw, 6.6rem);
  line-height: .94;
  letter-spacing: -.062em;
  text-wrap: balance;
}
.hero h1 span { color: var(--blue-200); }
.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.04rem, 1.8vw, 1.2rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 36px; }
.hero-note { display: flex; align-items: center; gap: 14px; margin-top: 32px; color: rgba(255,255,255,.66); font-size: .87rem; }
.hero-note-avatars { display: flex; }
.hero-note-avatars span { display: grid; width: 32px; height: 32px; margin-left: -8px; place-items: center; border: 2px solid rgba(6,25,44,.8); border-radius: 50%; background: var(--blue-700); font-size: .7rem; }
.hero-note-avatars span:first-child { margin-left: 0; }

.hero-panel {
  align-self: end;
  margin-bottom: 30px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  background: rgba(5,27,47,.58);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}
.hero-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.14); }
.hero-panel-head strong { font-size: 1.08rem; }
.status-pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border-radius: 999px; color: #c8f2df; background: rgba(46,148,107,.18); font-size: .72rem; font-weight: 780; }
.status-pill::before { width: 7px; height: 7px; content: ""; border-radius: 50%; background: #67d6a3; box-shadow: 0 0 0 4px rgba(103,214,163,.12); }
.hero-stats { display: grid; gap: 12px; margin-top: 18px; grid-template-columns: repeat(2, 1fr); }
.hero-stat { padding: 17px; border-radius: 18px; background: rgba(255,255,255,.08); }
.hero-stat strong { display: block; font-size: 1.55rem; letter-spacing: -.04em; }
.hero-stat span { color: rgba(255,255,255,.63); font-size: .76rem; }
.hero-panel-foot { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 18px; padding: 16px 4px 0; color: rgba(255,255,255,.68); font-size: .78rem; }
.hero-scroll { position: absolute; z-index: 5; right: 50%; bottom: 28px; display: grid; width: 34px; height: 54px; place-items: start center; padding-top: 10px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; transform: translateX(50%); }
.hero-scroll::before { width: 4px; height: 10px; content: ""; border-radius: 99px; background: var(--white); animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot { 0%,100% { transform: translateY(0); opacity: .25; } 50% { transform: translateY(18px); opacity: 1; } }

.quick-facts { position: relative; z-index: 8; margin-top: -42px; }
.quick-facts-grid { display: grid; overflow: hidden; border: 1px solid var(--border); border-radius: 26px; background: var(--white); box-shadow: var(--shadow-lg); grid-template-columns: repeat(4, 1fr); }
.quick-fact { display: flex; min-height: 126px; align-items: center; gap: 15px; padding: 25px; border-right: 1px solid var(--border); }
.quick-fact:last-child { border-right: 0; }
.icon-box { display: grid; flex: 0 0 auto; width: 48px; height: 48px; place-items: center; border-radius: 15px; color: var(--blue-700); background: var(--ice-100); }
.icon-box svg { width: 24px; height: 24px; }
.quick-fact strong { display: block; color: var(--navy-950); font-size: 1.15rem; letter-spacing: -.03em; }
.quick-fact span { display: block; margin-top: 3px; color: var(--muted); font-size: .76rem; }

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
}
.card:hover { border-color: rgba(32,168,210,.28); box-shadow: 0 22px 55px rgba(6,25,44,.13); transform: translateY(-6px); }
.feature-card { padding: 30px; }
.feature-card .icon-box { width: 54px; height: 54px; margin-bottom: 22px; }
.feature-card h3 { margin: 0; color: var(--navy-950); font-size: 1.28rem; letter-spacing: -.025em; }
.feature-card p { margin: 12px 0 0; color: var(--muted); font-size: .94rem; }
.feature-card a { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; color: var(--blue-700); font-size: .88rem; font-weight: 780; }

.split { display: grid; align-items: center; gap: 72px; grid-template-columns: minmax(0,.9fr) minmax(0,1fr); }
.split.reverse { grid-template-columns: minmax(0,1fr) minmax(0,.9fr); }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; min-height: 560px; }
.split-media-main { position: absolute; inset: 0 50px 50px 0; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split-media-main img { width: 100%; height: 100%; object-fit: cover; }
.split-media-card { position: absolute; right: 0; bottom: 0; max-width: 290px; padding: 23px; border: 1px solid rgba(255,255,255,.7); border-radius: 22px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-lg); backdrop-filter: blur(14px); }
.split-media-card strong { display: block; color: var(--navy-950); font-size: 1.12rem; }
.split-media-card p { margin: 8px 0 0; color: var(--muted); font-size: .86rem; }
.check-list { display: grid; gap: 15px; margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 13px; color: var(--text); }
.check-list li::before { display: grid; flex: 0 0 auto; width: 24px; height: 24px; place-items: center; margin-top: 1px; content: "✓"; border-radius: 50%; color: var(--blue-700); background: var(--ice-100); font-size: .76rem; font-weight: 900; }

.trail-card { min-height: 390px; color: var(--white); }
.trail-card-image { position: absolute; inset: 0; }
.trail-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.trail-card:hover .trail-card-image img { transform: scale(1.045); }
.trail-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(4,20,36,.94) 0%, rgba(4,20,36,.18) 76%); }
.trail-card-content { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 27px; }
.trail-badge { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.14); backdrop-filter: blur(10px); font-size: .72rem; font-weight: 800; }
.trail-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-500); }
.trail-dot.red { background: #f06770; }
.trail-dot.black { background: #1a2330; border: 1px solid rgba(255,255,255,.6); }
.trail-card h3 { margin: 16px 0 6px; font-size: 1.48rem; letter-spacing: -.035em; }
.trail-card p { margin: 0; color: rgba(255,255,255,.7); font-size: .87rem; }

.experience-card { overflow: visible; padding: 28px; }
.experience-num { position: absolute; top: -20px; right: 24px; color: rgba(12,111,146,.08); font-size: 5.5rem; font-weight: 900; line-height: 1; letter-spacing: -.08em; }
.experience-card h3 { position: relative; margin: 0; color: var(--navy-950); font-size: 1.2rem; }
.experience-card p { position: relative; margin: 11px 0 0; color: var(--muted); font-size: .9rem; }

.cta-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 440px;
  align-items: center;
  padding: 70px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--navy-950);
  box-shadow: var(--shadow-lg);
  grid-template-columns: minmax(0,1fr) minmax(290px,.55fr);
  gap: 54px;
}
.cta-panel::before { position: absolute; inset: 0; content: ""; opacity: .3; background: radial-gradient(circle at 82% 18%, rgba(32,168,210,.9), transparent 34%), radial-gradient(circle at 12% 100%, rgba(244,185,79,.35), transparent 36%); }
.cta-copy, .cta-box { position: relative; z-index: 2; }
.cta-copy h2 { margin: 0; font-size: clamp(2.2rem,4.5vw,4.1rem); line-height: 1.02; letter-spacing: -.055em; }
.cta-copy p { max-width: 650px; margin: 20px 0 0; color: rgba(255,255,255,.72); }
.cta-box { padding: 25px; border: 1px solid rgba(255,255,255,.16); border-radius: 24px; background: rgba(255,255,255,.08); backdrop-filter: blur(14px); }
.cta-box strong { display: block; font-size: 1.12rem; }
.cta-box p { margin: 8px 0 20px; color: rgba(255,255,255,.68); font-size: .87rem; }

.faq-list { display: grid; gap: 13px; max-width: 900px; margin: 44px auto 0; }
.faq-item { border: 1px solid var(--border); border-radius: 18px; background: var(--white); box-shadow: 0 8px 24px rgba(6,25,44,.05); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 24px; cursor: pointer; color: var(--navy-950); font-weight: 780; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { display: grid; width: 28px; height: 28px; place-items: center; content: "+"; border-radius: 50%; color: var(--blue-700); background: var(--ice-100); font-size: 1.2rem; transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0; padding: 0 24px 22px; color: var(--muted); }

.page-hero {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}
.page-hero::before { position: absolute; z-index: 1; inset: 0; content: ""; background: linear-gradient(90deg, rgba(4,20,36,.92), rgba(4,20,36,.4)), linear-gradient(0deg, rgba(4,20,36,.52), transparent 60%); }
.page-hero-inner { position: relative; z-index: 2; display: grid; min-height: 530px; align-content: end; padding: 170px 0 78px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 18px; color: rgba(255,255,255,.66); font-size: .8rem; }
.breadcrumbs a:hover { color: var(--white); }
.page-hero h1 { max-width: 900px; margin: 0; font-size: clamp(3rem, 6vw, 5.5rem); line-height: .98; letter-spacing: -.06em; }
.page-hero p { max-width: 680px; margin: 20px 0 0; color: rgba(255,255,255,.74); font-size: 1.08rem; }

.info-band { border-bottom: 1px solid var(--border); background: var(--white); }
.info-band-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.info-band-item { padding: 24px; border-right: 1px solid var(--border); }
.info-band-item:last-child { border-right: 0; }
.info-band-item strong { display: block; color: var(--navy-950); }
.info-band-item span { color: var(--muted); font-size: .78rem; }

.content-card { padding: 34px; }
.content-card h2, .content-card h3 { margin-top: 0; color: var(--navy-950); letter-spacing: -.03em; }
.content-card p:last-child { margin-bottom: 0; }
.note-box { padding: 22px; border-left: 4px solid var(--blue-500); border-radius: 0 15px 15px 0; color: var(--text); background: var(--ice-100); }
.warning-box { padding: 22px; border-left: 4px solid var(--gold); border-radius: 0 15px 15px 0; color: var(--text); background: #fff8e8; }

.trail-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 20px; background: var(--white); box-shadow: var(--shadow-sm); }
.trail-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.trail-table th, .trail-table td { padding: 17px 19px; border-bottom: 1px solid var(--border); text-align: left; }
.trail-table th { color: var(--navy-950); background: var(--ice-100); font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; }
.trail-table td { color: var(--text); font-size: .9rem; }
.trail-table tr:last-child td { border-bottom: 0; }
.level { display: inline-flex; align-items: center; gap: 8px; font-weight: 750; }
.level::before { width: 9px; height: 9px; content: ""; border-radius: 50%; background: var(--blue-500); }
.level.red::before { background: var(--red); }
.level.black::before { background: #17212d; }

.timeline { position: relative; display: grid; gap: 24px; margin-top: 38px; }
.timeline::before { position: absolute; top: 10px; bottom: 10px; left: 24px; width: 2px; content: ""; background: var(--border); }
.timeline-item { position: relative; display: grid; grid-template-columns: 50px 1fr; gap: 20px; }
.timeline-dot { position: relative; z-index: 2; display: grid; width: 50px; height: 50px; place-items: center; border: 6px solid var(--ice-50); border-radius: 50%; color: var(--white); background: var(--blue-700); font-weight: 850; }
.timeline-content { padding: 20px 22px; border: 1px solid var(--border); border-radius: 18px; background: var(--white); }
.timeline-content h3 { margin: 0; color: var(--navy-950); font-size: 1.05rem; }
.timeline-content p { margin: 8px 0 0; color: var(--muted); font-size: .9rem; }

.lodging-card .card-media { height: 220px; overflow: hidden; }
.lodging-card .card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.lodging-card:hover .card-media img { transform: scale(1.04); }
.lodging-card .card-body { padding: 25px; }
.lodging-card h3 { margin: 0; color: var(--navy-950); }
.lodging-card p { margin: 10px 0 0; color: var(--muted); font-size: .9rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag { padding: 7px 10px; border-radius: 999px; color: var(--blue-700); background: var(--ice-100); font-size: .72rem; font-weight: 750; }

.contact-grid { display: grid; gap: 32px; grid-template-columns: minmax(0,.75fr) minmax(0,1.25fr); }
.contact-panel { padding: 34px; border-radius: var(--radius-md); color: var(--white); background: var(--navy-950); }
.contact-panel h2 { margin-top: 0; font-size: 2rem; letter-spacing: -.04em; }
.contact-panel p { color: rgba(255,255,255,.68); }
.contact-list { display: grid; gap: 16px; margin: 28px 0 0; padding: 0; list-style: none; }
.contact-list li { display: flex; gap: 13px; }
.contact-list .icon-box { width: 42px; height: 42px; color: var(--white); background: rgba(255,255,255,.1); }
.contact-form { padding: 34px; }
.form-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: var(--navy-950); font-size: .82rem; font-weight: 760; }
.form-field input, .form-field textarea, .form-field select { width: 100%; border: 1px solid var(--border); border-radius: 13px; color: var(--text); background: var(--ice-50); outline: none; }
.form-field input, .form-field select { min-height: 50px; padding: 0 15px; }
.form-field textarea { min-height: 140px; padding: 14px 15px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(32,168,210,.11); }
.form-message { display: none; margin: 16px 0 0; padding: 12px 14px; border-radius: 12px; color: #1f7053; background: #e6f7ef; font-size: .86rem; }
.form-message.show { display: block; }

.site-footer { color: rgba(255,255,255,.7); background: #041525; }
.footer-main { display: grid; gap: 52px; padding: 78px 0 52px; grid-template-columns: 1.4fr .8fr .8fr 1fr; }
.footer-brand p { max-width: 370px; margin: 20px 0 0; }
.footer-title { margin: 0 0 18px; color: var(--white); font-size: .88rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.footer-links a:hover { color: var(--white); }
.footer-newsletter { display: flex; overflow: hidden; margin-top: 18px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; background: rgba(255,255,255,.06); }
.footer-newsletter input { min-width: 0; flex: 1; padding: 0 16px; border: 0; color: var(--white); background: transparent; outline: none; }
.footer-newsletter button { width: 48px; height: 48px; border: 0; color: var(--navy-950); background: var(--blue-200); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .78rem; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a:hover { color: var(--white); }

.cookie-banner { position: fixed; z-index: 100; right: 18px; bottom: 18px; left: 18px; display: none; max-width: 620px; margin-left: auto; padding: 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; color: var(--white); background: rgba(4,21,37,.96); box-shadow: var(--shadow-lg); backdrop-filter: blur(16px); }
.cookie-banner.show { display: flex; align-items: center; gap: 18px; }
.cookie-banner p { margin: 0; flex: 1; color: rgba(255,255,255,.72); font-size: .8rem; }
.cookie-banner button { flex: 0 0 auto; padding: 9px 14px; border: 0; border-radius: 999px; color: var(--navy-950); background: var(--blue-200); font-size: .78rem; font-weight: 800; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  :root { --container: min(100% - 32px, 940px); }
  .nav-list, .header-actions .btn { display: none; }
  .menu-toggle { display: grid; }
  .nav-list {
    position: fixed;
    z-index: 40;
    top: 0;
    right: 0;
    bottom: 0;
    display: grid;
    width: min(390px, 88vw);
    align-content: start;
    gap: 0;
    padding: 110px 32px 32px;
    color: var(--navy-950);
    background: var(--white);
    box-shadow: -20px 0 60px rgba(6,25,44,.2);
    transform: translateX(110%);
    transition: transform .3s var(--ease);
  }
  .menu-open .nav-list { transform: translateX(0); }
  .nav-link { display: block; padding: 16px 0; color: var(--navy-950); border-bottom: 1px solid var(--border); font-size: 1.08rem; }
  .nav-link::after { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-panel { max-width: 590px; align-self: auto; margin: 0; }
  .quick-facts-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-fact:nth-child(2) { border-right: 0; }
  .quick-fact:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 50px; }
  .split.reverse .split-media { order: 0; }
  .cta-panel { padding: 55px; grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --container: calc(100% - 26px); --radius-lg: 25px; }
  .topbar { display: none; }
  .site-header { inset: 0 0 auto; }
  .header-inner { min-height: 70px; }
  .logo-mark { width: 40px; height: 40px; border-radius: 13px; }
  .logo-text small { display: none; }
  .section { padding: 78px 0; }
  .section-sm { padding: 55px 0; }
  .section-heading { display: grid; margin-bottom: 34px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero, .hero-inner { min-height: 780px; }
  .hero-inner { align-content: center; padding: 120px 0 78px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-panel { padding: 20px; border-radius: 23px; }
  .hero-stats { gap: 9px; }
  .hero-stat { padding: 14px; }
  .hero-stat strong { font-size: 1.25rem; }
  .hero-scroll { display: none; }
  .quick-facts { margin-top: 0; padding-top: 13px; background: var(--white); }
  .quick-facts-grid { grid-template-columns: 1fr; border-radius: 20px; box-shadow: var(--shadow-sm); }
  .quick-fact { min-height: 100px; border-right: 0; border-bottom: 1px solid var(--border); }
  .quick-fact:last-child { border-bottom: 0; }
  .split-media { min-height: 450px; }
  .split-media-main { inset: 0 28px 45px 0; }
  .split-media-card { max-width: 250px; padding: 18px; }
  .cta-panel { min-height: auto; padding: 40px 26px; }
  .page-hero, .page-hero-inner { min-height: 480px; }
  .page-hero-inner { padding: 130px 0 60px; }
  .page-hero h1 { font-size: clamp(2.8rem, 13vw, 4.4rem); }
  .info-band-grid { grid-template-columns: repeat(2, 1fr); }
  .info-band-item:nth-child(2) { border-right: 0; }
  .info-band-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; padding: 58px 0 38px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .cookie-banner.show { align-items: stretch; flex-direction: column; }
}

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