:root {
  --ink: #08111d;
  --navy: #0d1b2b;
  --snow: #f3f6f8;
  --ice: #dbe9f3;
  --orange: #ff4f19;
  --muted: #697582;
  --line: rgba(8, 17, 29, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--snow);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; width: 100%; }

.nav {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  transition: background .35s, height .35s, color .35s, border-color .35s;
}
.nav.scrolled {
  height: 72px;
  color: var(--ink);
  background: rgba(243, 246, 248, .92);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}
.logo { display: flex; align-items: center; gap: 12px; font: 800 15px/1 "Manrope", sans-serif; letter-spacing: -.3px; }
.logo > span:last-child { display: flex; flex-direction: column; gap: 4px; }
.logo small { font: 600 8px/1 "DM Sans", sans-serif; text-transform: uppercase; letter-spacing: 2.6px; opacity: .62; }
.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font: 800 11px/1 "Manrope", sans-serif;
  transform: rotate(-8deg);
}
.nav nav { display: flex; align-items: center; gap: 34px; font-size: 12px; font-weight: 600; }
.nav nav a { position: relative; }
.nav nav a::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 1px; background: var(--orange); transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.nav nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { border: 1px solid currentColor; border-radius: 99px; padding: 12px 15px 12px 18px; font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px; }
.nav-cta span { display: inline-grid; place-items: center; width: 25px; height: 25px; margin-left: 16px; border-radius: 50%; background: var(--orange); color: white; }
.menu-button { display: none; width: 42px; height: 42px; border: 1px solid currentColor; border-radius: 50%; background: transparent; color: inherit; }
.menu-button span { display: block; width: 16px; height: 1px; background: currentColor; margin: 5px auto; }
.mobile-menu { display: none; }

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 130px 7vw 110px;
  color: white;
  background: var(--ink);
  overflow: hidden;
}
.hero-photo { position: absolute; inset: 0; background: url("assets/exterier.jpg") center 46% / cover no-repeat; animation: hero-in 1.5s cubic-bezier(.2,.8,.2,1) both; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 12, 21, .92) 0%, rgba(5, 12, 21, .62) 45%, rgba(5, 12, 21, .12) 78%), linear-gradient(0deg, rgba(5, 12, 21, .5), transparent 55%); }
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.kicker { display: flex; align-items: center; gap: 12px; margin: 0 0 30px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; }
.kicker span { width: 32px; height: 2px; background: var(--orange); }
.kicker.dark span { background: var(--ink); }
.hero h1, h2 {
  margin: 0;
  font: 800 clamp(70px, 10.5vw, 158px)/.82 "Manrope", sans-serif;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
h1 em, h2 em { color: var(--orange); font-style: normal; }
.hero-copy { max-width: 490px; margin: 36px 0 0; font-size: clamp(16px, 1.4vw, 20px); line-height: 1.6; color: rgba(255,255,255,.72); }
.hero-actions { display: flex; gap: 12px; margin-top: 42px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 38px; min-width: 220px; padding: 18px 20px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.4px; transition: transform .2s, box-shadow .2s; }
.button:hover { transform: translateY(-3px); }
.button-orange { color: white; background: var(--orange); }
.button-orange:hover { box-shadow: 0 12px 30px rgba(255,79,25,.28); }
.button-ghost { border: 1px solid rgba(255,255,255,.38); }
.hero-info { position: absolute; z-index: 2; left: 7vw; bottom: 32px; display: flex; gap: 60px; }
.hero-info div { display: flex; flex-direction: column; gap: 4px; }
.hero-info span { font-size: 8px; text-transform: uppercase; letter-spacing: 1.8px; color: rgba(255,255,255,.54); }
.hero-info strong { font: 600 12px "Manrope", sans-serif; }
.hero-side { position: absolute; z-index: 2; right: 24px; top: 50%; transform: rotate(90deg) translateX(50%); transform-origin: right center; font-size: 8px; letter-spacing: 2px; opacity: .55; }

.ticker { overflow: hidden; color: white; background: var(--orange); border-bottom: 1px solid var(--ink); transform: rotate(-.7deg) scale(1.02); position: relative; z-index: 4; }
.ticker div { width: max-content; padding: 14px 0; font: 800 17px "Manrope", sans-serif; letter-spacing: 1px; animation: ticker 20s linear infinite; }
.ticker b { margin: 0 28px; color: var(--ink); }
.section { padding: 120px 5vw; }
.section-label { margin: 0; font-size: 9px; font-weight: 700; letter-spacing: 2px; color: var(--muted); }
.intro { display: grid; grid-template-columns: .7fr 2fr 1fr; align-items: end; gap: 5vw; }
.intro-main h2, .steps-heading h2 { font-size: clamp(46px, 6.2vw, 92px); }
.intro-main h2 em, .steps-heading h2 em { display: inline; }
.intro-copy { margin: 0; padding-bottom: 5px; font-size: 15px; line-height: 1.75; color: var(--muted); }

.equipment { padding-top: 30px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.equipment-card { min-height: 520px; position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; color: white; background: var(--navy); overflow: hidden; }
.equipment-card.orange { color: var(--ink); background: var(--orange); }
.card-number { position: absolute; top: 28px; left: 30px; font-size: 9px; letter-spacing: 2px; opacity: .6; }
.equipment-card h3 { margin: 0 0 12px; font: 700 28px "Manrope", sans-serif; text-transform: uppercase; letter-spacing: -1px; }
.equipment-card p { max-width: 320px; min-height: 48px; margin: 0 0 26px; font-size: 13px; line-height: 1.55; opacity: .65; }
.card-link { padding-top: 16px; border-top: 1px solid rgba(255,255,255,.2); font-size: 9px; text-transform: uppercase; letter-spacing: 1.5px; }
.orange .card-link { border-color: rgba(8,17,29,.25); }
.gear-icon { position: absolute; top: 78px; left: 50%; transform: translateX(-50%); opacity: .92; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.equipment-card:hover .gear-icon { transform: translateX(-50%) rotate(7deg) scale(1.06); }
.skis { width: 150px; height: 220px; }
.skis i { position: absolute; top: 0; width: 23px; height: 210px; border: 2px solid var(--orange); border-radius: 50% 50% 12px 12px; transform: rotate(16deg); }
.skis i:first-child { left: 40px; }
.skis i:last-child { right: 40px; transform: rotate(-16deg); }
.orange .skis i { border-color: var(--ink); }
.board { width: 88px; height: 220px; border: 2px solid var(--ink); border-radius: 50px; transform: translateX(-50%) rotate(14deg); }
.board::after { content: "SD"; position: absolute; inset: 0; display: grid; place-items: center; font: 800 26px "Manrope", sans-serif; transform: rotate(90deg); }
.photo-card { padding: 0; }
.photo-card-image { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,17,29,.97), transparent 70%), url("assets/zima.jpg") center / cover no-repeat; transition: transform .7s; }
.photo-card:hover .photo-card-image { transform: scale(1.05); }
.photo-card-content { position: relative; z-index: 1; padding: 32px; }

.service { display: grid; grid-template-columns: 1.05fr 1fr; min-height: 820px; background: var(--ink); color: white; }
.service-photo { position: relative; overflow: hidden; }
.service-photo img { height: 100%; object-fit: cover; filter: saturate(.8) contrast(1.05); }
.service-photo span { position: absolute; left: 26px; bottom: 26px; padding: 10px 13px; background: var(--orange); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.service-content { display: flex; flex-direction: column; justify-content: center; padding: 80px 7vw; }
.service-content h2 { font-size: clamp(52px, 6.8vw, 98px); }
.service-lead { max-width: 550px; margin: 38px 0; line-height: 1.75; color: rgba(255,255,255,.62); }
.service-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.16); }
.service-list li { display: flex; gap: 24px; padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.16); font-size: 12px; }
.service-list span { color: var(--orange); font-size: 9px; }

.steps { display: grid; grid-template-columns: 1fr 1.5fr; gap: 8vw; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); align-items: end; }
.steps-grid article { min-height: 270px; padding: 24px; border-left: 1px solid var(--line); }
.steps-grid article:nth-child(2) { transform: translateY(35px); }
.steps-grid span { font-size: 10px; color: var(--orange); }
.steps-grid h3 { margin: 100px 0 12px; font: 700 17px "Manrope", sans-serif; text-transform: uppercase; }
.steps-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }

.location { display: grid; grid-template-columns: 1.1fr 1fr; color: white; background: #12314a; }
.location-copy { padding: 110px 7vw; }
.location h2 { font-size: clamp(62px, 8vw, 116px); }
.location-copy > p:not(.section-label):not(.kicker) { max-width: 460px; margin: 34px 0; color: rgba(255,255,255,.64); line-height: 1.7; }
.location .section-label { margin-bottom: 40px; color: rgba(255,255,255,.45); }
.location .button { width: fit-content; }
.distance-list { display: grid; grid-template-columns: 1fr 1fr; border-left: 1px solid rgba(255,255,255,.14); }
.distance-list div { display: grid; place-content: center; padding: 35px; border-right: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
.distance-list strong { font: 700 clamp(60px,7vw,100px)/.8 "Manrope", sans-serif; letter-spacing: -6px; }
.distance-list span { margin-left: 4px; color: var(--orange); font: 700 12px "Manrope", sans-serif; }
.distance-list p { margin: 20px 0 0; font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.56); }

.gallery .section-label { margin-bottom: 30px; }
.gallery-grid { display: grid; grid-template-columns: 1.55fr .8fr; gap: 18px; align-items: end; }
.gallery figure { margin: 0; overflow: hidden; }
.gallery figure img { height: 420px; object-fit: cover; transition: transform .7s; }
.gallery-large img { height: 610px !important; }
.gallery figure:hover img { transform: scale(1.025); }
.gallery figcaption { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 9px; text-transform: uppercase; letter-spacing: 1.4px; }

.contact { color: white; background: var(--ink); padding: 120px 7vw 60px; }
.contact-top { position: relative; padding-bottom: 90px; border-bottom: 1px solid rgba(255,255,255,.18); }
.contact-top h2 { font-size: clamp(72px, 11vw, 160px); }
.round-link { position: absolute; right: 3vw; top: 50%; display: grid; place-items: center; width: 130px; height: 130px; border-radius: 50%; background: var(--orange); font-size: 35px; transition: transform .3s; }
.round-link:hover { transform: rotate(45deg) scale(1.05); }
.contact-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 45px; padding-top: 55px; }
.contact-grid > div { display: flex; flex-direction: column; gap: 9px; }
.contact-grid span { margin-bottom: 10px; font-size: 8px; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.42); }
.contact-grid a, .contact-grid strong { font: 600 13px "Manrope", sans-serif; }
.contact-grid a:hover { color: var(--orange); }
.contact-grid small { color: rgba(255,255,255,.45); }
footer { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 30px; padding: 35px 5vw 25px; color: white; background: var(--ink); border-top: 1px solid rgba(255,255,255,.14); }
footer p { color: rgba(255,255,255,.45); font-size: 11px; }
footer > a:not(.logo) { font-size: 11px; }
footer > small { grid-column: 1 / -1; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); font-size: 8px; letter-spacing: 1px; color: rgba(255,255,255,.3); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
@keyframes hero-in { from { transform: scale(1.08); filter: brightness(.6); } to { transform: scale(1); filter: brightness(1); } }
@keyframes ticker { to { transform: translateX(-50%); } }

@media (max-width: 1000px) {
  .nav nav, .nav-cta { display: none; }
  .menu-button { display: block; }
  .mobile-menu { position: fixed; z-index: 45; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 20px; padding: 90px 8vw; color: white; background: var(--ink); transform: translateY(-105%); transition: transform .45s cubic-bezier(.2,.8,.2,1); }
  .mobile-menu.open { transform: none; }
  .mobile-menu a { font: 700 38px "Manrope"; text-transform: uppercase; }
  .hero { padding-inline: 5vw; }
  .intro { grid-template-columns: 1fr 2fr; }
  .intro-copy { grid-column: 2; }
  .equipment { grid-template-columns: 1fr; }
  .equipment-card { min-height: 460px; }
  .service { grid-template-columns: 1fr; }
  .service-photo { height: 520px; }
  .steps { grid-template-columns: 1fr; }
  .location { grid-template-columns: 1fr; }
  .distance-list { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .nav { height: 70px; padding-inline: 20px; }
  .nav.scrolled { height: 64px; }
  .logo-mark { width: 36px; height: 36px; }
  .hero { min-height: 800px; padding: 120px 20px 150px; align-items: flex-end; }
  .hero-photo { background-position: 58% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(5,12,21,.96) 0%, rgba(5,12,21,.28) 75%); }
  .hero h1 { font-size: clamp(60px, 20vw, 100px); }
  .hero-copy { font-size: 14px; }
  .hero-actions { flex-direction: column; }
  .hero-info { left: 20px; bottom: 32px; gap: 28px; }
  .hero-side { display: none; }
  .section { padding: 88px 20px; }
  .intro { grid-template-columns: 1fr; }
  .intro-copy { grid-column: 1; }
  .equipment { padding-top: 10px; }
  .service-photo { height: 420px; }
  .service-content { padding: 80px 20px; }
  .service-content h2, .intro-main h2, .steps-heading h2 { letter-spacing: -.06em; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid article, .steps-grid article:nth-child(2) { min-height: 200px; transform: none; border-left: 0; border-top: 1px solid var(--line); }
  .steps-grid h3 { margin-top: 60px; }
  .location-copy { padding: 90px 20px; }
  .distance-list { grid-template-columns: 1fr 1fr; }
  .distance-list div { padding: 40px 20px; }
  .distance-list strong { letter-spacing: -4px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery figure img, .gallery-large img { height: 390px !important; }
  .contact { padding: 90px 20px 45px; }
  .contact-top { padding-bottom: 150px; }
  .contact-top h2 { font-size: 20vw; }
  .round-link { width: 90px; height: 90px; left: 0; right: auto; top: auto; bottom: 35px; }
  .contact-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; padding: 35px 20px; }
  footer > small { grid-column: 1; }
}

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