:root {
  --navy: #071726;
  --navy-2: #0b2136;
  --navy-3: #12314d;
  --accent: #15b8a6;
  --accent-2: #79e1d1;
  --ice: #eaf8ff;
  --sky: #ccecff;
  --text: #10253a;
  --muted: #637487;
  --line: #dfe8ef;
  --white: #ffffff;
  --warning: #ffbd4a;
  --danger: #e85b68;
  --success: #32c987;
  --surface: #f5f9fc;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(7, 23, 38, .13);
  --shadow-soft: 0 14px 38px rgba(7, 23, 38, .09);
  --container: 1180px;
  --hero-overlay: .72;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-narrow { padding: 0; }
.screen-reader-text {
  position: absolute!important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.screen-reader-text:focus, .skip-link:focus {
  clip: auto!important; width: auto; height: auto; margin: 0; padding: 12px 18px;
  top: 10px; left: 10px; z-index: 99999; background: #fff; color: #000; border-radius: 8px;
}

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  height: 84px; display: flex; align-items: center;
  background: rgba(7, 23, 38, .16);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  transition: background .25s ease, box-shadow .25s ease, height .25s ease;
}
.site-header.scrolled { height: 72px; background: rgba(7, 23, 38, .94); box-shadow: 0 12px 30px rgba(0,0,0,.16); }
.header-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; }
.site-brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; min-width: 220px; }
.site-brand:hover { color: #fff; }
.site-brand img { flex: 0 0 auto; }
.site-brand span { display: flex; flex-direction: column; line-height: 1.15; }
.site-brand strong { font-size: 17px; letter-spacing: .01em; }
.site-brand small { margin-top: 4px; color: rgba(255,255,255,.66); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.custom-logo-link { display: block; }
.custom-logo { max-height: 58px; width: auto; }
.main-navigation { justify-self: end; }
.main-navigation ul { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
.main-navigation a { position: relative; color: rgba(255,255,255,.82); font-size: 14px; font-weight: 650; }
.main-navigation a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--accent); transition: right .2s ease; }
.main-navigation a:hover { color: #fff; }
.main-navigation a:hover::after, .main-navigation .current-menu-item > a::after { right: 0; }
.header-cta { white-space: nowrap; }
.menu-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 9px; }
.menu-toggle span:not(.screen-reader-text) { display: block; height: 2px; background: #fff; margin: 5px 0; border-radius: 4px; transition: transform .2s, opacity .2s; }

/* Buttons */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 52px; padding: 0 24px; border: 1px solid var(--accent); border-radius: 13px;
  background: var(--accent); color: #06231f; font-size: 14px; font-weight: 800;
  box-shadow: 0 10px 25px rgba(21,184,166,.22);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { color: #06231f; transform: translateY(-2px); background: var(--accent-2); border-color: var(--accent-2); box-shadow: 0 14px 32px rgba(21,184,166,.30); }
.button-small { min-height: 42px; padding: 0 18px; border-radius: 10px; font-size: 13px; }
.button-ghost { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.34); color: #fff; box-shadow: none; }
.button-ghost:hover { background: rgba(255,255,255,.17); border-color: rgba(255,255,255,.6); color: #fff; }
.button-dark { background: var(--navy); border-color: var(--navy); color: #fff; box-shadow: 0 12px 26px rgba(7,23,38,.17); }
.button-dark:hover { background: var(--navy-3); border-color: var(--navy-3); color: #fff; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--navy); font-size: 14px; font-weight: 800; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }

/* Hero */
.hero {
  position: relative; min-height: 780px; height: 100svh; max-height: 980px;
  display: flex; align-items: center; color: #fff; overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5,18,31,.92) 0%, rgba(5,18,31,.72) 42%, rgba(5,18,31,.35) 100%),
    radial-gradient(circle at 75% 25%, rgba(35,139,169,.45), transparent 36%),
    linear-gradient(145deg, #0e3453 0%, #0a2238 45%, #061622 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--hero-image, none);
  background-size: cover; background-position: center;
  opacity: calc(1 - var(--hero-overlay));
  mix-blend-mode: screen;
}
.hero::after {
  content: ""; position: absolute; left: -4%; right: -4%; bottom: -1px; height: 125px;
  background: #fff; clip-path: polygon(0 75%, 9% 44%, 20% 67%, 34% 25%, 50% 70%, 66% 41%, 79% 68%, 91% 36%, 100% 66%, 100% 100%, 0 100%);
}
.hero-grid { position: relative; z-index: 3; display: grid; grid-template-columns: 1.12fr .78fr; gap: 72px; align-items: center; padding-top: 70px; }
.hero-copy { max-width: 710px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--accent-2); font-size: 12px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.dark { color: #168f84; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 7px rgba(21,184,166,.15); animation: pulse 2s infinite; }
.hero h1 { margin: 21px 0 22px; max-width: 820px; font-size: clamp(48px, 5.1vw, 80px); line-height: .98; letter-spacing: -.048em; font-weight: 830; }
.hero h1 em { color: var(--accent-2); font-style: normal; }
.hero-copy > p { max-width: 630px; margin: 0; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.play-icon { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.12); font-size: 9px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; color: rgba(255,255,255,.58); font-size: 12px; font-weight: 650; }
.glass-card { border: 1px solid rgba(255,255,255,.18); background: rgba(9,29,47,.58); backdrop-filter: blur(18px); box-shadow: 0 30px 80px rgba(0,0,0,.28); }
.conditions-card { border-radius: 26px; padding: 27px; }
.conditions-head { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; border-bottom: 1px solid rgba(255,255,255,.11); padding-bottom: 20px; }
.overline { color: rgba(255,255,255,.5); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.conditions-head h2 { margin: 3px 0 0; font-size: 22px; line-height: 1.25; }
.status-pill { display: inline-flex; align-items: center; gap: 7px; min-height: 28px; padding: 0 11px; border-radius: 999px; font-size: 11px; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.status-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.status-open { color: #74ebbd; background: rgba(50,201,135,.12); }
.status-closed { color: #ff929b; background: rgba(232,91,104,.13); }
.status-maintenance, .status-planned { color: #ffd477; background: rgba(255,189,74,.12); }
.conditions-main { display: flex; align-items: center; gap: 24px; padding: 27px 0 20px; }
.big-temp { font-size: 62px; line-height: 1; font-weight: 840; letter-spacing: -.06em; }
.condition-text { display: flex; flex-direction: column; }
.condition-text strong { font-size: 17px; }
.condition-text span { color: rgba(255,255,255,.55); font-size: 13px; }
.conditions-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border-radius: 15px; overflow: hidden; background: rgba(255,255,255,.08); }
.conditions-stats > div { min-width: 0; padding: 15px 10px; background: rgba(255,255,255,.035); text-align: center; }
.conditions-stats span { display: block; color: var(--accent-2); font-size: 17px; }
.conditions-stats strong { display: block; margin-top: 3px; font-size: 14px; white-space: nowrap; }
.conditions-stats small { display: block; color: rgba(255,255,255,.42); font-size: 9px; text-transform: uppercase; letter-spacing: .06em; }
.conditions-update { margin-top: 14px; color: rgba(255,255,255,.44); font-size: 10px; text-align: right; }
.sync-icon { display: inline-block; margin-right: 4px; animation: spin 5s linear infinite; }
.scroll-cue { position: absolute; z-index: 4; left: 50%; bottom: 76px; width: 28px; height: 44px; margin-left: -14px; border: 1px solid rgba(255,255,255,.32); border-radius: 999px; }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 4px; height: 7px; margin-left: -2px; border-radius: 4px; background: #fff; animation: scrollCue 1.8s infinite; }
.hero-snow, .hero-snow::before, .hero-snow::after {
  position: absolute; inset: -100px 0 0; content: ""; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.7) 0 1px, transparent 1.5px);
  background-size: 42px 42px; opacity: .3; animation: snowFall 20s linear infinite;
}
.hero-snow::before { background-size: 70px 70px; opacity: .22; animation-duration: 28s; transform: translateX(18px); }
.hero-snow::after { background-size: 110px 110px; opacity: .18; animation-duration: 38s; transform: translateX(-24px); }

/* Quick info */
.quick-info { position: relative; z-index: 8; margin-top: -46px; }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-radius: 20px; background: #fff; box-shadow: var(--shadow); overflow: hidden; }
.quick-card { position: relative; display: flex; align-items: center; justify-content: center; gap: 16px; min-height: 116px; padding: 20px; }
.quick-card:not(:last-child)::after { content: ""; position: absolute; top: 27px; right: 0; bottom: 27px; width: 1px; background: var(--line); }
.quick-icon { display: grid; place-items: center; width: 47px; height: 47px; border-radius: 15px; background: var(--ice); color: #0e8f82; font-size: 21px; }
.quick-card strong { display: block; font-size: 23px; line-height: 1.2; letter-spacing: -.03em; }
.quick-card small { display: block; margin-top: 4px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .07em; }

/* Shared section headings */
.section-heading { margin-bottom: 46px; }
.section-heading.center { max-width: 720px; margin-inline: auto; margin-bottom: 48px; text-align: center; }
.section-heading h2 { margin: 10px 0 12px; font-size: clamp(35px, 4vw, 53px); line-height: 1.08; letter-spacing: -.045em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 16px; }
.section-heading.split { display: grid; grid-template-columns: 1fr .7fr; align-items: end; gap: 70px; }
.section-heading.split p { padding-bottom: 5px; }
.section-heading.light h2 { color: #fff; }
.section-heading.light p { color: rgba(255,255,255,.56); }

/* Weather */
.weather-section { padding-top: 130px; background: linear-gradient(180deg, #fff 0%, #f5fafc 100%); }
.weather-dashboard { display: grid; grid-template-columns: .9fr 1.2fr; border: 1px solid #dfeaf0; border-radius: 28px; overflow: hidden; background: #fff; box-shadow: var(--shadow-soft); }
.weather-now { display: flex; align-items: center; gap: 24px; padding: 40px; background: linear-gradient(145deg, var(--navy) 0%, #123654 100%); color: #fff; }
.weather-art { display: grid; place-items: center; width: 100px; height: 100px; border-radius: 30px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); font-size: 48px; }
.weather-now span { color: rgba(255,255,255,.5); font-size: 12px; text-transform: uppercase; letter-spacing: .13em; }
.weather-now strong { display: block; font-size: 56px; line-height: 1; letter-spacing: -.05em; }
.weather-now p { margin: 5px 0 0; color: rgba(255,255,255,.7); }
.weather-details { display: grid; grid-template-columns: repeat(4,1fr); align-items: center; padding: 24px 28px; border-bottom: 1px solid var(--line); }
.weather-details > div { padding: 10px 18px; border-left: 1px solid var(--line); }
.weather-details > div:first-child { border-left: 0; }
.weather-details small { display: block; color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.weather-details strong { display: block; margin-top: 4px; font-size: 16px; }
.forecast-list { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(5,1fr); padding: 8px 18px 20px; background: #fff; }
.forecast-day { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 12px; padding: 20px; border-right: 1px solid var(--line); }
.forecast-day:last-child { border-right: 0; }
.forecast-day .forecast-icon { grid-row: span 2; font-size: 27px; }
.forecast-day strong { font-size: 13px; }
.forecast-day span { color: var(--muted); font-size: 12px; }
.forecast-loading { grid-column: 1 / -1; padding: 30px; color: var(--muted); text-align: center; }

/* Slopes */
.slopes-section { background: #f5f9fc; }
.slopes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.slope-card { position: relative; padding: 26px; border: 1px solid #dfe8ef; border-radius: 20px; background: #fff; box-shadow: 0 10px 30px rgba(7,23,38,.045); transition: transform .22s, box-shadow .22s, border-color .22s; overflow: hidden; }
.slope-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: linear-gradient(var(--accent), transparent); opacity: 0; transition: opacity .2s; }
.slope-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: #cbdde8; }
.slope-card:hover::before { opacity: 1; }
.slope-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.difficulty { display: inline-flex; align-items: center; min-height: 25px; padding: 0 9px; border-radius: 7px; font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.difficulty-beginner { color: #158356; background: #e4f8ef; }
.difficulty-intermediate { color: #235fa9; background: #e8f1ff; }
.difficulty-advanced { color: #bc6720; background: #fff0df; }
.difficulty-expert { color: #bd4451; background: #ffe6e8; }
.status-dot-label { display: inline-flex; align-items: center; gap: 6px; padding: 0; background: transparent; font-size: 10px; font-weight: 750; }
.status-dot-label i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 14%, transparent); }
.slope-card h3 { margin: 20px 0 8px; font-size: 21px; letter-spacing: -.025em; }
.slope-card p { min-height: 50px; margin: 0; color: var(--muted); font-size: 13px; }
.slope-meta { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.slope-meta span { min-width: 0; }
.slope-meta small { display: block; color: var(--muted); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }
.slope-meta strong { display: block; margin-top: 2px; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.section-action { margin-top: 36px; text-align: center; }

/* Cameras */
.cameras-section { position: relative; background: linear-gradient(145deg, #061522 0%, #0a263d 60%, #0f3a50 100%); overflow: hidden; }
.cameras-section::before { content: ""; position: absolute; width: 480px; height: 480px; top: -180px; right: -110px; border-radius: 50%; background: rgba(21,184,166,.13); filter: blur(40px); }
.camera-grid { position: relative; display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.camera-card { border: 1px solid rgba(255,255,255,.12); border-radius: 22px; overflow: hidden; background: rgba(255,255,255,.055); box-shadow: 0 20px 55px rgba(0,0,0,.18); }
.camera-media { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #02090f; }
.camera-media iframe, .camera-media img { width: 100%; height: 100%; border: 0; object-fit: cover; }
.camera-placeholder { width: 100%; height: 100%; display: grid; place-items: center; align-content: center; gap: 10px; background: radial-gradient(circle at 50% 35%, #183e58, #06131e 65%); color: rgba(255,255,255,.48); }
.camera-placeholder span { font-size: 48px; color: rgba(121,225,209,.5); }
.camera-placeholder small { font-size: 12px; }
.camera-live { position: absolute; top: 14px; left: 14px; display: inline-flex; align-items: center; gap: 7px; min-height: 27px; padding: 0 10px; border-radius: 999px; background: #e63f54; color: #fff; font-size: 9px; font-weight: 900; letter-spacing: .1em; box-shadow: 0 8px 18px rgba(230,63,84,.3); }
.camera-live i { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: pulse 1.6s infinite; }
.camera-live.offline { background: #526272; box-shadow: none; }
.camera-info { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 18px 20px; color: #fff; }
.camera-info h3 { margin: 0; font-size: 17px; }
.camera-info p { margin: 0; color: rgba(255,255,255,.46); font-size: 11px; }
.camera-note { margin: 22px 0 0; color: rgba(255,255,255,.4); font-size: 11px; text-align: center; }

/* Hotels */
.hotels-section { background: #fff; }
.hotels-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 23px; }
.hotel-card { border: 1px solid var(--line); border-radius: 21px; background: #fff; overflow: hidden; transition: transform .22s, box-shadow .22s; }
.hotel-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.hotel-image { position: relative; display: block; aspect-ratio: 4/2.8; overflow: hidden; background: var(--ice); }
.hotel-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.hotel-card:hover .hotel-image img { transform: scale(1.05); }
.hotel-stars { position: absolute; right: 12px; bottom: 12px; padding: 5px 10px; border-radius: 999px; background: rgba(7,23,38,.82); color: #ffd76a; font-size: 10px; font-weight: 850; backdrop-filter: blur(8px); }
.image-fallback { display: grid; place-items: center; width: 100%; height: 100%; min-height: 220px; background: linear-gradient(145deg, #e7f5fb, #bcdfea); color: #2f728c; font-size: 52px; }
.image-fallback.large { min-height: 360px; color: #fff; background: linear-gradient(145deg, #133d5b, #0a2134); }
.hotel-body { padding: 24px; }
.hotel-body h3 { margin: 0 0 8px; font-size: 21px; letter-spacing: -.025em; }
.hotel-body p { min-height: 51px; margin: 0 0 18px; color: var(--muted); font-size: 13px; }
.hotel-meta { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 12px; }
.hotel-meta span { color: var(--muted); }
.hotel-meta strong { color: var(--navy); }

/* News */
.news-section { background: #f5f9fc; }
.news-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 30px; align-items: start; }
.announcement-list { display: grid; gap: 13px; }
.announcement-item { display: grid; grid-template-columns: 66px 1fr; gap: 18px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: #fff; transition: border-color .2s, transform .2s; }
.announcement-item:hover { transform: translateX(5px); border-color: #bed7e4; }
.announcement-date { display: grid; place-items: center; align-content: center; min-height: 68px; border-radius: 13px; background: var(--navy); color: #fff; }
.announcement-date strong { font-size: 23px; line-height: 1; }
.announcement-date span { margin-top: 4px; color: var(--accent-2); font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.announcement-tag { color: #168f84; font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.announcement-item h3 { margin: 3px 0 4px; font-size: 16px; line-height: 1.35; }
.announcement-item p { margin: 0; color: var(--muted); font-size: 12px; }
.blog-feature { border: 1px solid var(--line); border-radius: 22px; background: #fff; overflow: hidden; box-shadow: var(--shadow-soft); }
.blog-feature-image { position: relative; display: block; aspect-ratio: 16/9; overflow: hidden; }
.blog-feature-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-feature:hover .blog-feature-image img { transform: scale(1.04); }
.blog-feature-image > span { position: absolute; top: 14px; left: 14px; padding: 6px 10px; border-radius: 999px; background: var(--accent); color: #06231f; font-size: 9px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.blog-feature-body { padding: 27px; }
.post-meta { color: var(--muted); font-size: 11px; letter-spacing: .03em; }
.blog-feature-body h3 { margin: 8px 0 10px; font-size: 25px; line-height: 1.25; letter-spacing: -.03em; }
.blog-feature-body p { margin: 0 0 18px; color: var(--muted); font-size: 14px; }

/* CTA and footer */
.visit-cta { padding: 88px 0; color: #fff; background: linear-gradient(115deg, #0a2237 0%, #0d3d53 100%); }
.visit-grid { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.visit-grid h2 { margin: 9px 0 10px; font-size: clamp(34px, 4vw, 50px); line-height: 1.05; letter-spacing: -.04em; }
.visit-grid p { margin: 0; color: rgba(255,255,255,.58); }
.visit-actions { display: flex; gap: 12px; }
.site-footer { position: relative; padding: 80px 0 0; background: #04111c; color: rgba(255,255,255,.72); overflow: hidden; }
.footer-aurora { position: absolute; width: 520px; height: 260px; left: 12%; top: -220px; border-radius: 50%; background: rgba(21,184,166,.16); filter: blur(55px); }
.footer-grid { position: relative; display: grid; grid-template-columns: 1.4fr .7fr .8fr .8fr; gap: 55px; padding-bottom: 58px; }
.site-brand-light { margin-bottom: 20px; }
.footer-brand p { max-width: 360px; color: rgba(255,255,255,.45); font-size: 13px; }
.site-footer h3 { margin: 0 0 18px; color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.footer-links ul { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin: 8px 0; }
.footer-links a, .footer-contact a { display: block; color: rgba(255,255,255,.53); font-size: 13px; }
.footer-links a:hover, .footer-contact a:hover { color: var(--accent-2); }
.footer-contact p { margin: 0 0 12px; color: rgba(255,255,255,.46); font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 21px 0; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.34); font-size: 11px; }
.footer-bottom p { margin: 0; }

/* Inner pages */
.inner-main { background: #f5f9fc; min-height: 70vh; }
.page-hero { padding: 180px 0 86px; color: #fff; background: radial-gradient(circle at 82% 10%, rgba(21,184,166,.25), transparent 28%), linear-gradient(145deg, #071726, #103750); }
.page-hero.compact { padding-bottom: 62px; }
.page-hero h1 { max-width: 850px; margin: 10px 0 0; font-size: clamp(40px, 5vw, 66px); line-height: 1.04; letter-spacing: -.045em; }
.archive-description { max-width: 700px; color: rgba(255,255,255,.6); }
.content-with-sidebar { display: grid; grid-template-columns: 1fr 310px; gap: 36px; padding-top: 70px; padding-bottom: 100px; }
.post-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; align-content: start; }
.post-card { border: 1px solid var(--line); border-radius: 20px; background: #fff; overflow: hidden; }
.post-card-image { display: block; aspect-ratio: 16/10; overflow: hidden; }
.post-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.post-card:hover .post-card-image img { transform: scale(1.04); }
.post-card-body { padding: 24px; }
.post-card h2 { margin: 7px 0 9px; font-size: 22px; line-height: 1.25; }
.post-card p { color: var(--muted); font-size: 13px; }
.sidebar { display: grid; gap: 20px; align-content: start; }
.widget { padding: 23px; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.widget-title { margin: 0 0 16px; font-size: 17px; }
.widget ul { margin: 0; padding-left: 18px; }
.widget li { margin: 7px 0; color: var(--muted); font-size: 13px; }
.search-form { display: flex; }
.search-form label { flex: 1; }
.search-field { width: 100%; min-height: 46px; padding: 0 13px; border: 1px solid var(--line); border-radius: 10px 0 0 10px; }
.search-submit { min-width: 80px; border: 0; border-radius: 0 10px 10px 0; background: var(--navy); color: #fff; }
.navigation.pagination { grid-column: 1/-1; }
.nav-links { display: flex; gap: 8px; margin-top: 15px; }
.page-numbers { display: grid; place-items: center; min-width: 38px; height: 38px; border-radius: 10px; background: #fff; border: 1px solid var(--line); font-size: 12px; }
.page-numbers.current { background: var(--navy); color: #fff; }
.article-hero { padding-bottom: 80px; }
.article-header { max-width: 900px; text-align: center; }
.article-header .post-meta { color: rgba(255,255,255,.5); }
.article-header h1 { margin-inline: auto; }
.article-header p { max-width: 720px; margin: 20px auto 0; color: rgba(255,255,255,.65); }
.article-layout { display: grid; grid-template-columns: 1fr 310px; gap: 45px; padding-top: 70px; padding-bottom: 100px; }
.article-content, .page-content { min-width: 0; padding: 42px; border-radius: 22px; background: #fff; box-shadow: var(--shadow-soft); }
.page-content { margin-top: 70px; margin-bottom: 100px; max-width: 1000px; }
.article-featured { margin: -42px -42px 34px; overflow: hidden; border-radius: 22px 22px 0 0; }
.article-featured img { width: 100%; max-height: 590px; object-fit: cover; }
.entry-content { color: #22394f; }
.entry-content h2, .entry-content h3, .entry-content h4 { color: var(--navy); line-height: 1.25; letter-spacing: -.025em; }
.entry-content h2 { margin-top: 1.8em; font-size: 32px; }
.entry-content h3 { margin-top: 1.5em; font-size: 24px; }
.entry-content p { margin: 0 0 1.35em; }
.entry-content a { color: #0c8e82; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.entry-content blockquote { margin: 30px 0; padding: 22px 26px; border-left: 4px solid var(--accent); background: var(--ice); border-radius: 0 14px 14px 0; }
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content th, .entry-content td { padding: 12px; border: 1px solid var(--line); text-align: left; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 35px; padding-top: 25px; border-top: 1px solid var(--line); }
.tag-list a { padding: 6px 10px; border-radius: 8px; background: var(--surface); color: var(--muted); font-size: 11px; }
.not-found-page { display: grid; place-items: center; min-height: 75vh; padding: 150px 0 80px; text-align: center; background: #f5f9fc; }
.not-found-mark { color: #d8e8ef; font-size: clamp(100px, 17vw, 210px); line-height: .8; font-weight: 900; letter-spacing: -.09em; }
.not-found-page h1 { margin: 20px 0 10px; font-size: 42px; }
.not-found-page p { margin: 0 0 25px; color: var(--muted); }
.empty-state { grid-column: 1/-1; padding: 70px 30px; text-align: center; border: 1px dashed #c8d8e2; border-radius: 20px; background: #fff; }

/* Forms and WordPress */
input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="number"], textarea, select {
  width: 100%; padding: 13px 14px; border: 1px solid #ccdbe4; border-radius: 10px; background: #fff; color: var(--text); outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(21,184,166,.13); }
.wp-block-button__link { border-radius: 11px; }
.alignwide { width: min(120%, 1120px); max-width: 1120px; margin-left: 50%; transform: translateX(-50%); }
.alignfull { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }
@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; }
}

@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .55; transform: scale(.85); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes scrollCue { 0% { transform: translateY(0); opacity: 0; } 30% { opacity: 1; } 80% { opacity: 0; transform: translateY(19px); } 100% { opacity: 0; } }
@keyframes snowFall { to { transform: translateY(210px); } }

/* Responsive */
@media (max-width: 1080px) {
  .header-inner { gap: 20px; }
  .main-navigation ul { gap: 17px; }
  .hero-grid { grid-template-columns: 1fr .7fr; gap: 35px; }
  .conditions-card { padding: 22px; }
  .slopes-grid { grid-template-columns: repeat(2,1fr); }
  .hotels-grid { grid-template-columns: repeat(2,1fr); }
  .hotel-card:last-child { grid-column: span 2; }
  .weather-dashboard { grid-template-columns: 1fr; }
  .weather-details { border-bottom: 0; }
  .forecast-list { border-top: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1.2fr .8fr .8fr; }
  .footer-widgets { grid-column: 1/-1; }
}

@media (max-width: 880px) {
  .site-header { height: 72px; background: rgba(7,23,38,.9); }
  .header-inner { grid-template-columns: 1fr auto; }
  .site-brand { min-width: 0; }
  .menu-toggle { display: block; justify-self: end; }
  .header-cta { display: none; }
  .main-navigation { position: fixed; inset: 72px 0 auto; padding: 20px; background: rgba(7,23,38,.98); transform: translateY(-130%); opacity: 0; visibility: hidden; transition: .25s; }
  .menu-open .main-navigation { transform: none; opacity: 1; visibility: visible; }
  .main-navigation ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-navigation a { display: block; padding: 13px 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { height: auto; min-height: 880px; padding: 125px 0 150px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .conditions-card { max-width: 560px; }
  .quick-grid { grid-template-columns: repeat(2,1fr); }
  .quick-card:nth-child(2)::after { display: none; }
  .quick-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading.split { grid-template-columns: 1fr; gap: 15px; }
  .news-layout, .article-layout, .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: repeat(2,1fr); }
  .visit-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 80px 0; }
  .site-brand small { display: none; }
  .site-brand strong { font-size: 15px; }
  .custom-logo { max-height: 48px; }
  .hero { min-height: 920px; padding-top: 118px; }
  .hero h1 { font-size: clamp(43px, 12vw, 58px); }
  .hero-copy > p { font-size: 15px; }
  .hero-actions .button { width: 100%; }
  .hero-trust { gap: 12px; font-size: 10px; }
  .conditions-main { gap: 15px; }
  .big-temp { font-size: 52px; }
  .conditions-stats { grid-template-columns: 1fr; }
  .conditions-stats > div { display: grid; grid-template-columns: 32px 1fr 1fr; align-items: center; text-align: left; }
  .conditions-stats span, .conditions-stats strong, .conditions-stats small { margin: 0; }
  .quick-info { margin-top: -30px; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-card { justify-content: flex-start; min-height: 88px; padding-left: 26px; border-bottom: 1px solid var(--line); }
  .quick-card::after { display: none; }
  .section-heading h2 { font-size: 38px; }
  .weather-now { padding: 28px; }
  .weather-art { width: 78px; height: 78px; font-size: 37px; }
  .weather-now strong { font-size: 46px; }
  .weather-details { grid-template-columns: repeat(2,1fr); padding: 13px; }
  .weather-details > div { border-left: 0; border-bottom: 1px solid var(--line); }
  .forecast-list { grid-template-columns: 1fr; padding: 8px 18px; }
  .forecast-day { border-right: 0; border-bottom: 1px solid var(--line); }
  .slopes-grid, .camera-grid, .hotels-grid, .post-grid { grid-template-columns: 1fr; }
  .hotel-card:last-child { grid-column: auto; }
  .news-layout { gap: 22px; }
  .announcement-item { grid-template-columns: 55px 1fr; gap: 13px; padding: 15px; }
  .visit-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sidebar { grid-template-columns: 1fr; }
  .article-content, .page-content { padding: 24px; }
  .article-featured { margin: -24px -24px 26px; }
  .article-layout { padding-top: 35px; }
  .page-content { margin-top: 35px; }
  .page-hero { padding-top: 140px; }
  .page-hero h1 { font-size: 41px; }
}
