@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:wght@300;400;500&family=Chelsea+Market&display=swap");

.archivo-black-regular {
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* ── Reset & base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #040d1a;
  --dark: #071526;
  --blue: #0d2a4a;
  --mid: #163a6b;
  --sky: #2568a8;
  --ice: #9fcde8;
  --white: #ffffff;
  --offwhite: #f4f7fb;
  --glass: rgba(255, 255, 255, 0.07);
  --glass-b: rgba(255, 255, 255, 0.13);
  --glass-h: rgba(255, 255, 255, 0.12);
  --shadow: 0 4px 32px rgba(10, 30, 60, 0.09);
  --shadow-lg: 0 8px 48px rgba(10, 30, 60, 0.13);
  --radius: 18px;
  --container: 1100px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--navy);
  color: var(--white);
  min-height: 100dvh;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  background: var(--mid);
  border-radius: 3px;
}

/* ── Snow canvas ──────────────────────────────────────────── */
#snow {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 48px;
  transition:
    background 0.35s,
    padding 0.35s,
    backdrop-filter 0.35s;
}

.nav--scrolled {
  background: rgba(25, 57, 102, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 16px 48px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.logo-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.3));
  opacity: 0.92;
}

.logo-text {
  font-family: "Chelsea Market", cursive;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
  padding: 4px 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ice);
  transform: scaleX(0);
  transition: transform 0.25s;
  transform-origin: left;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* ── Homepage hero ────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #165dc1 0%,
    #2268b2 18%,
    #5f8ecb 38%,
    #9ec0e4 60%,
    #b8d3f3 80%,
    #e6ecf5 100%
  );
}

.hero-photo-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: auto;
  z-index: 8;
  pointer-events: none;
  user-select: none;
}

.moonlight {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(160, 210, 255, 0.07) 0%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 2;
}

/* Hero content */
.hero-content {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 0 40px 0px 72px;
  width: 42%;
  animation: rise 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-b);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 30px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4caf82;
  animation: pulse 2.2s ease infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.75);
  }
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 14px;
}

.title-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: clamp(12px, 1.6vw, 16px);
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 6px;
}

.title-name {
  padding-top: 20px;
  font-size: clamp(70px, 8vw, 120px);
  font-family: "Archivo Black", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: var(--white);
}

.hero-tagline {
  font-size: clamp(10.5px, 1vw, 15.2px);
  font-weight: bolder;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #2b4770;
  margin-bottom: 26px;
}

.hero-desc {
  font-size: clamp(13.5px, 1vw, 17.7px);
  font-weight: 550;
  line-height: 1.85;
  color: #2b4770;
  max-width: 480px;
  margin-bottom: 36px;
}

.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  width: 280px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.divider-icon {
  font-size: 12px;
  color: var(--ice);
  opacity: 0.4;
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
  background: var(--glass);
  border: 1px solid var(--glass-b);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 14px;
  padding: 22px 36px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 68px;
}

.count-num {
  font-family: "Archivo", sans-serif;
  font-size: clamp(34px, 4.8vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  min-width: 54px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.count-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ice);
  opacity: 0.45;
  margin-top: 7px;
}

.countdown-sep {
  font-family: "Archivo", sans-serif;
  font-size: 34px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.18);
  margin: 0 2px;
  padding-bottom: 14px;
  user-select: none;
}

.countdown-done {
  font-family: "Archivo", sans-serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
  opacity: 0.9;
  padding: 4px 0;
}

.signup-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.04em;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.32);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: bobble 2.8s ease infinite;
}

.hero-scroll svg {
  width: 18px;
  height: 18px;
}

@keyframes bobble {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(7px);
  }
}

/* ── Homepage info section ────────────────────────────────── */
.info-section {
  position: relative;
  z-index: 10;
  background: var(--white);
  width: 100%;
  padding: 64px 48px 56px;
}

.info-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.info-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 14px;
}

.info-title {
  font-family: "Archivo", sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 600;
  color: var(--blue);
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 680px;
}

.info-lead {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(10, 30, 60, 0.6);
  max-width: 700px;
  margin-bottom: 64px;
}

/* Feature stat cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}

.feature-card {
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 13, 26, 0.58);
  border-radius: inherit;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.features-grid .feature-card:nth-child(1) {
  background-image: url("../multimedia/mountain-view.webp");
}

.features-grid .feature-card:nth-child(2) {
  background-image: url("../multimedia/trail-2.webp");
}

.features-grid .feature-card:nth-child(3) {
  background-image: url("../multimedia/forest.webp");
}

.features-grid .feature-card:nth-child(4) {
  background-image: url("../multimedia/ski-lift-2.webp");
}

.feature-stat {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 10px;
}

.feature-num {
  font-family: "Archivo", sans-serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.feature-unit {
  font-size: 13px;
  font-weight: 300;
  color: var(--ice);
  opacity: 0.75;
}

.feature-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(159, 205, 232, 0.6);
}

/* Info text columns */
.info-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(10, 30, 60, 0.08);
}

.info-col-title {
  font-family: "Archivo", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 16px;
}

.info-col p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(10, 30, 60, 0.62);
}

/* ── Conditions section ───────────────────────────────────── */
.conditions-section {
  position: relative;
  z-index: 10;
  background: linear-gradient(180deg, #071526 0%, #0d2a4a 100%);
  width: 100%;
  padding: 64px 48px 56px;
}

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.eyebrow-light {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ice);
  opacity: 0.6;
  margin-bottom: 14px;
}

.section-title-light {
  font-family: "Archivo", sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 6px;
  max-width: 680px;
}

.section-lead-light {
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(222, 243, 255, 0.788);
  max-width: 620px;
  margin-bottom: 56px;
}

.conditions-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
  align-items: stretch;
}

.cond-main-card {
  background: var(--glass);
  border: 1px solid var(--glass-b);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius);
  padding: 40px 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cond-weather-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.cond-icon {
  font-size: 52px;
  line-height: 1;
}

.cond-temp-block {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.cond-temp {
  font-family: "Archivo", sans-serif;
  font-size: clamp(64px, 9vw, 96px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.cond-temp-unit {
  font-family: "Archivo", sans-serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--ice);
  opacity: 0.6;
}

.cond-desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}

.cond-updated {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(159, 205, 232, 0.35);
}

.cond-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cond-stat-card {
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: 12px;
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cond-stat-svg {
  width: 22px;
  height: 22px;
  color: var(--ice);
  opacity: 0.55;
  flex-shrink: 0;
  margin-top: 2px;
}

.cond-stat-val {
  font-family: "Archivo", sans-serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 5px;
  font-variant-numeric: tabular-nums;
}

.cond-stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(159, 205, 232, 0.45);
}

/* ── Activities section ───────────────────────────────────── */
.activities-section {
  position: relative;
  z-index: 10;
  background:
    linear-gradient(
      180deg,
      rgba(4, 13, 26, 0.72) 0%,
      rgba(7, 21, 38, 0.78) 100%
    ),
    url("../multimedia/background.webp") center center / cover no-repeat;
  width: 100%;
  padding: 64px 48px 56px;
}

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

.act-card {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: "Inter", sans-serif;
  color: var(--white);
  transition:
    background 0.22s,
    border-color 0.22s,
    transform 0.22s;
}

.act-card:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(159, 205, 232, 0.45);
  transform: translateY(-3px);
}

.act-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(37, 104, 168, 0.28);
  border: 1px solid rgba(159, 205, 232, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  line-height: 1;
}

.act-icon-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.act-body {
  flex: 1;
  min-width: 0;
}

.act-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.act-sub {
  font-size: 11.5px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
}

.act-arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}

.act-arrow svg {
  width: 14px;
  height: 14px;
}

.act-card:hover .act-arrow {
  border-color: rgba(159, 205, 232, 0.6);
  color: var(--ice);
  background: rgba(37, 104, 168, 0.25);
}

/* ── Activity modal ────────────────────────────────────────── */
.act-modal {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s;
}

.act-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.act-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(4, 13, 26, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.act-modal-panel {
  position: relative;
  z-index: 1;
  background: linear-gradient(150deg, #0f2d50 0%, #071526 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  max-width: 560px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 52px 48px 44px;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.act-modal.is-open .act-modal-panel {
  transform: translateY(0) scale(1);
}

.act-modal-x {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition:
    background 0.2s,
    color 0.2s;
  font-family: inherit;
}

.act-modal-x:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.act-modal-x svg {
  width: 16px;
  height: 16px;
}

/* Modal inner content */
.amd-icon {
  font-size: 54px;
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}

.amd-title {
  font-family: "Archivo", sans-serif;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}

.amd-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(159, 205, 232, 0.5);
  margin-bottom: 28px;
}

.amd-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.88;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.amd-details {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}

.amd-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.amd-row:last-child {
  border-bottom: none;
}

.amd-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(159, 205, 232, 0.4);
  flex-shrink: 0;
}

.amd-value {
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  text-align: right;
}

.amd-link {
  color: var(--ice);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}

.amd-link:hover {
  opacity: 0.7;
}

.amd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.amd-tag {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
  background: rgba(37, 104, 168, 0.28);
  border: 1px solid rgba(159, 205, 232, 0.18);
  color: var(--ice);
}

/* ── Slopes section ───────────────────────────────────────── */
.slopes-section {
  position: relative;
  z-index: 10;
  background: var(--white);
  width: 100%;
  padding: 64px 48px 56px;
}

.slopes-lift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 8px;
}

.slopes-col-title {
  font-family: "Archivo", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 20px;
}

.slope-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid rgba(10, 30, 60, 0.08);
  border-radius: 14px;
  overflow: hidden;
}

.slope-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(10, 30, 60, 0.06);
  transition: background 0.15s;
}

.slope-row:last-child {
  border-bottom: none;
}

.slope-row:hover {
  background: rgba(10, 30, 60, 0.025);
}

.slope-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sd-green {
  background: #2eaa56;
}

.sd-blue {
  background: #2568a8;
}

.sd-red {
  background: #d63030;
}

.sd-black {
  background: #1a1a2e;
}

.slope-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.slope-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
}

.slope-meta {
  font-size: 11.5px;
  font-weight: 300;
  color: rgba(10, 30, 60, 0.45);
}

.slope-badge {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  flex-shrink: 0;
}

.sb-green {
  background: rgba(46, 170, 86, 0.12);
  color: #1d7a3a;
}

.sb-blue {
  background: rgba(37, 104, 168, 0.12);
  color: #1a5090;
}

.sb-red {
  background: rgba(214, 48, 48, 0.12);
  color: #b02020;
}

.sb-black {
  background: rgba(26, 26, 46, 0.1);
  color: #1a1a2e;
}

.lift-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lift-card {
  background: var(--offwhite);
  border-radius: 12px;
  padding: 20px 22px;
  border-left: 3px solid var(--sky);
}

.lift-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.lift-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 3px;
}

.lift-type {
  font-size: 11px;
  font-weight: 300;
  color: rgba(10, 30, 60, 0.45);
}

.lift-len {
  font-family: "Archivo", sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--sky);
  flex-shrink: 0;
  line-height: 1;
}

.lift-details {
  display: flex;
  gap: 20px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(10, 30, 60, 0.5);
}

.slopes-note {
  margin-top: 20px;
  font-size: 11px;
  font-weight: 300;
  color: rgba(10, 30, 60, 0.38);
  font-style: italic;
}

/* ── Prices section ───────────────────────────────────────── */
.prices-section {
  position: relative;
  z-index: 10;
  background: linear-gradient(180deg, #0d2a4a 0%, #071526 100%);
  width: 100%;
  padding: 64px 48px 56px;
}

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

.price-card {
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.price-card:hover {
  background: var(--glass-h);
  border-color: rgba(255, 255, 255, 0.2);
}

.price-card--featured {
  background: rgba(37, 104, 168, 0.25);
  border-color: rgba(37, 104, 168, 0.5);
}

.price-card--featured:hover {
  background: rgba(37, 104, 168, 0.35);
}

.price-featured-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ice);
  background: rgba(37, 104, 168, 0.5);
  border-radius: 100px;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 18px;
}

.price-card-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.price-icon {
  width: 22px;
  height: 22px;
  color: var(--ice);
  opacity: 0.65;
  flex-shrink: 0;
  margin-top: 3px;
}

.price-period {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.price-desc-sm {
  font-size: 11px;
  font-weight: 300;
  color: rgba(159, 205, 232, 0.5);
  letter-spacing: 0.04em;
}

.price-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.price-row:last-child {
  border-bottom: none;
}

.price-cat {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}

.price-val {
  font-family: "Archivo", sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.prices-note {
  font-size: 11.5px;
  font-weight: 300;
  color: rgba(159, 205, 232, 0.35);
  font-style: italic;
  max-width: 700px;
}

#aktivnosti-sajt {
  text-decoration: none;
  color: white;
}

/* ── Reviews section ──────────────────────────────────────── */
.reviews-section {
  position: relative;
  z-index: 10;
  background: var(--white);
  width: 100%;
  padding: 64px 48px 56px;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding: 24px 32px;
  background: #dae8fb;
  border-radius: var(--radius);
}

.reviews-score-num {
  font-family: "Archivo", sans-serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--blue);
  line-height: 1;
}

.reviews-stars {
  color: #e3a335;
  font-size: 17px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.reviews-count {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10, 30, 60, 0.4);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.reviews-grid:empty {
  display: none;
}

.review-card {
  background: #dae8fb;
  border-radius: 12px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
}

.review-date {
  font-size: 10.5px;
  font-weight: 300;
  color: rgba(10, 30, 60, 0.4);
  flex-shrink: 0;
}

.review-card .reviews-stars {
  font-size: 13px;
  margin-bottom: 0;
}

.review-text {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(10, 30, 60, 0.65);
}

.review-form-card {
  background: #dae8fb;
  border-radius: var(--radius);
  padding: 40px;
  max-width: 560px;
}

.review-form-title {
  font-family: "Archivo", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 22px;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.review-star-input {
  display: flex;
  gap: 6px;
}

.review-star {
  font-size: 28px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(10, 30, 60, 0.2);
  transition:
    color 0.15s,
    transform 0.15s;
  padding: 2px;
}

.review-star:hover {
  transform: scale(1.12);
}

.review-star.is-active {
  color: #e3a335;
}

.review-success {
  font-size: 13px;
  font-weight: 500;
  color: #1d7a3a;
}

/* ── Inner page header ────────────────────────────────────── */
.page-header {
  position: relative;
  height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 64px;
  overflow: hidden;
  background: linear-gradient(180deg, #040d1a 0%, #0d2a4a 65%, #163d72 100%);
  z-index: 5;
}

.page-header-content {
  position: relative;
  z-index: 10;
  text-align: center;
  animation: rise 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-header-eyebrow {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ice);
  opacity: 0.55;
  margin-bottom: 10px;
}

.page-header-title {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 400;
  font-style: normal;
  color: var(--white);
  line-height: 1;
}

/* ── Page main (inner pages) ──────────────────────────────── */
.page-main {
  position: relative;
  z-index: 10;
  background: var(--offwhite);
  min-height: 50vh;
  padding: 64px 48px 80px;
}

.page-wrap {
  max-width: var(--container);
  margin: 0 auto;
}

/* ── White cards ──────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 48px;
  margin-bottom: 24px;
}

.card:last-child {
  margin-bottom: 0;
}

.card-eyebrow {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 10px;
}

.card-title {
  font-family: "Archivo", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 22px;
  line-height: 1.12;
}

.card-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.88;
  color: rgba(10, 30, 60, 0.62);
}

.card-text + .card-text {
  margin-top: 14px;
}

.card-grid {
  display: grid;
  gap: 24px;
}

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

.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ── Contact ──────────────────────────────────────────────── */
.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  background: var(--offwhite);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sky);
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
}

.contact-info-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 15px;
  font-weight: 300;
  color: rgba(10, 30, 60, 0.72);
  line-height: 1.55;
}

.contact-info-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-value a:hover {
  color: var(--sky);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  opacity: 0.65;
}

.form-input,
.form-textarea {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 13px 16px;
  border: 1.5px solid rgba(10, 30, 60, 0.11);
  border-radius: 9px;
  color: var(--blue);
  background: var(--offwhite);
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--sky);
  background: var(--white);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(10, 30, 60, 0.28);
}

.form-textarea {
  min-height: 130px;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230d2a4a' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-select option {
  color: var(--blue);
  background: var(--white);
}

.btn-primary {
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 9px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.12s;
}

.btn-primary:hover {
  background: var(--mid);
}

.btn-primary:active {
  transform: scale(0.98);
}

/* ── Kako doći ────────────────────────────────────────────── */
.route-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.route-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--offwhite);
  border-radius: 10px;
  border-left: 3px solid var(--sky);
}

.route-from {
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
}

.route-meta {
  display: flex;
  gap: 28px;
}

.route-dist {
  font-size: 13px;
  font-weight: 300;
  color: rgba(10, 30, 60, 0.5);
}

.route-time {
  font-size: 13px;
  font-weight: 600;
  color: var(--sky);
  min-width: 56px;
  text-align: right;
}

.gps-box {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--offwhite);
  border: 1.5px solid rgba(10, 30, 60, 0.1);
  border-radius: 10px;
  padding: 14px 20px;
  margin-top: 24px;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.gps-entry {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.gps-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
}

.gps-val {
  font-size: 14px;
  font-weight: 400;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}

.map-embed {
  margin-top: 4px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--sky);
  text-decoration: none;
  transition: opacity 0.2s;
}

.map-link:hover {
  opacity: 0.75;
}

/* ── Sponsors ──────────────────────────────────── */
.sponsors {
  position: relative;
  z-index: 10;
  background: var(--white);
  border-top: 1px solid rgba(10, 30, 60, 0.07);
  padding: 72px 48px 72px;
  text-align: center;
}

.sponsors-text {
  max-width: 880px;
  margin: 0 auto 44px;
  color: oklch(55.17% 0.0138 285.939);
  font-size: 14px;
  line-height: 1.7;
}

.sponsors-logos {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 72px);
  max-width: var(--container);
  margin: 0 auto;
}

.sponsors-logos img {
  display: block;
  height: 80px;
  width: auto;
  max-width: min(320px, 100%);
  object-fit: contain;
}

@media (max-width: 768px) {
  .sponsors {
    padding: 56px 24px 60px;
  }
  .sponsors-text {
    margin-bottom: 36px;
  }
  .sponsors-logos {
    flex-wrap: wrap;
    gap: 28px 36px;
  }
}

@media (max-width: 480px) {
  .sponsors-logos {
    gap: 24px 22px;
  }
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 10;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 24px;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.08em;
}

.dot {
  opacity: 0.25;
}

.footer-link {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--ice);
}

/* ── Hamburger button ─────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 300;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.22s;
  transform-origin: center;
}

.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile navigation overlay ────────────────────────────── */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  z-index: 901;
  background: rgba(6, 17, 32, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid rgba(159, 205, 232, 0.08);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 40px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.mobile-nav.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}

.mobile-nav ul li {
  width: 100%;
  border-bottom: 1px solid rgba(159, 205, 232, 0.07);
}

.mobile-nav ul li:first-child {
  border-top: 1px solid rgba(159, 205, 232, 0.07);
}

.mobile-nav ul a {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  transition:
    color 0.2s,
    gap 0.2s;
}

.mobile-nav ul a::before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: var(--ice);
  opacity: 0;
  transition:
    opacity 0.2s,
    width 0.2s;
  flex-shrink: 0;
}

.mobile-nav ul a:hover {
  color: #fff;
  gap: 16px;
}

.mobile-nav ul a:hover::before {
  opacity: 1;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-body {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .card-grid--3 {
    grid-template-columns: 1fr 1fr;
  }
  .conditions-grid {
    grid-template-columns: 1fr;
  }

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

  .slopes-lift-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .nav {
    padding: 18px 22px;
    z-index: 300;
  }

  .nav--scrolled {
    padding: 14px 22px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero {
    align-items: flex-start;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 200px 28px 0;
  }

  .info-section {
    padding: 64px 24px 56px;
  }

  .photo-interlude {
    height: auto;
    min-height: 520px;
    padding: 80px 0;
    background-position: 65% center;
  }

  .photo-interlude-content {
    padding: 0 28px;
  }

  .photo-heading {
    font-size: clamp(34px, 8vw, 52px);
  }

  .conditions-section,
  .activities-section,
  .slopes-section,
  .prices-section,
  .reviews-section {
    padding: 64px 24px 56px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .reviews-summary {
    flex-wrap: wrap;
  }
  .review-form-card {
    padding: 28px 24px;
    max-width: 100%;
  }
  .activities-grid {
    grid-template-columns: 1fr;
  }

  .act-modal-panel {
    padding: 44px 28px 36px;
  }

  .page-main {
    padding: 48px 24px 64px;
  }

  .card {
    padding: 32px 24px;
  }

  .countdown {
    padding: 18px 20px;
  }

  .countdown-item {
    min-width: 52px;
  }

  .count-num {
    min-width: 44px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .feature-num {
    font-size: 38px;
  }

  .route-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .cond-stats {
    grid-template-columns: 1fr 1fr;
  }

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

  .lift-details {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 520px) {
  .card-grid--3 {
    grid-template-columns: 1fr;
  }

  .cond-stats {
    grid-template-columns: 1fr;
  }

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

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

  .slopes-lift-grid {
    gap: 28px;
  }
}

#aktivnosti-sajt {
  text-decoration: none;
  color: white;
}
