/* ================================================================
   Apex Detailing System — CSS
   Source: Stitch MCP / Borgholm Biltvätt Premium Landing Page
   All tokens sourced directly from list_design_systems response.
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ----------------------------------------------------------------
   CSS CUSTOM PROPERTIES — Stitch MCP tokens verbatim
   ---------------------------------------------------------------- */
:root {
  /* Brand Named Colors */
  --orange:     #FF5F00;
  --black:      #000000;
  --emerald:    #0D1B1E;
  --white:      #FFFFFF;
  --gray-tech:  #2A2A2A;

  /* Surface Scale */
  --surface-container-lowest:  #0e0e0e;
  --surface-dim:               #131313;
  --surface:                   #131313;
  --surface-container-low:     #1b1b1b;
  --surface-container:         #1f1f1f;
  --surface-container-high:    #2a2a2a;
  --surface-container-highest: #353535;
  --surface-variant:           #353535;
  --surface-bright:            #393939;

  /* Content */
  --on-surface:         #e2e2e2;
  --on-surface-variant: #e4bfb1;
  --inverse-surface:    #e2e2e2;
  --inverse-on-surface: #303030;
  --background:         #131313;
  --on-background:      #e2e2e2;

  /* Primary (Orange scale) */
  --primary:                #ffb599;
  --primary-fixed:          #ffdbce;
  --primary-fixed-dim:      #ffb599;
  --primary-container:      #FF5F00;
  --on-primary:             #5a1c00;
  --on-primary-container:   #531a00;
  --on-primary-fixed:       #370e00;
  --on-primary-fixed-var:   #7f2b00;
  --inverse-primary:        #a63b00;
  --surface-tint:           #ffb599;

  /* Secondary (Teal) */
  --secondary:            #bac9cd;
  --secondary-fixed:      #d6e5e9;
  --secondary-fixed-dim:  #bac9cd;
  --secondary-container:  #3d4b4f;
  --on-secondary:         #253336;
  --on-secondary-c:       #acbbbf;

  /* Tertiary (Neutral) */
  --tertiary:         #c6c6c7;
  --tertiary-fixed:   #e2e2e2;
  --tertiary-container: #939494;
  --on-tertiary:      #2f3131;
  --on-tertiary-c:    #2b2d2d;

  /* Outline */
  --outline:         #ab8a7d;
  --outline-variant: #5b4137;

  /* Error */
  --error:           #ffb4ab;
  --error-container: #93000a;
  --on-error:        #690005;

  /* Typography */
  --font: 'Space Grotesk', sans-serif;

  /* Type Scale (MCP exact) */
  --size-display-hero:        120px;
  --size-headline-outlined:   80px;
  --size-headline-lg:         48px;
  --size-headline-md:         32px;
  --size-stat-value:          24px;
  --size-body-lg:             18px;
  --size-body-sm:             14px;
  --size-label-caps:          12px;

  --lh-display-hero:        110px;
  --lh-headline-outlined:   90px;
  --lh-headline-lg:         56px;
  --lh-headline-md:         40px;
  --lh-stat-value:          32px;
  --lh-body-lg:             28px;
  --lh-body-sm:             20px;
  --lh-label-caps:          16px;

  --ls-display-hero:   -0.04em;
  --ls-label-caps:      0.1em;

  /* Spacing (MCP exact) */
  --unit:          4px;
  --gutter:        24px;
  --margin:        64px;
  --container-max: 1280px;

  /* Border Radius (MCP ROUND_FOUR) */
  --radius-sm:  0.125rem;
  --radius:     0.25rem;
  --radius-md:  0.375rem;
  --radius-lg:  0.5rem;
  --radius-xl:  0.75rem;
  --radius-full: 9999px;
}

/* ----------------------------------------------------------------
   RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--on-surface);
  cursor: none;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; font-family: var(--font); }

/* ----------------------------------------------------------------
   CUSTOM CURSOR
   ---------------------------------------------------------------- */
.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--orange);
  border-radius: var(--radius-full);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  mix-blend-mode: difference;
}
.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: var(--radius-full);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-ring.hover {
  width: 64px;
  height: 64px;
  background: rgba(255, 95, 0, 0.1);
}

/* ----------------------------------------------------------------
   LAYOUT UTILITIES
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--margin);
}

.section { padding-block: calc(var(--margin) * 1.5); }

/* ----------------------------------------------------------------
   TYPOGRAPHY UTILITIES
   ---------------------------------------------------------------- */
.t-display-hero {
  font-size: var(--size-display-hero);
  font-weight: 700;
  line-height: var(--lh-display-hero);
  letter-spacing: var(--ls-display-hero);
}
.t-headline-outlined {
  font-size: var(--size-headline-outlined);
  font-weight: 700;
  line-height: var(--lh-headline-outlined);
  -webkit-text-stroke: 1.5px var(--orange);
  color: transparent;
}
.t-headline-lg {
  font-size: var(--size-headline-lg);
  font-weight: 700;
  line-height: var(--lh-headline-lg);
}
.t-headline-md {
  font-size: var(--size-headline-md);
  font-weight: 600;
  line-height: var(--lh-headline-md);
}
.t-stat-value {
  font-size: var(--size-stat-value);
  font-weight: 700;
  line-height: var(--lh-stat-value);
}
.t-body-lg {
  font-size: var(--size-body-lg);
  font-weight: 400;
  line-height: var(--lh-body-lg);
}
.t-body-sm {
  font-size: var(--size-body-sm);
  font-weight: 400;
  line-height: var(--lh-body-sm);
}
.t-label-caps {
  font-size: var(--size-label-caps);
  font-weight: 700;
  line-height: var(--lh-label-caps);
  letter-spacing: var(--ls-label-caps);
  text-transform: uppercase;
}

/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: var(--size-body-sm);
  letter-spacing: var(--ls-label-caps);
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-lg);
  padding: 14px 28px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--black);
}
.btn-primary:hover { background: #e65400; transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-ghost-orange {
  background: transparent;
  color: var(--orange);
  border: 1px solid var(--orange);
}
.btn-ghost-orange:hover {
  background: var(--orange);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 40px; font-size: var(--size-body-lg); }
.btn-full { width: 100%; }

/* ----------------------------------------------------------------
   NAVIGATION
   ---------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding-block: 20px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-tech);
  transition: padding-block 0.3s ease;
}
.nav.scrolled { padding-block: 14px; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gutter);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-top {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}
.nav-logo-bottom {
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: var(--size-body-sm);
  font-weight: 500;
  color: var(--on-surface);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--orange); }
.nav-links a.active::after { width: 100%; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* ----------------------------------------------------------------
   HERO
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
  padding-top: 80px;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  /* Push into right half so it lives behind the car, not the headline */
  left: 42%;
  transform: translateY(-50%);
  text-align: left;
  width: 70%;
  pointer-events: none;
  z-index: 1;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
}
.hero-bg-text span {
  display: block;
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 700;
  line-height: 0.9;
  -webkit-text-stroke: 1px var(--orange);
  color: transparent;
  letter-spacing: -0.04em;
  opacity: 0.28;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding-block: calc(var(--margin) * 1.5);
}

.hero-text-block { display: flex; flex-direction: column; gap: 24px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--orange);
}

.hero-headline {
  font-size: clamp(var(--size-headline-lg), 4.5vw, var(--size-display-hero));
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: var(--ls-display-hero);
  color: var(--white);
}
.hero-headline em {
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--orange);
  color: transparent;
}

.hero-sub {
  color: var(--on-surface-variant);
  max-width: 440px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-car {
  position: relative;
  z-index: 3;
}
.hero-car-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  object-position: center bottom;
  /* Localized glow — MCP elevation spec */
  filter: drop-shadow(0 0 80px rgba(13, 27, 30, 0.9)) drop-shadow(0 0 30px rgba(255,95,0,0.15));
  position: relative;
  z-index: 3;
}
.hero-car-placeholder {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  background: radial-gradient(ellipse at 60% 50%, var(--emerald) 0%, var(--black) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-car-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 50%, rgba(255,95,0,0.08) 0%, transparent 60%);
}

/* Stats bar */
.hero-stats {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--gray-tech);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
}
.hero-stats-inner {
  display: flex;
  align-items: stretch;
  divide: var(--gray-tech);
}
.hero-stat {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px var(--gutter);
  border-right: 1px solid var(--gray-tech);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--orange);
}
.hero-stat-text { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-label { color: var(--on-surface-variant); }
.hero-stat-value { color: var(--white); font-weight: 700; }

/* ----------------------------------------------------------------
   SECTION HEADER
   ---------------------------------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: calc(var(--margin) * 0.75);
}
.section-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-header .eyebrow::before,
.section-header .eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--orange);
}
.section-title { color: var(--white); }
.section-sub { color: var(--on-surface-variant); max-width: 560px; margin-inline: auto; margin-top: 16px; }

/* ----------------------------------------------------------------
   SERVICE / PRICING CARDS (Technical Stats Cards — MCP spec)
   ---------------------------------------------------------------- */
.services { background: var(--surface); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}

.card {
  background: var(--black);
  border: 1px solid var(--gray-tech);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    box-shadow 0.3s ease;
}
.card.visible { opacity: 1; transform: translateY(0); }
.card.visible:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255,95,0,0.15);
}
.card:nth-child(2) { transition-delay: 0.1s; }
.card:nth-child(3) { transition-delay: 0.2s; }

.card-header {
  background: var(--emerald);
  padding: 20px var(--gutter);
  border-bottom: 1px solid var(--gray-tech);
}
.card-header-label { color: var(--on-surface-variant); }
.card-header-price {
  color: var(--white);
  margin-top: 8px;
}
.card-header-price .price-num { color: var(--orange); }

.card-body {
  padding: var(--gutter);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--gutter);
}

.card-features { display: flex; flex-direction: column; }
.card-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-block: 12px;
  border-bottom: 1px solid var(--gray-tech);
  color: var(--on-surface);
  font-size: var(--size-body-sm);
}
.card-feature:last-child { border-bottom: none; }
.card-feature::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--orange);
}

.card-footer { margin-top: auto; }

/* Platinum highlight */
.card--highlight {
  border-color: var(--orange);
}
.card--highlight .card-header { background: var(--orange); }
.card--highlight .card-header-label { color: var(--on-primary); }
.card--highlight .card-header-price { color: var(--black); }
.card--highlight .card-header-price .price-num { color: var(--black); }

/* Status chip */
.chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 0;
  font-size: var(--size-label-caps);
  font-weight: 700;
  letter-spacing: var(--ls-label-caps);
  text-transform: uppercase;
}
.chip-orange { background: var(--orange); color: var(--black); }
.chip-white  { background: var(--white);  color: var(--black); }

/* ----------------------------------------------------------------
   BEFORE / AFTER SLIDER  (clip-path approach — pixel-perfect align)
   ---------------------------------------------------------------- */
.ba-section { background: var(--black); }

.ba-slider-wrap {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: ew-resize;
  user-select: none;
  border: 1px solid var(--gray-tech);
  /* Establish stacking context */
  isolation: isolate;
}

/* After image: base layer, fills 100% */
.ba-img-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 1;
}

/* Before image: top layer, clipped from the right — same dimensions */
.ba-img-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 2;
  /* JS sets clip-path: inset(0 X% 0 0) */
  clip-path: inset(0 50% 0 0);
}

.ba-label {
  position: absolute;
  bottom: 20px;
  font-size: var(--size-label-caps);
  font-weight: 700;
  letter-spacing: var(--ls-label-caps);
  pointer-events: none;
  z-index: 4;
  -webkit-text-stroke: 1px currentColor;
  color: transparent;
}
.ba-label--before { left: 20px;  color: var(--white);  -webkit-text-stroke: 1px var(--white); }
.ba-label--after  { right: 20px; color: var(--orange); -webkit-text-stroke: 1px var(--orange); }

.ba-divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: var(--orange);
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  box-shadow: 0 0 0 4px rgba(255,95,0,0.25);
  pointer-events: none;
}

/* Gallery thumbnails */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
  margin-top: var(--margin);
}

.gallery-card {
  background: var(--surface-container-low);
  border: 1px solid var(--gray-tech);
  border-radius: var(--radius-lg);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.gallery-card.visible { opacity: 1; transform: translateY(0); }
.gallery-card.visible:hover { transform: translateY(-10px); }
.gallery-card:nth-child(2) { transition-delay: 0.1s; }
.gallery-card:nth-child(3) { transition-delay: 0.2s; }
.gallery-card:nth-child(4) { transition-delay: 0.3s; }

.gallery-card-img {
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
}
.gallery-card-img--placeholder {
  background: var(--surface-container-high);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--gray-tech);
  text-align: center;
  padding: 16px;
}
.gallery-mini-slider {
  width: 100%;
  height: 100%;
  cursor: ew-resize;
  user-select: none;
  border-radius: 0;
  border: none;
}

.gallery-card-body { padding: 16px; }
.gallery-card-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.gallery-card-title {
  font-size: var(--size-body-sm);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.gallery-card-desc {
  font-size: var(--size-label-caps);
  color: var(--on-surface-variant);
  margin-bottom: 12px;
}
.gallery-card-link {
  font-size: var(--size-label-caps);
  font-weight: 700;
  letter-spacing: var(--ls-label-caps);
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.gallery-card-link:hover { gap: 10px; }

/* ----------------------------------------------------------------
   CTA BAND
   ---------------------------------------------------------------- */
.cta-band {
  background: var(--emerald);
  border-top: 1px solid rgba(255,95,0,0.3);
  border-bottom: 1px solid rgba(255,95,0,0.3);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gutter);
  padding-block: calc(var(--margin) * 1.25);
}
.cta-band-text { display: flex; flex-direction: column; gap: 8px; }
.cta-band-actions { display: flex; gap: 16px; flex-shrink: 0; }

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.footer {
  background: var(--surface-container-lowest);
  border-top: 1px solid var(--gray-tech);
  padding-block: var(--margin);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: calc(var(--margin) * 1.5);
  margin-bottom: var(--margin);
}
.footer-logo { margin-bottom: 16px; }
.footer-logo-top { font-size: 18px; font-weight: 700; color: var(--white); }
.footer-logo-bottom { font-size: 18px; font-weight: 700; color: var(--orange); }
.footer-tagline { color: var(--on-surface-variant); max-width: 280px; }

.footer-col-title {
  font-size: var(--size-label-caps);
  font-weight: 700;
  letter-spacing: var(--ls-label-caps);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col address,
.footer-col p {
  font-style: normal;
  color: var(--on-surface-variant);
  font-size: var(--size-body-sm);
  line-height: 2;
}
.footer-col a { color: var(--on-surface-variant); transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gray-tech);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-surface-variant);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.social-icon:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid var(--gray-tech);
  padding-top: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p { font-size: var(--size-label-caps); color: var(--on-surface-variant); }
.footer-bottom a { font-size: var(--size-label-caps); color: var(--on-surface-variant); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--orange); }
.footer-links { display: flex; gap: 24px; }

/* ----------------------------------------------------------------
   PAGE HERO (inner pages)
   ---------------------------------------------------------------- */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 80px;
  background: var(--black);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--black) 30%, rgba(0,0,0,0.3) 100%);
}
.page-hero-bg-text {
  position: absolute;
  right: var(--margin);
  bottom: 0;
  font-size: clamp(60px, 10vw, 140px);
  font-weight: 700;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255,95,0,0.2);
  color: transparent;
  pointer-events: none;
  user-select: none;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding-block: var(--margin);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ----------------------------------------------------------------
   SERVICES PAGE — Detailed cards
   ---------------------------------------------------------------- */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(var(--gutter) * 2);
}
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: calc(var(--gutter) * 2);
  background: var(--surface-container-low);
  border: 1px solid var(--gray-tech);
  border-radius: var(--radius-lg);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.service-detail-card.visible { opacity: 1; transform: translateY(0); }
.service-detail-card.visible:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(255,95,0,0.1); }

.service-detail-side {
  background: var(--emerald);
  padding: calc(var(--gutter) * 1.5);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-detail-body {
  padding: calc(var(--gutter) * 1.5);
  display: flex;
  flex-direction: column;
  gap: var(--gutter);
}
.service-features-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
  margin-top: var(--margin);
}
.process-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.process-step.visible { opacity: 1; transform: translateY(0); }
.process-step:nth-child(2) { transition-delay: 0.1s; }
.process-step:nth-child(3) { transition-delay: 0.2s; }
.process-step:nth-child(4) { transition-delay: 0.3s; }

.process-num {
  font-size: 48px;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.4;
  line-height: 1;
}
.process-step-title { font-size: var(--size-body-lg); font-weight: 600; color: var(--white); }
.process-step-desc  { font-size: var(--size-body-sm); color: var(--on-surface-variant); }

/* ----------------------------------------------------------------
   BOOKING PAGE
   ---------------------------------------------------------------- */
.booking-page { background: var(--black); padding-top: 100px; min-height: 100svh; padding-bottom: calc(var(--margin) * 2); }

/* ---- Booking tip note ---- */
.booking-tip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,95,0,0.08);
  border: 1px solid rgba(255,95,0,0.25);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  margin-bottom: calc(var(--gutter) * 1.5);
  color: var(--on-surface-variant);
  font-size: var(--size-body-sm);
  line-height: 1.5;
}
.booking-tip svg { flex-shrink: 0; color: var(--orange); }

/* ---- Booking option cards ---- */
.booking-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  margin-bottom: calc(var(--margin) * 1.5);
}
.booking-option-card {
  background: var(--surface-container-low);
  border: 1px solid var(--gray-tech);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.booking-option-card:hover {
  border-color: rgba(255,95,0,0.4);
  box-shadow: 0 12px 40px rgba(255,95,0,0.08);
}
.booking-option-card--featured {
  background: var(--orange);
  border-color: var(--orange);
}
.booking-option-card--featured:hover {
  box-shadow: 0 12px 48px rgba(255,95,0,0.3);
  border-color: var(--orange);
}

.booking-option-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.booking-option-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--orange);
  color: var(--black);
  border-radius: 0;
  font-weight: 700;
}
.booking-option-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--size-label-caps);
  font-weight: 600;
  letter-spacing: var(--ls-label-caps);
  text-transform: uppercase;
  color: var(--on-surface-variant);
}

.booking-option-title {
  font-size: var(--size-headline-md);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.booking-option-desc {
  color: var(--on-surface-variant);
  margin-top: -8px;
}

.booking-option-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  list-style: none;
}
.booking-option-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--size-body-sm);
  color: var(--on-surface);
}
.booking-option-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.booking-option-features--dark li { color: rgba(0,0,0,0.8); }
.booking-option-features--dark li::before { background: var(--black); }

.booking-option-note-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(0,0,0,0.6);
  background: rgba(0,0,0,0.1);
  border-radius: var(--radius);
  padding: 10px 14px;
  margin-top: -4px;
}
.booking-option-note-inline svg { flex-shrink: 0; }

.booking-option-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.booking-option-price {
  font-size: var(--size-body-sm);
  color: var(--on-surface-variant);
}
.booking-option-price strong {
  font-size: var(--size-stat-value);
  font-weight: 700;
  color: var(--orange);
}
.booking-option-card--featured .booking-option-price { color: rgba(0,0,0,0.65); }
.booking-option-card--featured .booking-option-price strong { color: var(--black); }

/* ---- Single booking CTA block ---- */
.booking-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px;
  background: var(--surface-container-low);
  border: 1px solid var(--gray-tech);
  border-radius: var(--radius-lg);
  margin-bottom: calc(var(--margin) * 1.25);
  text-align: center;
}
.booking-cta-block .btn-lg {
  font-size: 15px;
  padding: 18px 48px;
}
@media (max-width: 480px) {
  .booking-cta-block { padding: 24px 16px; }
  .booking-cta-block .btn-lg { width: 100%; padding: 16px; }
}

/* ---- Info strip ---- */
.booking-info-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 28px;
  border: 1px solid var(--gray-tech);
  border-radius: var(--radius-lg);
  background: var(--surface-container-low);
}
.booking-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--size-body-sm);
  color: var(--on-surface-variant);
}
.booking-info-item a:hover { color: var(--orange); }

@media (max-width: 768px) {
  .booking-options-grid { grid-template-columns: 1fr; }
  .booking-info-strip { flex-direction: column; gap: 20px; text-align: center; }
  .booking-info-item { justify-content: center; }
}
@media (max-width: 480px) {
  .booking-option-card { padding: 24px; }
  .booking-option-title { font-size: 22px; }
}

.package-tabs {
  display: flex;
  gap: 0;
  margin-bottom: calc(var(--margin) * 1.25);
  border: 1px solid var(--gray-tech);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.package-tab {
  flex: 1;
  padding: 20px var(--gutter);
  background: var(--surface-container-low);
  border: none;
  color: var(--on-surface-variant);
  text-align: left;
  cursor: none;
  transition: background 0.2s, color 0.2s;
  border-right: 1px solid var(--gray-tech);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.package-tab:last-child { border-right: none; }
.package-tab:hover { background: var(--surface-container); color: var(--white); }
.package-tab.active { background: var(--orange); color: var(--black); }
.package-tab-name { font-weight: 700; font-size: var(--size-body-sm); }
.package-tab-price { font-size: var(--size-label-caps); font-weight: 600; letter-spacing: var(--ls-label-caps); }

.booking-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: calc(var(--gutter) * 2);
  align-items: start;
  margin-bottom: var(--margin);
}

/* Form */
.booking-form-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--gutter);
}
.form-section-title {
  font-size: var(--size-body-sm);
  font-weight: 700;
  letter-spacing: var(--ls-label-caps);
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gutter); }

label {
  font-size: var(--size-label-caps);
  font-weight: 700;
  letter-spacing: var(--ls-label-caps);
  text-transform: uppercase;
  color: var(--on-surface-variant);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  background: var(--black);
  border: 1px solid var(--gray-tech);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font);
  font-size: var(--size-body-sm);
  padding: 14px 16px;
  width: 100%;
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--orange); }
input::placeholder, textarea::placeholder { color: var(--surface-bright); }

.phone-row { display: flex; gap: 0; }
.phone-prefix {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: var(--surface-container);
  border: 1px solid var(--gray-tech);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  color: var(--on-surface);
  font-size: var(--size-body-sm);
  white-space: nowrap;
  flex-shrink: 0;
}
.phone-row input { border-radius: 0 var(--radius) var(--radius) 0; }

select { 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='%23ab8a7d' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 48px; }
select option { background: var(--surface-container-low); }

/* Calendar */
.calendar-wrap { display: flex; flex-direction: column; gap: 16px; }
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.calendar-nav {
  background: none;
  border: 1px solid var(--gray-tech);
  border-radius: var(--radius);
  color: var(--on-surface);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: border-color 0.2s, color 0.2s;
}
.calendar-nav:hover { border-color: var(--orange); color: var(--orange); }
.calendar-month { font-weight: 600; color: var(--white); }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.calendar-day-head {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--on-surface-variant);
  padding: 4px;
}
.calendar-day {
  text-align: center;
  padding: 8px 4px;
  border-radius: var(--radius);
  font-size: var(--size-body-sm);
  color: var(--on-surface);
  cursor: none;
  transition: background 0.15s, color 0.15s;
  border: 1px solid transparent;
}
.calendar-day:hover:not(.empty):not(.past) { background: var(--surface-container); color: var(--white); border-color: var(--gray-tech); }
.calendar-day.today { border-color: var(--orange); color: var(--orange); }
.calendar-day.selected { background: var(--orange); color: var(--black); font-weight: 700; }
.calendar-day.past { color: var(--surface-bright); cursor: default; }
.calendar-day.empty { pointer-events: none; }

/* Time slots */
.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.time-slot {
  padding: 10px;
  border: 1px solid var(--gray-tech);
  border-radius: var(--radius);
  text-align: center;
  font-size: var(--size-body-sm);
  color: var(--on-surface);
  cursor: none;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  background: none;
  font-family: var(--font);
}
.time-slot:hover { border-color: var(--orange); color: var(--white); }
.time-slot.selected { background: var(--orange); border-color: var(--orange); color: var(--black); font-weight: 700; }

/* Booking summary */
.booking-summary {
  background: var(--surface-container-low);
  border: 1px solid var(--gray-tech);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.booking-summary-header {
  background: var(--emerald);
  padding: 20px var(--gutter);
  border-bottom: 1px solid var(--gray-tech);
}
.booking-summary-body { padding: var(--gutter); display: flex; flex-direction: column; gap: 16px; }
.booking-summary-price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-tech);
}
.booking-summary-features { display: flex; flex-direction: column; gap: 10px; }
.summary-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--size-body-sm);
  color: var(--on-surface-variant);
}
.summary-feature::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: var(--radius-full);
  background: var(--orange);
}
.booking-summary-meta { display: flex; flex-direction: column; gap: 8px; }
.summary-meta-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--size-body-sm);
  color: var(--on-surface-variant);
  border-bottom: 1px solid var(--gray-tech);
  padding-bottom: 8px;
}
.summary-meta-row span:last-child { color: var(--white); font-weight: 600; }

/* ----------------------------------------------------------------
   ABOUT PAGE
   ---------------------------------------------------------------- */
.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--margin) * 1.5);
  align-items: start;
}
.about-bg-word {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 700;
  -webkit-text-stroke: 1px rgba(255,95,0,0.12);
  color: transparent;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
}

.about-text { display: flex; flex-direction: column; gap: 24px; }
.about-text p { color: var(--on-surface-variant); }

.sustainability-card {
  background: var(--surface-container-low);
  border: 1px solid var(--gray-tech);
  border-radius: var(--radius-lg);
  padding: var(--gutter);
  display: flex;
  gap: var(--gutter);
  align-items: flex-start;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.sustainability-card.visible { opacity: 1; transform: translateY(0); }
.sustainability-card.visible:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0,255,0,0.05); }

.sust-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: var(--emerald);
  border: 2px solid rgba(255,95,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}
.sust-body { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.sust-features { display: flex; flex-direction: column; gap: 8px; }
.sust-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--size-body-sm);
  color: var(--on-surface-variant);
}
.sust-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--orange);
  flex-shrink: 0;
}
.sust-link {
  font-size: var(--size-label-caps);
  font-weight: 700;
  letter-spacing: var(--ls-label-caps);
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
  margin-top: var(--margin);
}
.value-card {
  background: var(--surface-container-low);
  border: 1px solid var(--gray-tech);
  border-radius: var(--radius-lg);
  padding: var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.value-card.visible { opacity: 1; transform: translateY(0); }
.value-card.visible:hover { transform: translateY(-10px); }
.value-card:nth-child(2) { transition-delay: 0.1s; }
.value-card:nth-child(3) { transition-delay: 0.2s; }
.value-icon { font-size: 32px; }
.value-title { font-weight: 700; color: var(--white); }
.value-desc  { font-size: var(--size-body-sm); color: var(--on-surface-variant); }

/* Team hero image */
.hero-img-full {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  opacity: 0.85;
}
.hero-img-placeholder {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  background: radial-gradient(ellipse at 30% 50%, var(--emerald) 0%, var(--black) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-surface-variant);
}

/* ----------------------------------------------------------------
   DIVIDER
   ---------------------------------------------------------------- */
.divider { height: 1px; background: var(--gray-tech); }

/* ----------------------------------------------------------------
   FULL PRICE LIST — Komplett Prislista
   ---------------------------------------------------------------- */
.price-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}
.price-list-card {
  background: var(--surface-container-low);
  border: 1px solid var(--gray-tech);
  border-radius: var(--radius-lg);
  padding: var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.3s ease;
}
.price-list-card.visible { opacity: 1; transform: translateY(0); }
.price-list-card.visible:hover { transform: translateY(-10px); box-shadow: 0 16px 48px rgba(255,95,0,0.1); }
.price-list-card:nth-child(2) { transition-delay: 0.08s; }
.price-list-card:nth-child(3) { transition-delay: 0.16s; }
.price-list-card:nth-child(4) { transition-delay: 0.08s; }
.price-list-card:nth-child(5) { transition-delay: 0.16s; }
.price-list-card:nth-child(6) { transition-delay: 0.24s; }
.price-list-card:nth-child(7) { transition-delay: 0.08s; }

.price-list-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 0;
  background: var(--orange);
  color: var(--black);
  font-size: var(--size-label-caps);
  font-weight: 700;
  letter-spacing: var(--ls-label-caps);
  text-transform: uppercase;
  align-self: flex-start;
}
.price-list-title {
  font-size: var(--size-body-lg);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.price-list-desc {
  font-size: var(--size-body-sm);
  color: var(--on-surface-variant);
  line-height: 1.7;
  flex: 1;
}
.price-tiers {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--gray-tech);
}
.price-list-card .btn {
  margin-top: 4px;
  font-size: 13px;
  padding: 9px 18px;
  text-align: center;
}
.price-tier-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-tech);
  gap: 12px;
}
.price-tier-row:last-child { border-bottom: none; }
.price-tier-label {
  font-size: var(--size-body-sm);
  color: var(--on-surface-variant);
  flex: 1;
}
.price-tier-price {
  font-size: var(--size-body-sm);
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
}

/* Category divider label */
.category-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: calc(var(--gutter) * 1.5);
  margin-top: calc(var(--gutter) * 1.5);
}
.category-label:first-child { margin-top: 0; }
.category-label-text {
  font-size: var(--size-label-caps);
  font-weight: 700;
  letter-spacing: var(--ls-label-caps);
  text-transform: uppercase;
  color: var(--orange);
  white-space: nowrap;
}
.category-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-tech);
}

/* ----------------------------------------------------------------
   INDIVIDUAL SERVICES — booking page toggle
   ---------------------------------------------------------------- */
.ind-toggle-wrap {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ind-toggle {
  background: var(--surface-container-low);
  border: 2px solid rgba(255,95,0,0.4);
  border-radius: var(--radius-lg);
  color: var(--white);
  cursor: pointer;
  padding: 18px 24px;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}
.ind-toggle:hover { border-color: var(--orange); background: rgba(255,95,0,0.07); }
.ind-toggle[aria-expanded="true"] { border-color: var(--orange); }
.ind-toggle-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,95,0,0.15);
  border: 1px solid rgba(255,95,0,0.4);
  color: var(--orange);
  font-size: 22px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.ind-toggle-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ind-toggle-headline {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0;
  text-transform: none;
}
.ind-toggle-sub {
  font-size: 13px;
  color: var(--on-surface-variant);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.ind-toggle-arrow {
  flex-shrink: 0;
  font-size: 20px;
  color: var(--orange);
  transition: transform 0.25s;
}
.ind-toggle[aria-expanded="true"] .ind-toggle-arrow { transform: rotate(180deg); }
.ind-toggle[aria-expanded="true"] .ind-toggle-icon { background: var(--orange); color: var(--black); }

.ind-services {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0 8px;
  border-top: 1px solid var(--gray-tech);
  margin-top: 4px;
}
.ind-services.open { display: flex; }

.ind-cat-label {
  color: var(--on-surface-variant);
  font-size: 10px;
  margin-bottom: -8px;
}
.ind-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-chip {
  background: var(--surface-container-low);
  border: 1px solid var(--gray-tech);
  border-radius: var(--radius);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: left;
  min-width: 160px;
}
.service-chip:hover { border-color: rgba(255,95,0,0.5); background: rgba(255,95,0,0.05); }
.service-chip.active { border-color: var(--orange); background: rgba(255,95,0,0.1); }
.service-chip-name {
  font-size: var(--size-body-sm);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.service-chip-price {
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 0.06em;
}

@media (max-width: 1024px) {
  .price-list-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .price-list-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   ADDON / TILLÄGGSTJÄNSTER CARDS
   ---------------------------------------------------------------- */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
}
.addon-card {
  background: var(--surface-container-low);
  border: 1px solid var(--gray-tech);
  border-radius: var(--radius-lg);
  padding: var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.3s ease;
}
.addon-card.visible { opacity: 1; transform: translateY(0); }
.addon-card.visible:hover { transform: translateY(-10px); box-shadow: 0 16px 48px rgba(255,95,0,0.12); }
.addon-card:nth-child(2) { transition-delay: 0.08s; }
.addon-card:nth-child(3) { transition-delay: 0.16s; }
.addon-card:nth-child(4) { transition-delay: 0.24s; }

.addon-card-label { color: var(--orange); }
.addon-card-title { font-size: var(--size-body-lg); font-weight: 700; color: var(--white); }
.addon-card-desc  { font-size: var(--size-body-sm); color: var(--on-surface-variant); flex: 1; }
.addon-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--gray-tech);
  padding-top: 12px;
  margin-top: auto;
}
.addon-price-label { font-size: var(--size-label-caps); color: var(--on-surface-variant); letter-spacing: var(--ls-label-caps); text-transform: uppercase; }
.addon-price-value { font-size: var(--size-stat-value); font-weight: 700; color: var(--orange); }

/* ----------------------------------------------------------------
   VI GÖR ÄVEN
   ---------------------------------------------------------------- */
.vi-gor-card {
  background: var(--surface-container-low);
  border: 1px solid var(--gray-tech);
  border-radius: var(--radius-lg);
  padding: var(--gutter);
}
.vi-gor-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.vi-gor-chip {
  padding: 8px 18px;
  border: 1px solid var(--gray-tech);
  border-radius: var(--radius-full);
  font-size: var(--size-body-sm);
  color: var(--on-surface-variant);
  background: var(--surface-container);
  transition: border-color 0.2s, color 0.2s;
}
.vi-gor-chip:hover { border-color: var(--orange); color: var(--white); }

@media (max-width: 1024px) {
  .addon-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .addon-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   SCROLL REVEAL BASE (all animatable elements)
   ---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ----------------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------------- */

/* Price list disclaimer */
.price-list-disclaimer {
  margin-top: 24px;
  font-size: 12px;
  color: var(--on-surface-variant);
  opacity: 0.7;
  text-align: center;
  font-style: italic;
}

/* Mobile-only Boka Nu inside hamburger menu */
.nav-links-boka { display: none; }
@media (max-width: 768px) {
  .nav-links.open .nav-links-boka { display: block; padding: 20px 0 8px; }
  .nav-links.open .nav-links-boka .btn { display: block; font-size: 16px; padding: 16px; }
}

/* Touch devices — disable custom cursor */
@media (hover: none) and (pointer: coarse) {
  body { cursor: auto; }
  button, a { cursor: pointer; }
  .cursor-ring, .cursor-dot { display: none; }
}

/* ── TABLET LANDSCAPE ─────────────────────── max 1024px ── */
@media (max-width: 1024px) {
  :root { --margin: 40px; }

  .hero-content { grid-template-columns: 1fr; gap: 32px; }
  .hero-car { order: -1; }
  .hero-car-img, .hero-car-placeholder { height: 320px; }
  .hero-sub { max-width: 100%; }

  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }

  .booking-layout { grid-template-columns: 1fr; }
  .booking-summary { position: static; }

  .about-content-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-side { min-height: auto; }
}

/* ── TABLET PORTRAIT / LARGE PHONE ───────── max 768px ── */
@media (max-width: 768px) {
  :root { --margin: 20px; }

  /* Typography */
  .t-headline-lg { font-size: clamp(26px, 7vw, 40px); line-height: 1.15; }
  .t-headline-md { font-size: clamp(20px, 5vw, 28px); line-height: 1.2; }
  .t-body-lg { font-size: 16px; line-height: 1.6; }
  .hero-headline { font-size: clamp(32px, 9vw, 56px); }
  .section-title { font-size: clamp(22px, 6vw, 40px); }

  /* Hero */
  .hero-bg-text span { font-size: clamp(48px, 18vw, 100px); }
  .hero-stats-inner { flex-direction: column; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--gray-tech); }
  .hero-stat:last-child { border-bottom: none; }

  /* Nav */
  .nav-hamburger {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
  }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    height: calc(100dvh - 70px);
    background: #000;
    border-top: 1px solid var(--gray-tech);
    padding: 0 var(--gutter) 32px;
    gap: 0;
    overflow-y: auto;
  }
  .nav-links.open li { border-bottom: 1px solid var(--gray-tech); }
  .nav-links.open li:last-child { border-bottom: none; }
  .nav-links.open a { display: block; padding: 20px 0; font-size: 20px; font-weight: 600; color: var(--white); }

  /* Grids */
  .cards-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  /* CTA band */
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; flex-wrap: wrap; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: var(--margin); }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Booking */
  .service-features-two-col { grid-template-columns: 1fr; }
  .package-tabs { flex-direction: column; }
  .package-tab { border-right: none; border-bottom: 1px solid var(--gray-tech); }
  .package-tab:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .time-slots { grid-template-columns: repeat(3, 1fr); }
  .ba-slider-wrap { height: 260px; }

  /* Prevent iOS zoom on input focus — must be >= 16px */
  input, select, textarea { font-size: 16px !important; }

  /* Page hero */
  .page-hero { min-height: 300px; }
  .page-hero-bg-text { display: none; }
  .page-hero-content h1 { font-size: clamp(24px, 7vw, 40px); }
}

/* ── PHONE ────────────────────────────────── max 480px ── */
@media (max-width: 480px) {
  :root { --margin: 16px; --gutter: 16px; }

  .section { padding-block: calc(var(--margin) * 2.5); }

  /* Typography */
  .t-headline-lg { font-size: clamp(22px, 6.5vw, 30px); }
  .t-headline-md { font-size: 20px; }
  .t-stat-value  { font-size: 20px; }

  /* Hide nav Boka Nu — hamburger carries it inside the menu */
  .nav-inner > .btn-primary { display: none; }

  /* Hero */
  .hero-bg-text { display: none; }
  .hero-headline { font-size: clamp(28px, 8.5vw, 42px); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero-car-img, .hero-car-placeholder { height: 210px; }

  /* Galleries */
  .gallery-grid { grid-template-columns: 1fr; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; }

  /* Calendar touch */
  .calendar-day { min-height: 40px; font-size: 13px; }

  /* Time slots */
  .time-slots { grid-template-columns: repeat(2, 1fr); }

  /* Individual services */
  .ind-chip-group { gap: 6px; }
  .service-chip { min-width: 0; flex: 1 1 calc(50% - 3px); }

  /* Section eyebrow decorators shorter */
  .section-header .eyebrow::before,
  .section-header .eyebrow::after { width: 20px; }

  /* Booking */
  .booking-summary-header { padding: 16px; }
  .booking-summary-body   { padding: 16px; }

  /* Page hero */
  .page-hero { min-height: 220px; }
  .page-hero-content h1 { font-size: clamp(22px, 7vw, 32px); }

  /* Buttons */
  .btn-lg { padding: 14px 22px; font-size: 14px; }

  /* Vi gör chips */
  .vi-gor-chip { font-size: 12px; padding: 6px 12px; }

  /* Addon cards */
  .addon-grid { grid-template-columns: 1fr; }

  /* Service detail */
  .service-detail-body { padding: 16px; }
  .service-detail-side  { padding: 20px; }
}
