:root {
  --ink: #000000;
  --ink-soft: #0a0a0a;
  --ink-elevated: #141414;
  --ink-panel: #1a1a1a;
  --brand-gold: #f5c518;
  --brand-gold-hot: #ffd84a;
  --brand-gold-deep: #d4a80a;
  --brand-gold-soft: rgba(245, 197, 24, 0.16);
  --brand-gold-glow: rgba(245, 197, 24, 0.35);
  --alpine-950: #050505;
  --alpine-900: #0a0a0a;
  --alpine-800: #161616;
  --alpine-700: #242424;
  --alpine-600: #333333;
  --alpine-500: #666666;
  --alpine-400: #999999;
  --alpine-300: #c8c8c8;
  --alpine-200: #e8e8e8;
  --alpine-100: #f5f5f5;
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.92);
  --text-muted: rgba(230, 230, 230, 0.82);
  --glass: rgba(8, 8, 8, 0.94);
  --glass-light: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(245, 197, 24, 0.22);
  --field-bg: #121212;
  --field-border: rgba(255, 255, 255, 0.18);
  --card-bg: #ffffff;
  --card-ink: #0a0a0a;
  --max: 1180px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  /* legacy aliases → brand gold */
  --green-500: var(--brand-gold);
  --green-600: var(--brand-gold);
  --green-700: var(--brand-gold-deep);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--alpine-950);
  line-height: 1.55;
  min-height: 100vh;
}

.page-mountains {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.86) 42%,
      rgba(0, 0, 0, 0.97) 100%),
    var(--page-bg) center top / cover no-repeat fixed;
}

.page-mountains::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 38% at 50% 0%, rgba(245, 197, 24, 0.1), transparent 55%),
    radial-gradient(ellipse 40% 28% at 85% 70%, rgba(245, 197, 24, 0.05), transparent 50%);
  pointer-events: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.skip-link {
  position: absolute; left: 1rem; top: -100%; z-index: 200;
  background: var(--brand-gold); color: var(--ink); padding: .5rem 1rem;
  border-radius: 8px; font-weight: 800; text-decoration: none;
}
.skip-link:focus { top: 1rem; }

.container { width: min(var(--max), calc(100% - 1.5rem)); margin-inline: auto; }

/* header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 4px solid #000;
  box-shadow: inset 0 -3px 0 rgba(245, 197, 24, 0.55);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.97);
  box-shadow: inset 0 -3px 0 rgba(245, 197, 24, 0.45), 0 12px 32px rgba(0, 0, 0, 0.45);
}
.site-header .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 1rem 0 .55rem;
  box-sizing: border-box;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-height: 92px;
  padding: 1.15rem 0;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  box-sizing: border-box;
}
.header-brand {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  flex-shrink: 0;
  min-width: 0;
  margin-left: 1.1rem;
}
.header-brand .logo {
  margin: 0;
}
.header-brand .logo__text {
  max-width: 7.25rem;
  font-size: .76rem;
}
.logo {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 800; font-size: .76rem; text-decoration: none;
  color: var(--text); letter-spacing: -.02em;
  flex-shrink: 0;
}
.logo__mark {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: block;
  object-fit: contain;
}
.logo__text { line-height: 1.15; max-width: 7.5rem; }
.nav {
  display: flex; gap: 1.5rem; margin-left: auto;
  font-size: 1rem; font-weight: 650;
  flex-wrap: nowrap;
  align-items: center;
}
.nav a {
  text-decoration: none; color: var(--text-soft);
  transition: color .2s ease;
  white-space: nowrap;
  letter-spacing: -.01em;
}
.nav a:hover,
.nav a[aria-current="page"] { color: var(--brand-gold); }

.header-cta {
  flex-shrink: 0;
  margin-left: .15rem;
  padding: .62rem 1.05rem;
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
  line-height: 1.2;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(245, 197, 24, 0.28);
}
.header-cta:hover {
  transform: none;
  box-shadow: 0 6px 18px rgba(245, 197, 24, 0.38);
}

.nav-phone {
  display: none;
  color: var(--brand-gold) !important;
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--brand-gold-hot) !important; }

.nav-toggle {
  display: none; margin-left: auto; width: 46px; height: 46px;
  border: 1px solid var(--glass-border); border-radius: 10px;
  background: var(--glass-light); cursor: pointer;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; margin: 4px auto;
  background: var(--text);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .7rem 1.25rem; border-radius: 10px; border: 0;
  font: inherit; font-weight: 700; cursor: pointer; text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand-gold-hot), var(--brand-gold) 45%, var(--brand-gold-deep));
  color: var(--ink);
  box-shadow: 0 8px 28px var(--brand-gold-glow);
}
.btn-primary:hover {
  box-shadow: 0 12px 36px rgba(245, 197, 24, 0.45);
}
.btn-lg { padding: .95rem 1.5rem; }

.hero-alpine {
  position: relative;
  min-height: clamp(480px, 72vh, 700px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-alpine__bg {
  position: absolute; inset: -8% 0 0;
  background: var(--hero-img) center 12% / cover no-repeat;
  will-change: transform;
  transform: scale(1.06);
  filter: contrast(1.05) brightness(0.92);
}

.hero-alpine__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.32) 50%, rgba(0, 0, 0, 0.28) 100%);
}

.hero-alpine__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 46% 38% at 20% 68%, rgba(245, 197, 24, 0.12), transparent 62%),
    radial-gradient(ellipse 38% 28% at 82% 38%, rgba(245, 197, 24, 0.1), transparent 55%);
  pointer-events: none;
}

.hero-alpine__shine {
  position: absolute; inset: 0;
  background: linear-gradient(125deg, transparent 40%, rgba(245, 197, 24, 0.08) 50%, transparent 60%);
  animation: hero-shine 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hero-shine {
  0%, 100% { opacity: 0.3; transform: translateX(-10%); }
  50% { opacity: 1; transform: translateX(10%); }
}

.hero-alpine__content {
  position: relative;
  z-index: 4;
  padding: clamp(2.75rem, 5.5vh, 4rem) 0 4.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: stretch;
}

.hero-alpine--with-car .hero-alpine__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.hero-alpine__copy {
  width: 100%;
  max-width: 42rem;
  min-width: 0;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-inline: auto;
}

.hero-alpine--with-car .hero-alpine__copy {
  text-align: center;
  align-items: center;
  max-width: 42rem;
  margin-inline: auto;
}

.hero-alpine--with-car h1 {
  font-size: clamp(1.35rem, 2.8vw, 2.35rem);
  text-align: center;
  max-width: none;
  white-space: nowrap;
  text-wrap: nowrap;
}

.hero-alpine__copy .hero-sub {
  text-align: center;
  max-width: 36ch;
}

.hero-brand-name {
  margin: 0 0 .85rem;
  font-size: clamp(.88rem, 1.7vw, 1.1rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
  text-align: center;
}

/* Desktop: text viac vpravo (stred-ľavá zóna), menšia flotila na okraji */
@media (min-width: 980px) {
  .hero-alpine--with-car .hero-alpine__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 4;
    min-height: clamp(500px, 62vh, 680px);
    padding-top: clamp(2.1rem, 3.5vh, 3rem);
    padding-bottom: clamp(4.5rem, 9vh, 6rem);
    padding-left: clamp(6vw, 10vw, 12rem);
  }
  .hero-alpine--with-car .hero-alpine__copy {
    position: relative;
    z-index: 4;
    width: auto;
    max-width: 36rem;
    margin: 0;
    padding: 0;
    align-items: flex-start;
    text-align: left;
    min-width: 0;
    text-shadow:
      0 1px 2px rgba(0, 0, 0, 0.95),
      0 2px 8px rgba(0, 0, 0, 0.9),
      0 0 24px rgba(0, 0, 0, 0.85),
      0 0 48px rgba(0, 0, 0, 0.7);
  }
  .hero-alpine--with-car .hero-car {
    position: absolute;
    right: 0;
    top: 40%;
    transform: translateY(-50%);
    width: min(72vw, 1040px);
    max-width: 1040px;
    margin: 0;
    z-index: 3;
    pointer-events: none;
  }
  .hero-alpine--with-car .hero-car img {
    max-height: min(520px, 58vh);
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: right center;
  }
  .hero-alpine--with-car h1 {
    font-size: clamp(1.2rem, 2.2vw + 0.35rem, 2.05rem);
    white-space: nowrap;
    letter-spacing: -.03em;
    max-width: none;
    overflow: visible;
    text-align: left;
    text-shadow:
      0 1px 1px rgba(0, 0, 0, 1),
      0 2px 6px rgba(0, 0, 0, 0.95),
      0 0 18px rgba(0, 0, 0, 0.9),
      0 0 36px rgba(0, 0, 0, 0.75);
  }
  .hero-alpine--with-car .hero-alpine__copy .hero-sub {
    color: #fff;
    text-align: left;
    text-shadow:
      0 1px 1px rgba(0, 0, 0, 1),
      0 2px 8px rgba(0, 0, 0, 0.95),
      0 0 20px rgba(0, 0, 0, 0.85),
      0 0 40px rgba(0, 0, 0, 0.7);
  }
  .hero-alpine--with-car .hero-brand-name {
    text-align: left;
    text-shadow:
      0 1px 2px rgba(0, 0, 0, 1),
      0 2px 10px rgba(0, 0, 0, 0.9),
      0 0 28px rgba(0, 0, 0, 0.75);
  }
  .hero-alpine--with-car h1,
  .hero-alpine--with-car .hero-alpine__copy .hero-sub,
  .hero-alpine--with-car .hero-brand-name {
    text-align: left;
  }
  .hero-alpine--with-car .hero-tag {
    align-self: flex-start;
  }
}

.hero-brand {
  display: block;
  width: clamp(96px, 18vw, 148px);
  height: auto;
  margin: 0 0 .85rem;
  filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 20px rgba(245, 197, 24, 0.22));
}

.hero-tag {
  display: inline-block; margin: 0 0 .75rem;
  padding: .35rem .75rem;
  border-radius: 999px;
  font-size: .72rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-gold);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(245, 197, 24, 0.55);
  text-shadow: none;
}

.hero-alpine h1 {
  margin: 0 0 .4rem;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800; letter-spacing: -.04em; line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-sub {
  margin: 0 0 1.25rem;
  font-size: 1.05rem; color: var(--text-soft); font-weight: 500;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.65);
}

.hero-phone {
  display: inline-flex; padding: .7rem 1.15rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-gold-hot), var(--brand-gold));
  color: var(--ink); font-weight: 800; text-decoration: none;
  box-shadow: 0 8px 28px var(--brand-gold-glow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.hero-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(245, 197, 24, 0.5);
}

.hero-scroll {
  position: absolute; bottom: 0.65rem; left: 50%; z-index: 6;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .15rem;
  color: rgba(255, 255, 255, 0.75); text-decoration: none;
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase;
  animation: scroll-cue 2.4s ease-in-out infinite;
}
.hero-scroll svg { opacity: 0.85; }

@keyframes scroll-cue {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* Hero car — panoráma flotily na pravom okraji */
.hero-alpine--with-car {
  position: relative;
  min-height: clamp(520px, 72vh, 720px);
  padding-bottom: 1.5rem;
  overflow: hidden;
}
.hero-car {
  width: 100%;
  max-width: min(980px, 96vw);
  min-width: 0;
  pointer-events: none;
  overflow: visible;
  position: relative;
  z-index: 3;
  will-change: transform, opacity;
  transition: opacity .15s linear;
}
.hero-car img {
  width: 100%;
  height: auto;
  max-height: min(520px, 58vh);
  object-fit: contain;
  object-position: right center;
  display: block;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.45));
}
.hero-car.is-gone {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
}

.hero-bridge {
  position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3;
  height: clamp(28px, 3.5vw, 48px);
  pointer-events: none;
}
.hero-bridge svg { width: 100%; height: 100%; display: block; }
.hero-bridge__wave { fill: rgba(0, 0, 0, 0.75); }
.hero-bridge__ridge { fill: var(--ink); }

/* Hero → catalog transition glow */
.catalog--after-hero {
  position: relative;
  margin-top: -1px;
  padding-top: 0.5rem;
}
.catalog--after-hero::before {
  content: "";
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(600px, 80%); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 197, 24, 0.65), transparent);
  box-shadow: 0 0 40px rgba(245, 197, 24, 0.28);
}

/* Luxury entrance animations */
.anim-in {
  opacity: 0;
  transform: translateY(22px);
  animation: fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.anim-in--1 { animation-delay: 0.12s; }
.anim-in--2 { animation-delay: 0.24s; }
.anim-in--3 { animation-delay: 0.36s; }
.anim-in--4 { animation-delay: 0.48s; }

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.catalog {
  padding: 1rem 0 2.5rem;
}
.catalog-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.25rem;
}
.catalog-head h2 {
  margin: 0; font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em;
}
.catalog-head span {
  font-size: .82rem; font-weight: 700; color: var(--brand-gold);
  text-transform: uppercase; letter-spacing: .08em;
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
}

.car-card {
  background: var(--card-bg);
  border-radius: 14px;
  overflow: hidden;
  color: var(--card-ink);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.car-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 197, 24, 0.55);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(245, 197, 24, 0.2);
}
.car-card__img {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  background: transparent;
}
.car-card__badge {
  position: absolute; top: .7rem; left: .7rem; z-index: 3;
  padding: .3rem .65rem; border-radius: 999px;
  background: var(--brand-gold); color: var(--ink);
  font-size: .68rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase;
}
.car-card--featured {
  border-color: rgba(245, 197, 24, 0.45);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(245, 197, 24, 0.15);
}

.about-fleet {
  padding: 2.5rem 0 3rem;
}
.about-fleet__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}
.about-fleet__media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: transparent;
}
.about-fleet__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}
.about-fleet__copy h2 {
  margin: 0 0 .75rem;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  letter-spacing: -.03em;
}
.about-fleet__copy p {
  margin: 0 0 .85rem;
  color: var(--text-soft);
  max-width: 38ch;
}
.about-fleet__perk {
  padding: .85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(245, 197, 24, 0.35);
  background: rgba(245, 197, 24, 0.08);
  color: #fff !important;
}
.about-fleet__perk--solo {
  margin: 0 auto;
  max-width: 52rem;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.55;
}
.about-fleet__perk strong {
  color: #fff;
  font-weight: 700;
}

.wedding-band {
  padding: 2.5rem 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background:
    linear-gradient(135deg, rgba(245, 197, 24, 0.1), rgba(0, 0, 0, 0.35) 55%),
    rgba(0, 0, 0, 0.45);
}
.wedding-band__inner { max-width: 720px; }
.wedding-band h2 {
  margin: 0 0 .65rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800; letter-spacing: -.03em;
}
.wedding-band p { margin: 0 0 1.25rem; color: var(--text-soft); max-width: 52ch; }
.wedding-band__actions { display: flex; flex-wrap: wrap; gap: .65rem; }
.wedding-note {
  margin-top: 2rem; padding: 1.25rem 1.35rem;
  border-radius: 14px;
  border: 1px solid rgba(245, 197, 24, 0.35);
  background: rgba(245, 197, 24, 0.07);
}
.wedding-note h2 { margin: 0 0 .55rem; font-size: 1.15rem; }
.wedding-note p { margin: 0; color: var(--text-soft); }
.car-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: opacity .45s ease, transform .5s ease;
}
.car-card__photo--main {
  opacity: 1;
  z-index: 1;
  transform: scale(1);
}
.car-card__photo--alt {
  opacity: 0;
  z-index: 0;
  transform: scale(1.06);
}
.car-card--swap:hover .car-card__photo--main {
  opacity: 0;
  transform: scale(1.04);
}
.car-card--swap:hover .car-card__photo--alt {
  opacity: 1;
  transform: scale(1);
}
.car-card:not(.car-card--swap):hover .car-card__photo--main {
  transform: scale(1.04);
}

.car-card__body { padding: 1rem 1.05rem 1.1rem; }
.car-card h2 {
  margin: 0 0 .3rem; font-size: 1rem; font-weight: 800;
  letter-spacing: -.02em; line-height: 1.25;
}
.car-card .car-spec {
  margin: 0 0 .55rem; font-size: .82rem;
  color: #475569; font-weight: 600;
}
.car-card .car-price {
  margin: 0 0 .9rem;
  font-size: .95rem;
  color: #1f2937;
  font-weight: 600;
}
.car-card .car-price strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0a0a0a;
}
.car-card .car-price span {
  font-size: .88rem;
  color: #334155;
  font-weight: 600;
}

.vehicle-detail .car-price {
  margin: .85rem 0 1rem;
  font-size: 1.05rem;
  color: #fff;
  font-weight: 600;
}
.vehicle-detail .car-price strong {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--brand-gold);
}
.vehicle-detail .car-price span,
.vehicle-detail .car-price {
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.car-actions {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .4rem;
}
.car-btn {
  display: flex; align-items: center; justify-content: center;
  padding: .6rem .25rem; border-radius: 8px;
  border: 1px solid #e5e5e5; background: #f5f5f5;
  font-size: .75rem; font-weight: 800; text-decoration: none;
  color: var(--card-ink); text-align: center;
  transition: border-color .2s, color .2s, background .2s;
}
.car-btn:hover {
  border-color: var(--brand-gold); color: var(--ink);
}
.car-btn--primary {
  background: var(--brand-gold); border-color: var(--brand-gold); color: var(--ink);
}
.car-btn--primary:hover {
  background: var(--brand-gold-deep); border-color: var(--brand-gold-deep); color: var(--ink);
}

.panel-section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--glass-border);
}
.panel-section h1,
.panel-section h2,
.panel-section h3 {
  color: #fff;
}
.panel-section h2 {
  margin: 0 0 .35rem; font-size: 1.35rem; font-weight: 800;
  letter-spacing: -.02em;
}
.block-meta {
  margin: 0 0 1.25rem;
  color: var(--text-soft);
  font-size: .92rem;
}
.block-meta a { color: var(--brand-gold); font-weight: 700; }

.pricing-list { display: grid; gap: .85rem; }
.price-block {
  background: var(--glass);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: 14px; padding: 1.1rem 1.2rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.price-block h3 { margin: 0 0 .2rem; font-size: 1.05rem; font-weight: 800; color: #fff; }
.price-block h3 a { color: #fff; text-decoration: none; }
.price-block h3 a:hover { color: var(--brand-gold); }
.price-block .block-meta { margin-bottom: .75rem; color: var(--text-soft); }

.price-table {
  width: 100%; border-collapse: collapse; font-size: .9rem;
  color: #fff;
}
.price-table th, .price-table td {
  padding: .55rem .4rem;
  border-bottom: 1px solid var(--glass-border);
  text-align: left;
  color: #fff;
}
.price-table th {
  font-size: .72rem; text-transform: uppercase;
  letter-spacing: .06em; color: var(--text-muted); font-weight: 700;
}
.price-table td:nth-child(2) {
  font-weight: 800; color: var(--brand-gold);
}

.booking-wrap {
  max-width: 600px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 14px; padding: 1.25rem;
}
.booking-form__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .85rem;
}
.booking-form label {
  display: grid; gap: .35rem;
  font-size: .82rem; font-weight: 700; color: var(--text-soft);
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%; padding: .75rem .85rem; border-radius: 10px;
  border: 1px solid var(--field-border);
  background: var(--field-bg);
  color: #fff;
  font: inherit;
  color-scheme: dark;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(245, 197, 24, 0.4);
  border-color: var(--brand-gold);
}
.booking-form option,
.calc-grid select option,
select option {
  color: #0a0a0a;
  background: #fff;
}
.full { grid-column: 1 / -1; }
.consent {
  display: flex !important; align-items: flex-start; gap: .55rem;
  font-weight: 500 !important; color: var(--text-soft) !important;
}
.consent a { color: var(--brand-gold); }
.consent input { width: auto; margin-top: .15rem; accent-color: var(--brand-gold); }
.bot-check {
  display: grid;
  gap: .45rem;
  font-size: .9rem;
  font-weight: 700 !important;
  color: #fff !important;
}
.bot-check input { max-width: 8rem; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-status { min-height: 1.2rem; margin: .5rem 0; font-size: .9rem; }
.form-status.is-error { color: #f87171; }
.form-status.is-success { color: var(--brand-gold); }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: .85rem;
}
.photo-block {
  margin: 0; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass);
}
.photo-block img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.photo-block figcaption {
  padding: .65rem .85rem; font-size: .85rem; font-weight: 700;
  color: var(--text-soft);
}

.contact-row {
  display: grid; grid-template-columns: 1fr 1.25fr;
  gap: 1.5rem; align-items: start;
}
.contact-row a { color: var(--brand-gold); text-decoration: none; }
.contact-row a:hover { color: var(--brand-gold-hot); }

.map-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 280px;
  background: rgba(10, 20, 36, 0.85);
  border: 1px solid rgba(148, 180, 212, 0.18);
}
.map-card iframe { width: 100%; height: 100%; min-height: 280px; border: 0; display: block; }
.map-card__placeholder {
  display: grid;
  gap: 0.65rem;
  align-content: center;
  justify-items: start;
  min-height: 280px;
  padding: 1.25rem;
}
.map-card__placeholder .btn { margin-top: 0.25rem; }

.site-footer {
  border-top: 1px solid var(--glass-border);
  padding: 1.25rem 0 1.75rem;
  text-align: center; font-size: .82rem; color: var(--text-muted);
}
.site-footer a { color: var(--brand-gold); text-decoration: none; }
.site-footer a:hover { color: var(--brand-gold-hot); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: .45rem; }
.footer-credit {
  margin: 0;
  font-size: .75rem;
  letter-spacing: .02em;
  color: var(--text-muted);
}
.footer-credit a {
  color: rgba(245, 197, 24, 0.72);
}
.footer-credit a:hover {
  color: var(--brand-gold-hot);
}
.footer-brand {
  display: flex; align-items: center; gap: .85rem;
  text-align: left;
}
.footer-brand__logo {
  width: 56px; height: 56px;
  border-radius: 12px;
  object-fit: contain;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(245, 197, 24, 0.2);
}
.footer-brand strong { display: block; color: var(--text); margin-bottom: .15rem; }

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem .85rem;
  margin: .65rem 0 .35rem;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: .88rem;
  color: var(--brand-gold);
  text-decoration: none;
}
.social-links a:hover { color: var(--brand-gold-hot); }
.social-links svg {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}
.social-links--contact { margin: 1rem 0; }
.social-links--header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: .2rem;
  margin: 0;
  margin-right: .15rem;
}
.social-links--header a {
  width: 38px;
  height: 38px;
  justify-content: center;
  border-radius: 9px;
  border: 1px solid var(--glass-border);
  background: var(--glass-light);
  color: var(--brand-gold);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.social-links--header a:hover {
  color: var(--brand-gold-hot);
  border-color: rgba(245, 197, 24, 0.45);
  background: rgba(245, 197, 24, 0.1);
}
.social-links--header svg {
  width: 1.1rem;
  height: 1.1rem;
}
.social-links--nav {
  display: none;
}

.prose { max-width: 680px; }
.prose--wide { max-width: 820px; }
.prose--article { max-width: 760px; }
.prose--article .lead-text { font-size: 1.15rem; line-height: 1.65; margin: 1rem 0 1.25rem; }
.article-head { margin-bottom: 1.5rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--glass-border); }
.article-meta {
  display: flex; flex-wrap: wrap; gap: .75rem 1.25rem;
  font-size: .82rem; color: var(--text-muted); margin-top: .75rem;
}
.article-meta a { color: var(--brand-gold); text-decoration: none; }
.article-toc {
  margin: 0 0 2rem; padding: 1rem 1.15rem;
  border-radius: 14px; border: 1px solid var(--glass-border);
  background: rgba(245, 197, 24, 0.04);
}
.article-toc__title { margin: 0 0 .65rem; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-gold); }
.article-toc ol { margin: 0; padding-left: 1.2rem; }
.article-toc li { margin: .35rem 0; }
.article-toc a { color: var(--alpine-200); text-decoration: none; }
.article-toc a:hover { color: var(--brand-gold); text-decoration: underline; }
.article-body h2 { margin-top: 2.25rem; scroll-margin-top: 5rem; }
.article-body h3 { margin-top: 1.5rem; font-size: 1.05rem; scroll-margin-top: 5rem; }
.article-body p { margin: .85rem 0; color: var(--text-soft); line-height: 1.75; }
.article-body ul, .article-body ol { margin: .85rem 0 1.1rem; padding-left: 1.25rem; color: var(--text-soft); }
.article-body li { margin: .4rem 0; line-height: 1.65; }
.article-faq { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--glass-border); }
.article-faq .faq-item h3 { margin: 0 0 .45rem; font-size: 1rem; }
.article-cta {
  margin-top: 2.5rem; padding: 1.35rem 1.4rem;
  border-radius: 14px; border: 1px solid rgba(245, 197, 24, 0.4);
  background: rgba(245, 197, 24, 0.08);
}
.article-cta h2 { margin: 0 0 .65rem; font-size: 1.15rem; }
.guide-card__meta { margin: 0 0 .35rem; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--brand-gold); }
.prose a { color: var(--brand-gold); }
.prose ul { margin: .75rem 0 1.25rem; padding-left: 1.2rem; }
.prose li { margin: .35rem 0; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.35rem; font-size: 1.1rem; }
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .35rem .9rem;
  margin: .75rem 0 0;
  padding-left: 1.1rem;
}
.feature-list li { margin: .2rem 0; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(245, 197, 24, 0.35);
}
.btn-ghost:hover {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
}

.page-hero h1 {
  margin: 0 0 .5rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -.03em;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.crumbs {
  font-size: .85rem;
  color: var(--text-soft);
  margin-bottom: 1rem;
}
.crumbs a { color: var(--brand-gold); text-decoration: none; }

.catalog-note { margin-top: 1.5rem; }
.catalog-note a { color: var(--brand-gold); font-weight: 700; }

.calc-panel {
  background: var(--glass);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  color: #fff;
}
.calc-disclaimer {
  margin: 0 0 1.1rem;
  padding: .85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(245, 197, 24, 0.45);
  background: rgba(245, 197, 24, 0.12);
  color: #fff;
  font-size: .92rem;
  line-height: 1.45;
}
.calc-disclaimer a,
.calc-exact-note a,
.pricing-callout a {
  color: var(--brand-gold);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.calc-exact-note {
  margin: 0 0 .75rem;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
}
.calc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1rem;
}
.pricing-callout {
  margin: 1.5rem 0 0;
  padding: .9rem 1.05rem;
  border-radius: 12px;
  border: 1px solid rgba(245, 197, 24, 0.35);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text-soft);
}
.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.calc-grid label {
  display: grid;
  gap: .45rem;
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
}
.calc-grid label strong {
  color: var(--brand-gold);
  font-weight: 800;
}
.calc-grid input[type="range"] { width: 100%; accent-color: var(--brand-gold); }
.calc-grid select {
  padding: .75rem;
  border-radius: 10px;
  border: 1px solid var(--field-border);
  background: var(--field-bg);
  color: #fff;
  font: inherit;
  color-scheme: dark;
}
.calc-grid select:focus {
  outline: 2px solid rgba(245, 197, 24, 0.4);
  border-color: var(--brand-gold);
}
.calc-result {
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
}
.calc-total {
  margin: 0 0 .5rem;
  font-size: 1.15rem;
  color: #fff;
}
.calc-total strong {
  color: var(--brand-gold);
  font-size: 1.5rem;
}
.calc-result .block-meta {
  color: var(--text-soft);
  line-height: 1.55;
}

.vehicle-detail__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.vehicle-gallery-block {
  display: grid;
  gap: .75rem;
  min-width: 0;
}
.vehicle-detail__media {
  background: transparent;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  max-height: min(480px, 58vh);
  padding: .5rem;
}
.vehicle-detail__media img,
.vehicle-gallery__main {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(460px, 54vh);
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}
.photo-hint {
  font-size: .82rem;
  color: var(--text-muted);
  margin: .5rem 0 0;
}

.vehicle-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: .5rem;
  margin-top: 0;
}
.vehicle-gallery__thumb {
  appearance: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  background: transparent;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 10;
  display: block;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.vehicle-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
  border: none;
  border-radius: 0;
  aspect-ratio: auto;
}
.vehicle-gallery__thumb:hover,
.vehicle-gallery__thumb:focus-visible {
  border-color: rgba(245, 197, 24, 0.65);
  outline: none;
}
.vehicle-gallery__thumb.is-active {
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 1px var(--brand-gold);
}
.lead-text {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 60ch;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}
.link-list {
  columns: 2;
  gap: 1.5rem;
  padding-left: 1.1rem;
  color: var(--brand-gold);
}
.link-list a { text-decoration: none; }
.guide-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.guide-card {
  display: block;
  padding: 1.15rem;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease;
}
.guide-card:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 197, 24, 0.55);
  box-shadow: 0 8px 28px rgba(245, 197, 24, 0.08);
}
.guide-card h2 {
  margin: 0 0 .4rem;
  font-size: 1.05rem;
  color: #fff;
}
.guide-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: .9rem;
}
.guide-steps {
  padding-left: 1.2rem;
  color: var(--text-soft);
}
.guide-steps li { margin-bottom: .65rem; }
.faq-list { display: grid; gap: .85rem; margin-top: 1.25rem; }
.faq-item {
  padding: 1.1rem 1.2rem;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
}
.faq-item h2 {
  margin: 0 0 .4rem;
  font-size: 1.05rem;
  color: #fff;
}
.faq-item p { margin: 0; color: var(--text-soft); }
.footer-grid--site {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.25rem;
  text-align: left;
}
.car-card h2 a { text-decoration: none; }
.price-block__head h3 a { color: inherit; text-decoration: none; }
.spec-chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.spec-chips span {
  padding: .35rem .65rem;
  border-radius: 999px;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.25);
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-soft);
}

@media (max-width: 1100px) and (min-width: 769px) {
  .nav { gap: .95rem; font-size: .9rem; }
  .header-brand { margin-left: .75rem; }
  .header-cta {
    padding: .55rem .85rem;
    font-size: .84rem;
  }
  .header-inner {
    min-height: 84px;
    gap: .55rem;
  }
}

@media (max-width: 768px) {
  .calc-grid,
  .vehicle-detail__grid,
  .footer-grid--site,
  .about-fleet__grid { grid-template-columns: 1fr; }
  .link-list { columns: 1; }
}

@media (max-width: 768px) {
  .social-links--header { display: none !important; }
  .nav-toggle {
    display: block;
    margin-left: 0;
    flex-shrink: 0;
  }
  .header-inner {
    gap: .45rem;
    min-height: 72px;
    padding: .95rem 0;
  }
  .header-brand {
    gap: .35rem;
    min-width: 0;
    flex: 1;
    margin-left: 0;
  }
  .header-brand .logo__text { max-width: 7.5rem; font-size: .72rem; }
  .logo__mark { width: 36px; height: 36px; }
  .header-cta {
    display: inline-flex !important;
    flex-shrink: 0;
    margin-left: 0;
    padding: .48rem .7rem;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.15;
    white-space: nowrap;
    border-radius: 9px;
    box-shadow: 0 3px 10px rgba(245, 197, 24, 0.25);
  }
  .header-cta:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(245, 197, 24, 0.35);
  }
  .nav {
    position: fixed;
    inset: 5.1rem .6rem auto;
    flex-direction: column;
    padding: 1rem .9rem;
    background: rgba(0, 0, 0, 0.97);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    opacity: 0;
    pointer-events: none;
    gap: .1rem;
    z-index: 120;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  }
  .nav.is-open { opacity: 1; pointer-events: auto; }
  .nav > a {
    padding: .85rem .5rem;
    font-size: 1.08rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav > a:last-of-type {
    border-bottom: none;
  }
  .nav-phone {
    display: none !important;
  }
  .social-links--nav {
    display: flex !important;
    order: 30;
    flex-direction: column;
    margin: .55rem 0 0;
    padding: .55rem 0 0;
    border-top: 1px solid var(--glass-border);
    gap: .35rem;
  }
  .social-links--nav a {
    width: auto;
    height: auto;
    min-height: 44px;
    padding: .65rem .55rem;
    justify-content: flex-start;
    gap: .55rem;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: var(--glass-light);
    color: var(--brand-gold);
    font-size: .95rem;
  }
  .social-links--nav svg {
    width: 1.2rem;
    height: 1.2rem;
  }
  .booking-form__grid, .contact-row { grid-template-columns: 1fr; }
  .car-actions { grid-template-columns: 1fr; }
  .page-mountains { background-attachment: scroll; }
  .hero-alpine { min-height: clamp(420px, 70vh, 620px); }
  .hero-alpine--with-car {
    min-height: clamp(460px, 72vh, 620px);
    padding-bottom: 1rem;
    overflow: hidden;
  }
  .hero-alpine__content,
  .hero-alpine--with-car .hero-alpine__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.1rem;
    position: relative;
    z-index: 4;
    min-height: clamp(420px, 68vh, 580px);
    padding: 1.15rem 0 3.2rem;
  }
  .hero-alpine--with-car .hero-alpine__copy {
    max-width: min(18rem, 88vw);
    margin: 0;
    margin-top: .35rem;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 4;
    text-shadow:
      0 1px 2px rgba(0, 0, 0, 0.95),
      0 2px 8px rgba(0, 0, 0, 0.9),
      0 0 24px rgba(0, 0, 0, 0.85);
  }
  .hero-alpine--with-car h1 {
    font-size: clamp(1.05rem, 4.6vw, 1.35rem);
    white-space: normal;
    max-width: none;
    text-align: center;
  }
  .hero-alpine--with-car .hero-car {
    position: absolute;
    right: -8%;
    top: 44%;
    transform: translateY(-50%);
    width: min(108vw, 720px);
    max-width: none;
    margin: 0;
    padding: 0;
    z-index: 3;
    pointer-events: none;
  }
  .hero-alpine--with-car .hero-car img {
    max-height: min(300px, 46vh);
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: right center;
  }
  .hero-scroll { bottom: 1.5rem; }
  .logo__text { font-size: .88rem; max-width: 9rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .car-card, .car-card__photo, .btn { transition: none; }
  .car-card--swap:hover .car-card__photo--main { opacity: 1; transform: none; }
  .car-card--swap:hover .car-card__photo--alt { opacity: 0; transform: none; }
  .hero-alpine__shine, .hero-scroll, .anim-in { animation: none; opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
