/* ============================================================
   ROYALSWISSLINE — Chauffeur Service Lugano
   Vanilla CSS. Editorial luxury: dark hero + white sections + black cards.
   Skills applied: emil-design-eng + design-taste-frontend + impeccable
   ============================================================ */

/* ----- TOKENS ---------------------------------------------- */

:root {
  /* dark surfaces (hero, footer, cards) */
  --bg:            #0a0a0a;
  --bg-cool:       #0e1014;
  --bg-deep:       #060608;
  --ink:           #0a1018;          /* dark text on accent-bright button */
  --text:          #f5f7fa;          /* text on dark surfaces */
  --text-muted:    rgba(245, 247, 250, 0.62);
  --text-faint:    rgba(245, 247, 250, 0.38);
  --line:          rgba(245, 247, 250, 0.08);

  /* light surfaces (page sections below hero) */
  --page-bg:       #f4f5f7;          /* cool off-white */
  --page-bg-warm:  #e9ebee;          /* darker neutral for visible rhythm break */
  --ink-page:      #14161c;          /* dark text on light bg */
  --ink-page-muted:rgba(20, 22, 28, 0.62);
  --ink-page-faint:rgba(20, 22, 28, 0.38);
  --line-light:    rgba(20, 22, 28, 0.1);

  /* accents — mirror silver palette (global default) */
  --accent:        #c5c8cb;          /* polished silver — primary on dark */
  --accent-bright: #e6e9ec;          /* mirror highlight */
  --accent-dim:    rgba(197, 200, 203, 0.42);
  --accent-deep:   #6a6d72;          /* deeper cool gray — on light bg */
  --accent-deep-dim: rgba(106, 109, 114, 0.35);

  /* type */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body:    'Manrope', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  /* motion */
  --ease:         cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out:     cubic-bezier(0.23, 1, 0.32, 1);

  /* layout */
  --container:    1400px;
  --gutter-x:     clamp(1.5rem, 5vw, 4rem);
  --header-h:     clamp(120px, 14vh, 156px);    /* home top-of-page; matches subpages */
  --section-y:    clamp(5rem, 12vh, 9rem);
  --section-y-l:  clamp(7rem, 16vh, 12rem);
  --radius:       16px;                    /* rounded card corners */
  --radius-sm:    10px;                    /* smaller for buttons/inputs */
}

/* ----- RESET ----------------------------------------------- */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  background: var(--page-bg);
  color: var(--ink-page);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

::selection { background: var(--accent-deep); color: var(--text); }

/* ----- LAYOUT UTILITY -------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter-x);
}

/* Section header (eyebrow + h2 + lead) — sits on light page above the dark card */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.65rem, 0.85vw, 0.72rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent-deep-dim);
}

.section-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.012em;
  color: var(--ink-page);
  max-width: 22ch;
}
.section-h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-deep);
}

.lead {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  line-height: 1.55;
  color: var(--ink-page-muted);
  max-width: 50ch;
  margin-top: clamp(1.25rem, 2.5vw, 1.85rem);
}

/* ----- SITE HEADER ----------------------------------------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background-color 280ms var(--ease-out), backdrop-filter 280ms var(--ease-out);

  /* MIRROR SILVER — scoped to header */
  --accent:        #c5c8cb;
  --accent-bright: #e6e9ec;
  --accent-dim:    rgba(197, 200, 203, 0.45);
}
.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.85);
}
@media (min-width: 768px) {
  .site-header.is-scrolled {
    background: rgba(10, 10, 10, 0.72);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
  }
}

/* Subpages — header matches hero bg at top (no contrast band),
   more transparent on scroll. */
.booking-page .site-header,
.legal-page .site-header,
.route-page .site-header {
  background: var(--bg);
}
.booking-page .site-header.is-scrolled,
.legal-page .site-header.is-scrolled,
.route-page .site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.58);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
}
/* Subpage body bg dark — kills the cream gap behind the header */
body.booking-page,
body.legal-page,
body.route-page {
  background: var(--bg);
}
/* Subpage header — same generous size as home initial state.
   header + logo + main padding all share one variable so they never drift apart. */
body.booking-page,
body.legal-page,
body.route-page {
  --subpage-header-h: clamp(120px, 14vh, 156px);
  --subpage-logo-h:   clamp(92px, 11.5vh, 124px);
}
.booking-page .site-header.is-scrolled .header-grid,
.legal-page   .site-header.is-scrolled .header-grid,
.route-page   .site-header.is-scrolled .header-grid {
  min-height: var(--subpage-header-h);
}
.booking-page .site-header.is-scrolled .site-logo img,
.legal-page   .site-header.is-scrolled .site-logo img,
.route-page   .site-header.is-scrolled .site-logo img {
  height: var(--subpage-logo-h);
}
.booking-page main,
.legal-page main,
.route-page main {
  padding-top: var(--subpage-header-h);
}
@media (max-width: 767px) {
  body.booking-page,
  body.legal-page,
  body.route-page {
    --subpage-header-h: clamp(84px, 10vh, 100px);
    --subpage-logo-h:   clamp(60px, 7.5vh, 72px);
  }
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  min-height: var(--header-h);
  transition: min-height 360ms var(--ease-out);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.site-logo picture,
.site-logo img {
  display: block;
}
.site-logo img {
  height: clamp(92px, 11.5vh, 124px);           /* matches subpage logo size */
  width: auto;
  object-fit: contain;
  transition: height 360ms var(--ease-out);
}

/* Scrolled shrink (home only — subpages override below to keep generous size) */
.site-header.is-scrolled .header-grid {
  min-height: clamp(80px, 10vh, 104px);
}
.site-header.is-scrolled .site-logo img {
  height: clamp(64px, 8vh, 88px);
}

@media (max-width: 767px) {
  :root { --header-h: clamp(72px, 10vh, 92px); }
  .site-logo img {
    height: clamp(56px, 8vh, 76px);
  }
  .site-header.is-scrolled .header-grid {
    min-height: clamp(56px, 7vh, 68px);
  }
  .site-header.is-scrolled .site-logo img {
    height: clamp(44px, 5.8vh, 56px);
  }
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}
.site-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding-block: 0.25rem;
  transition: color 160ms var(--ease-out);
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .site-nav a:hover { color: var(--text); }
  .site-nav a:hover::after { transform: scaleX(1); }
}

/* Nav dropdown (Tratte) */
.nav-group { position: relative; }
.nav-group__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-caret {
  font-size: 0.6em;
  transition: transform 200ms var(--ease-out);
  display: inline-block;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 320px;
  background: rgba(14, 16, 20, 0.96);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border: 1px solid var(--accent-dim);
  border-radius: var(--radius);
  box-shadow: 0 32px 60px -20px rgba(0, 0, 0, 0.6);
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 240ms var(--ease-out),
    transform 240ms var(--ease-out),
    visibility 0s linear 240ms;
  z-index: 50;
}
/* Invisible hover bridge — covers the 0.8rem gap between trigger and dropdown
   so cursor can travel from trigger into panel without losing hover state. */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -0.8rem;
  left: 0;
  right: 0;
  height: 0.8rem;
}
.nav-dropdown a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0.72rem 0.95rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--text-muted);
  border-radius: 8px;
  transition: background-color 160ms var(--ease-out), color 160ms var(--ease-out);
}
.nav-dropdown a::after { content: none; }   /* kill underline from .site-nav a */
.nav-dropdown .route-arrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent);
  opacity: 0.7;
}
.nav-dropdown .route-name {
  font-size: 0.83rem;
  letter-spacing: 0.02em;
  color: var(--text);
}
.nav-dropdown .route-cost {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0;
  color: var(--accent-bright);
  white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
  .nav-group:hover .nav-dropdown,
  .nav-group:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;
  }
  .nav-group:hover .nav-caret,
  .nav-group:focus-within .nav-caret { transform: rotate(180deg); }
  .nav-dropdown a:hover {
    background: rgba(230, 233, 236, 0.06);
    color: var(--text);
  }
  .nav-dropdown a:hover .route-arrow { opacity: 1; }
}

/* Header actions group — Prenota first, lang switcher last */
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}
.header-actions .header-cta    { order: 1; }
.header-actions .lang-switcher { order: 2; }
/* Open dropdown menu still anchors to the right edge */
.lang-switcher__menu { right: 0; left: auto; }

/* Language switcher — hover dropdown (same pattern as .nav-dropdown) */
.lang-switcher {
  position: relative;
  margin: 0;
}
.lang-switcher__trigger {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-bright);
  border: 1px solid var(--accent-dim);
  border-radius: var(--radius-sm);
  transition: color 160ms var(--ease-out), border-color 160ms var(--ease-out), background-color 160ms var(--ease-out);
}
.lang-switcher__current {
  color: var(--accent-bright);
}
.lang-switcher__trigger:hover,
.lang-switcher:hover .lang-switcher__trigger,
.lang-switcher:focus-within .lang-switcher__trigger {
  color: var(--accent-bright);
  border-color: var(--accent-bright);
  background-color: rgba(230, 233, 236, 0.04);
}
.lang-switcher__caret {
  font-size: 0.7em;
  color: var(--accent);
  transition: transform 200ms var(--ease-out);
  display: inline-block;
}
.lang-switcher:hover .lang-switcher__caret,
.lang-switcher:focus-within .lang-switcher__caret { transform: rotate(180deg); color: var(--accent-bright); }

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 11rem;
  background: rgba(14, 16, 20, 0.96);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border: 1px solid var(--accent-dim);
  border-radius: var(--radius);
  box-shadow: 0 32px 60px -20px rgba(0, 0, 0, 0.6);
  padding: 0.45rem;
  list-style: none;
  margin: 0;
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 200ms var(--ease-out),
    transform 200ms var(--ease-out),
    visibility 0s linear 200ms;
}
@media (hover: hover) and (pointer: fine) {
  .lang-switcher:hover .lang-switcher__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }
}
/* :focus-within works everywhere — tap on touch, Tab on keyboard, hover-then-focus on desktop. */
.lang-switcher:focus-within .lang-switcher__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}
/* Invisible hover bridge — covers gap between trigger and menu so cursor can travel
   from trigger into menu without losing hover state. */
.lang-switcher__menu::before {
  content: '';
  position: absolute;
  top: -0.5rem;
  left: 0;
  right: 0;
  height: 0.5rem;
}
.lang-switcher__menu li { margin: 0; padding: 0; }
.lang-switcher__option {
  display: grid;
  grid-template-columns: 2rem 1fr;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  text-decoration: none;
  border-radius: 6px;
  color: var(--text-muted);
  transition: background-color 160ms var(--ease-out), color 160ms var(--ease-out);
}
.lang-switcher__option:hover {
  background: rgba(230, 233, 236, 0.06);
  color: var(--text);
}
/* Hide the currently-active language from the dropdown list — already shown in the trigger. */
.lang-switcher__menu .lang-switcher__option.is-active {
  display: none;
}
.lang-switcher__code {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
}
.lang-switcher__option.is-active .lang-switcher__code { color: var(--accent-bright); }
.lang-switcher__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.02rem;
  color: inherit;
}

@media (max-width: 1023px) {
  /* Mobile: header lang-switcher hidden (lives inside the drawer). */
  .lang-switcher { display: none; }
}

/* Drawer language switcher — compact dropdown above the CTAs */
.drawer-lang {
  position: relative;
  padding: 1.25rem 0 0.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.drawer-lang__trigger {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0;
  cursor: pointer;
  user-select: none;
}
.drawer-lang__trigger::-webkit-details-marker { display: none; }
.drawer-lang__trigger::marker { content: ''; }
.drawer-lang__trigger-code {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-bright);
}
.drawer-lang__trigger-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--accent-bright);
}
.drawer-lang__caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid var(--accent-dim);
  border-radius: 50%;
  font-size: 0.75em;
  color: var(--accent-bright);
  transition: transform 240ms var(--ease-out), border-color 240ms var(--ease-out), background-color 240ms var(--ease-out);
  margin-left: 0.5rem;
  line-height: 1;
}
.drawer-lang__trigger:hover .drawer-lang__caret,
.drawer-lang[open] .drawer-lang__caret {
  border-color: var(--accent-bright);
  background-color: rgba(230, 233, 236, 0.06);
}
.drawer-lang[open] .drawer-lang__caret { transform: rotate(180deg); }

.drawer-lang__menu {
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.drawer-lang__menu li { margin: 0; padding: 0; }

.drawer-lang__menu li { margin: 0; padding: 0; }
.drawer-lang__item {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  padding: 0.4rem 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 160ms var(--ease-out);
}
.drawer-lang__item:hover { color: var(--text); }
/* Hide active language from the dropdown list — already shown in the trigger. */
.drawer-lang__item.is-active { display: none; }
.drawer-lang__code {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  min-width: 2.5rem;
}
.drawer-lang__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  color: inherit;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--accent-bright);
  padding: 0.75rem 1.4rem;
  border: 1px solid var(--accent-bright);
  border-radius: var(--radius-sm);
  transition: background-color 160ms var(--ease-out), border-color 160ms var(--ease-out), transform 140ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .header-cta:hover { background: #f0f2f4; border-color: #f0f2f4; }
}
.header-cta:active { transform: scale(0.97); transition-duration: 100ms; }

/* Header CTA — silver-tone hover (override hardcoded blue) */
@media (hover: hover) and (pointer: fine) {
  .site-header .header-cta:hover {
    background: #f0f2f4;
    border-color: #f0f2f4;
  }
}
.site-header .header-cta:focus-visible {
  background: #f0f2f4;
  border-color: #f0f2f4;
}

/* hamburger — label + icon row */
.hamburger {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 0.55rem 0.4rem 0.75rem;
  background: transparent;
  position: relative;
  z-index: 101;
  transform: translateZ(0);
  cursor: pointer;
}
.hamburger__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}
.hamburger__icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 24px;
}
.hamburger__icon span {
  display: block;
  width: 24px; height: 1px;
  background: var(--text);
  transform-origin: left center;
  transition: transform 280ms var(--ease-out), opacity 200ms var(--ease-out);
}
.hamburger[aria-expanded="true"] .hamburger__icon span:nth-child(1) { transform: translateX(2px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger__icon span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger__icon span:nth-child(3) { transform: translateX(2px) rotate(-45deg); }

@media (max-width: 1023px) {
  .site-nav, .header-cta, .header-actions { display: none; }
  /* Header on mobile: Logo + Hamburger with "Menu" label.
     Language switcher lives inside the drawer (drawer-lang dropdown). */
  .hamburger {
    display: inline-flex;
    justify-self: end;
    grid-column: -2 / -1;
  }
}

/* ----- MOBILE DRAWER --------------------------------------- */

.drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform 380ms var(--ease-out);
  visibility: hidden;
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 1.5rem) var(--gutter-x) 2rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;

  /* MIRROR SILVER — scoped to drawer (matches header) */
  --accent:        #c5c8cb;
  --accent-bright: #e6e9ec;
  --accent-dim:    rgba(197, 200, 203, 0.45);
}
.drawer.open { transform: translateX(0); visibility: visible; }

.drawer-nav { display: flex; flex-direction: column; gap: 1.5rem; }
.drawer-nav a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  line-height: 1.1;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}
.drawer-nav .n {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--accent);
}

/* Drawer expandable Tratte group */
.drawer-group { display: flex; flex-direction: column; }
.drawer-group__trigger {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 1rem;
  width: 100%;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  line-height: 1.1;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
  text-align: left;
  cursor: pointer;
}
.drawer-group__trigger .drawer-caret {
  margin-left: auto;
  font-size: 0.5em;
  transition: transform 240ms var(--ease-out);
}
.drawer-group__trigger[aria-expanded="true"] .drawer-caret { transform: rotate(180deg); }

.drawer-sublist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0 0 1.4rem;
  margin-bottom: 0.5rem;
}
.drawer-sublist[hidden] { display: none; }
.drawer-sublist a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  color: var(--text-muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.75rem;
}
.drawer-sublist a .n {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--accent);
}
.drawer-sublist a em {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--accent-bright);
}

.drawer-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 2rem;
}

/* ============================================================
   HERO  (stays dark — cinematic alpine night)
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
  color: var(--text);

  /* MIRROR SILVER — scoped to hero */
  --accent:        #c5c8cb;                  /* polished silver */
  --accent-bright: #e6e9ec;                  /* mirror highlight */
  --accent-dim:    rgba(197, 200, 203, 0.45);
}

/* Hero photo — fixed bg via background-attachment (parallax effect) */
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background-color: var(--bg);                 /* fallback while image loads */
  background-image: url('../img/hero-passenger.webp?v=2026052311');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  background-attachment: fixed;                /* image stays fixed while user scrolls */
  /* Brighter — image clearly visible, still moody */
  filter: brightness(0.6) contrast(1.04) saturate(0.6);
}

/* Mobile: smaller image + fallback to scroll attachment + full-width bg */
@media (max-width: 767px) {
  .hero__photo {
    background-image: url('../img/hero-passenger-mobile.webp?v=2026052311');
    background-attachment: scroll;
  }
}

/* Vignette + lighter tonal overlay above photo */
.hero__bg {
  position: absolute;
  inset: -4%;
  z-index: -3;
  background:
    radial-gradient(ellipse 42% 36% at 18% 22%, rgba(220, 224, 228, 0.06) 0%, rgba(220, 224, 228, 0) 65%),
    /* Right-side darken — frames the S-Class portrait card */
    linear-gradient(90deg, transparent 0%, transparent 30%, rgba(0, 0, 0, 0.6) 65%, rgba(0, 0, 0, 0.9) 100%),
    /* softer bottom darken — image now more visible */
    linear-gradient(180deg, rgba(8, 8, 12, 0.35) 0%, rgba(8, 8, 12, 0.5) 45%, rgba(6, 6, 10, 0.78) 100%),
    /* vignette */
    radial-gradient(ellipse 110% 85% at 50% 55%, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  animation: breathe 18s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes breathe {
  from { transform: scale(1)    translate3d(0,    0,    0); }
  to   { transform: scale(1.08) translate3d(-1.2%, -1.5%, 0); }
}

.hero__lights {
  position: absolute;
  inset: -15%;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(circle 460px at 50% 50%, rgba(230, 233, 236, 0.16) 0%, rgba(230, 233, 236, 0.05) 35%, rgba(230, 233, 236, 0) 70%);
  filter: blur(12px);
  animation: drift 28s ease-in-out infinite alternate;
  will-change: transform, opacity;
}
@keyframes drift {
  0%   { transform: translate3d(-10%, -25%, 0) scale(0.9);  opacity: 0.55; }
  35%  { transform: translate3d( 18%, -20%, 0) scale(1.15); opacity: 1;    }
  70%  { transform: translate3d( 38%, -32%, 0) scale(1.05); opacity: 0.8;  }
  100% { transform: translate3d( 32%, -10%, 0) scale(1);    opacity: 0.65; }
}

.hero__motes {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.hero__motes span {
  position: absolute; bottom: -10px;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 5px rgba(230, 233, 236, 0.5);
  opacity: 0;
  animation: mote-rise linear infinite;
  will-change: transform, opacity;
}
.hero__motes span:nth-child(1) { left: 11%; animation-delay:  0s; animation-duration: 26s; }
.hero__motes span:nth-child(2) { left: 24%; animation-delay:  7s; animation-duration: 30s; }
.hero__motes span:nth-child(3) { left: 47%; animation-delay: 14s; animation-duration: 34s; }
.hero__motes span:nth-child(4) { left: 66%; animation-delay:  3s; animation-duration: 28s; }
.hero__motes span:nth-child(5) { left: 83%; animation-delay: 17s; animation-duration: 32s; }
.hero__motes span:nth-child(6) { left: 94%; animation-delay: 10s; animation-duration: 36s; }
@keyframes mote-rise {
  0%   { transform: translate3d(0, 0, 0); opacity: 0; }
  12%  { opacity: 0.5; }
  88%  { opacity: 0.3; }
  100% { transform: translate3d(18px, -110vh, 0); opacity: 0; }
}

.hero__grain {
  position: absolute; inset: 0; z-index: -1;
  pointer-events: none; opacity: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.65 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  animation: grain-in 1.6s 0.1s var(--ease) forwards, grain-shift 1.4s steps(2) infinite;
}
@keyframes grain-in { to { opacity: 0.07; } }
@keyframes grain-shift {
  0%   { background-position: 0 0; }
  50%  { background-position: 110px 80px; }
  100% { background-position: 0 0; }
}

.hero__frame {
  position: absolute; inset: clamp(1rem, 3vw, 2.25rem);
  pointer-events: none; z-index: 1;
  opacity: 0;
  animation: drift-in 1.6s 0.25s var(--ease) forwards;
}
.hero__frame::before, .hero__frame::after {
  content: ''; position: absolute;
  width: 26px; height: 26px;
  border: 1px solid var(--accent-dim);
}
.hero__frame::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hero__frame::after  { bottom: 0; right: 0; border-left: 0; border-top: 0; }

.hero__meta {
  position: absolute;
  top: clamp(1.75rem, 4vw, 2.5rem);
  right: clamp(2rem, 5vw, 4rem);
  z-index: 2;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.62rem, 0.85vw, 0.7rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  animation: drift-in 1.4s 0.45s var(--ease) forwards;
}
.hero__meta::before {
  content: ''; width: 28px; height: 1px; background: var(--accent-dim);
}

.hero__inner {
  position: relative; z-index: 1;
  width: 100%; max-width: var(--container);
  margin: 0 auto;
  padding: clamp(8rem, 14vh, 12rem) var(--gutter-x) clamp(5rem, 10vh, 7rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.hero__content { text-align: left; max-width: 36rem; }

.hero__line {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--accent);
  margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  animation: line-in 1.6s 0.6s var(--ease) forwards;
}
@keyframes line-in {
  from { opacity: 0; transform: scaleX(0); }
  to   { opacity: 1; transform: scaleX(1); }
}

.hero__line {
  display: block; width: 56px; height: 1px;
  background: var(--accent);
  margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
  opacity: 0; transform: scaleX(0);
  transform-origin: left center;
  animation: line-in 1.6s 0.6s var(--ease) forwards;
}
@keyframes line-in {
  from { opacity: 0; transform: scaleX(0); }
  to   { opacity: 1; transform: scaleX(1); }
}

/* ----- HEADLINE — two-part editorial title ----------------- */
/* Both parts in Cormorant 400, connected by "by" eyebrow.       */

.hero__headline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text);
  margin: 0 0 clamp(1.25rem, 2.8vw, 1.85rem);
  opacity: 0;
  animation: drift-in 1.6s 0.8s var(--ease) forwards;
}

.hero__title-part {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.95rem, 5.2vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -0.012em;
  color: var(--accent-bright);
  /* Subtle depth only — no double-letter shadow on first part */
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.5),
    0 8px 20px rgba(0, 0, 0, 0.35);
}

/* Brand — Cinzel caps "engraved in metal" effect (Rolex/Cartier register) */
.hero__title-part--brand {
  font-family: 'Cinzel', var(--font-display);
  font-weight: 600;
  font-size: clamp(1.95rem, 5.2vw, 4.1rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-bright);
  /* Silver glow shadow — same hue as letters, never black */
  text-shadow:
    0 -1px 0 rgba(255, 255, 255, 0.4),
    0 0 14px rgba(230, 233, 236, 0.45),
    0 0 36px rgba(230, 233, 236, 0.22);
}

.hero__title-by {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.7rem, 1.5vw, 1.1rem);
  margin: clamp(0.85rem, 1.7vw, 1.3rem) 0 clamp(0.55rem, 1vw, 0.85rem);
  padding-left: 0.15em;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.65rem, 0.95vw, 0.74rem);
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero__title-by::before,
.hero__title-by::after {
  content: '';
  width: clamp(22px, 4vw, 38px);
  height: 1px;
  background: var(--accent-dim);
}

.hero__sub {
  font-weight: 200;
  font-size: clamp(0.85rem, 1.35vw, 1rem);
  line-height: 1.5;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  max-width: 36ch;
  margin: 0 0 clamp(2.25rem, 4.5vw, 3rem);
  opacity: 0;
  animation: drift-in 1.6s 1.05s var(--ease) forwards;
}

.hero__cta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: drift-in 1.6s 1.3s var(--ease) forwards;
}

/* ----- QUOTE WIDGET — overlap card on white --------------- */

.section--quote {
  background: var(--page-bg);
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  z-index: 5;
}
.section--quote .container {
  position: relative;
}

.quote-card {
  background: var(--bg);
  color: var(--text);
  padding: clamp(1.5rem, 2.8vw, 2.25rem) clamp(1.5rem, 2.8vw, 2.25rem) clamp(1.25rem, 2.2vw, 1.75rem);
  margin-top: clamp(-6rem, -10vh, -4rem);    /* overlap into hero */
  border-radius: var(--radius);
  box-shadow:
    0 30px 60px -28px rgba(20, 30, 50, 0.30),
    0 12px 28px -14px rgba(20, 30, 50, 0.16);
  opacity: 0;
  animation: drift-in 1.6s 1.3s var(--ease) forwards;
}

.quote-tabs {
  display: flex;
  gap: 0;
  margin-bottom: clamp(1rem, 2vw, 1.4rem);
  border-bottom: 1px solid var(--line);
}
.quote-tab {
  padding: 0.55rem 1.25rem 0.65rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  transition: color 160ms var(--ease-out), border-color 160ms var(--ease-out);
}
.quote-tab.is-active {
  color: var(--accent-bright);
  border-bottom-color: var(--accent-bright);
}
@media (hover: hover) and (pointer: fine) {
  .quote-tab:hover:not(.is-active) { color: var(--text); }
}

.quote-fields {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 90px auto;
  gap: clamp(1rem, 1.8vw, 1.25rem);
  align-items: end;
}
.quote-field { display: flex; flex-direction: column; gap: 0.4rem; min-width: 0; }
.quote-field label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
}
.quote-field input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--accent-dim);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  padding: 0.55rem 0;
  outline: none;
  width: 100%;
  border-radius: 0;
  transition: border-color 200ms var(--ease-out);
  -webkit-appearance: none;
  appearance: none;
}
.quote-field input:focus {
  border-bottom-color: var(--accent-bright);
}
.quote-field input::placeholder {
  color: var(--text-faint);
}
/* date/time picker icon — keep visible */
.quote-field input[type="datetime-local"] {
  color-scheme: dark;
}

.quote-submit {
  align-self: end;
  min-width: 9rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
}

.quote-note {
  margin-top: clamp(0.75rem, 1.5vw, 1rem);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.quote-note::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--accent-dim);
}
.quote-note a { color: var(--accent-bright); transition: color 160ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .quote-note a:hover { color: var(--text); }
}

/* ----- HERO TICKER — bottom marquee strip ------------------ */

.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: linear-gradient(to bottom,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.78) 100%);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-top: 1px solid var(--accent-dim);
  padding-block: clamp(0.85rem, 1.6vw, 1.15rem);
  overflow: hidden;
  opacity: 0;
  animation: drift-in 1.6s 1.8s var(--ease) forwards;
}

/* Edge fade — left and right gradient masks for "scroll into void" effect */
.hero-ticker::before,
.hero-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(40px, 8vw, 100px);
  z-index: 2;
  pointer-events: none;
}
.hero-ticker::before {
  left: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0) 100%);
}
.hero-ticker::after {
  right: 0;
  background: linear-gradient(to left, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0) 100%);
}

.hero-ticker__track {
  display: flex;
  width: max-content;
  gap: 0;                                    /* item has its own ::after divider */
  animation: ticker-slide 50s linear infinite;
  will-change: transform;
}

.hero-ticker__item {
  display: inline-flex;
  align-items: baseline;
  gap: 1.1em;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
}

/* Italic editorial number — Cormorant, accent, drop-cap feel */
.hero-ticker__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
  opacity: 0.85;
}

/* Service label — Manrope tracked uppercase */
.hero-ticker__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.7rem, 0.92vw, 0.78rem);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

/* Vertical hairline separator — luxury magazine column divider */
.hero-ticker__item::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 1.15em;
  background: var(--accent-dim);
  margin-left: clamp(2rem, 3.5vw, 3.25rem);
  transform: translateY(0.15em);
  opacity: 0.6;
}

@keyframes ticker-slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Pause on hover (accessibility + restraint) */
.hero-ticker:hover .hero-ticker__track {
  animation-play-state: paused;
}

.hero__detail {
  position: relative;
  align-self: center;
  justify-self: end;
  width: 100%;
  max-width: 1150px;
  aspect-ratio: 1600 / 1073;
  overflow: hidden;
  border-radius: var(--radius);
  opacity: 0;
  animation: drift-in 1.6s 1.5s var(--ease) forwards;
}
.hero__detail picture,
.hero__detail img { display: block; width: 100%; height: 100%; }
.hero__detail img {
  object-fit: cover;                         /* matched ratio means no actual crop */
  filter: brightness(0.88) contrast(1.05) saturate(0.55);
}

/* ============================================================
   BUTTONS (shared)
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05rem 2.1rem;
  min-width: 14rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    background-color 160ms var(--ease-out),
    border-color     160ms var(--ease-out),
    color            160ms var(--ease-out),
    transform        140ms var(--ease-out);
  position: relative;
  white-space: nowrap;
}
.btn--primary {
  background-color: var(--accent-bright);
  color: var(--ink);
  border-color: var(--accent-bright);
}
.btn--ghost {
  background-color: transparent;
  color: var(--text);
  border-color: rgba(197, 200, 203, 0.55);
}
/* Hero-scoped: silver border for ghost button + silver hover for primary */
.hero .btn--ghost { border-color: rgba(197, 200, 203, 0.55); }
@media (hover: hover) and (pointer: fine) {
  .hero .btn--ghost:hover {
    background-color: rgba(197, 200, 203, 0.08);
  }
  .hero .btn--primary:hover {
    background-color: #f0f2f4;
    border-color: #f0f2f4;
  }
}
.hero .btn--primary:focus-visible {
  background-color: #f0f2f4;
  border-color: #f0f2f4;
}
@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover {
    background-color: #f0f2f4; border-color: #f0f2f4;
  }
  .btn--ghost:hover {
    background-color: rgba(197, 200, 203, 0.08);
    border-color: var(--accent);
    color: var(--accent-bright);
  }
  .btn:hover .btn__arrow { transform: translateX(4px); }
}
.btn:active { transform: scale(0.97); transition-duration: 100ms; }
.btn--primary:focus-visible { background-color: #f0f2f4; border-color: #f0f2f4; }
.btn--ghost:focus-visible {
  background-color: rgba(197, 200, 203, 0.08);
  border-color: var(--accent);
  color: var(--accent-bright);
}
.btn:focus-visible { outline: 1px solid var(--accent); outline-offset: 4px; }
.btn:focus-visible .btn__arrow { transform: translateX(4px); }

.btn__arrow {
  position: relative;
  display: inline-block;
  width: 16px; height: 1px;
  background: currentColor;
  transition: transform 200ms var(--ease-out);
}
.btn__arrow::after {
  content: '';
  position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid currentColor;
  border-top:   1px solid currentColor;
  transform: rotate(45deg);
}

/* ============================================================
   SECTIONS — light page background
   ============================================================ */

.section {
  padding-block: var(--section-y);
  position: relative;
  background: var(--page-bg);
}
.section--breathe { padding-block: var(--section-y-l); }
.section--warm    { background: var(--page-bg-warm); }

/* Services section — clean white bg, NO image here */
.section--services {
  position: relative;
  overflow: hidden;
  background-color: var(--page-bg);
}
.section--services > .container { position: relative; z-index: 2; }

/* Rhythm-break sections (slightly darker neutral) */
.section--fleet,
.section--routes,
.section--tariff { background: var(--page-bg-warm); }

/* ============================================================
   DETTAGLI — editorial 2-image breakout (headlight + emblem)
   ============================================================ */
.section--dettagli {
  background: var(--bg);
  color: var(--text);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(5rem, 10vh, 8rem);
  --accent:        #c5c8cb;
  --accent-bright: #e6e9ec;
  --accent-dim:    rgba(197, 200, 203, 0.42);
}
.section--dettagli::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 45% at 22% 28%, rgba(230, 233, 236, 0.06) 0%, transparent 65%),
    radial-gradient(ellipse 50% 45% at 78% 72%, rgba(230, 233, 236, 0.04) 0%, transparent 65%);
}

.dettagli-spread {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  column-gap: clamp(1.5rem, 3vw, 3rem);
  row-gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.dettagli__header {
  grid-column: 1 / -1;
  max-width: 44rem;
  text-align: left;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.dettagli__header .eyebrow { color: var(--accent); }
.dettagli__header .eyebrow::before { background: var(--accent-dim); }
.dettagli__header .section-h2 {
  color: var(--accent-bright);
  margin: 0;
}
.dettagli__header .section-h2 em { color: var(--accent); }
.dettagli__header .lead {
  color: var(--text-muted);
  max-width: 38rem;
}

.dettagli-shot {
  margin: 0;
  position: relative;
}
.dettagli-shot picture {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  box-shadow:
    0 36px 72px -32px rgba(0, 0, 0, 0.55),
    0 14px 28px -16px rgba(0, 0, 0, 0.35);
}
.dettagli-shot picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-out);
  will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
  .dettagli-shot:hover picture img { transform: scale(1.03); }
}
.dettagli-shot--wide picture { aspect-ratio: 3 / 2; }
.dettagli-shot--tall picture { aspect-ratio: 2 / 3; }
.dettagli-shot--tall { padding-top: clamp(2rem, 5vw, 4rem); }   /* asymmetric vertical offset */

.dettagli-shot figcaption {
  margin-top: clamp(1.2rem, 2.2vw, 1.6rem);
  padding-inline: 0.25rem;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: clamp(1rem, 1.8vw, 1.5rem);
  row-gap: 0.3rem;
  align-items: baseline;
}
.dettagli-shot__num {
  grid-row: 1 / span 2;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 2.6vw, 2.2rem);
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0.04em;
  align-self: start;
  padding-top: 0.15rem;
}
.dettagli-shot__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--accent-bright);
}
.dettagli-shot__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.92rem, 1.1vw, 1rem);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 40ch;
}

@media (max-width: 900px) {
  .dettagli-spread {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
  }
  .dettagli-shot--tall { padding-top: 0; }
  .dettagli-shot--wide picture,
  .dettagli-shot--tall picture { aspect-ratio: 4 / 3; }
}

/* ============================================================
   FLEET FEATURE — single hero treatment for the S-Class
   Wide image + editorial meta block on the side. No card frame.
   ============================================================ */
.section--fleet {
  overflow: hidden;
  position: relative;
}
.section-header--fleet {
  max-width: 46rem;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.section-header--fleet .eyebrow { justify-content: center; }
.section-header--fleet .section-h2,
.section-header--fleet .lead {
  margin-left: auto;
  margin-right: auto;
}
.section-header--fleet .lead { max-width: 40rem; }

.fleet-feature {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  column-gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.fleet-feature__media {
  position: relative;
  display: block;
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow:
    0 40px 80px -32px rgba(20, 30, 50, 0.32),
    0 16px 32px -16px rgba(20, 30, 50, 0.16);
  isolation: isolate;
}
.fleet-feature__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2s var(--ease-out);
  will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
  .fleet-feature:hover .fleet-feature__media img { transform: scale(1.03); }
}
/* Image caption (location credit) — floats at bottom of image */
.fleet-feature__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 2.5vw, 1.85rem);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.fleet-feature__location {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(230, 233, 236, 0.92);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Meta block — editorial sidebar */
.fleet-feature__meta {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2.5vw, 2rem);
}

.fleet-feature__head {
  display: flex;
  align-items: flex-start;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
  border-bottom: 1px solid var(--accent-deep-dim);
}
.fleet-feature__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--accent-deep);
  flex-shrink: 0;
  margin-top: -0.25rem;
}
.fleet-feature__eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 0.55rem;
}
.fleet-feature__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.85rem, 3.2vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink-page);
  margin: 0 0 0.5rem;
}
.fleet-feature__model {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-page-muted);
  margin: 0;
}

/* Specs grid */
.fleet-feature__specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  margin: 0;
  padding: 0;
}
.fleet-feature__specs > div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.fleet-feature__specs dt {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.fleet-feature__specs dd {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  letter-spacing: -0.005em;
  color: var(--ink-page);
  margin: 0;
  line-height: 1.2;
}

.fleet-feature__lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.95rem, 1.15vw, 1.02rem);
  line-height: 1.65;
  color: var(--ink-page-muted);
  max-width: 42ch;
  margin: 0;
}

.fleet-feature__cta {
  align-self: flex-start;
  margin-top: 0.4rem;
}

@media (max-width: 900px) {
  .fleet-feature {
    grid-template-columns: 1fr;
    row-gap: clamp(1.75rem, 3vw, 2.5rem);
  }
  .fleet-feature__cta { align-self: stretch; }
  .fleet-feature__cta.btn { width: 100%; }
}
@media (max-width: 500px) {
  .fleet-feature__specs {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   (deprecated) FLEET SPREAD — was magazine-style image pair.
   Kept here in case any subpage still references .fleet-shot,
   but no longer used on home.
   ============================================================ */
.fleet-spread {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "head head"
    "left right";
  column-gap: clamp(1.25rem, 3vw, 3rem);
  row-gap: clamp(2.5rem, 5vw, 4rem);
  padding: 0 clamp(1rem, 3vw, 2rem);
}
.section-header--fleet {
  grid-area: head;
  max-width: 46rem;
  margin: 0 auto clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  padding-inline: var(--gutter-x);
}
.section-header--fleet .eyebrow {
  justify-content: center;
}
.section-header--fleet .section-h2 {
  margin-left: auto;
  margin-right: auto;
}
.section-header--fleet .lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 38rem;
}

.fleet-shot {
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
}
.fleet-shot--left  { grid-area: left;  }
.fleet-shot--right {
  grid-area: right;
  padding-top: clamp(2rem, 6vw, 5rem);   /* asymmetric vertical offset */
}

.fleet-shot picture {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  box-shadow:
    0 36px 72px -32px rgba(20, 30, 50, 0.28),
    0 14px 28px -14px rgba(20, 30, 50, 0.14);
}
.fleet-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-out);
  will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
  .fleet-shot:hover img { transform: scale(1.04); }
}

/* Caption — editorial, sits below the image with breathing room */
.fleet-shot figcaption {
  margin-top: clamp(1.4rem, 2.5vw, 1.85rem);
  padding-inline: 0.25rem;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: clamp(1.2rem, 2vw, 1.75rem);
  row-gap: 0.3rem;
  align-items: baseline;
}
.fleet-shot__num {
  grid-row: 1 / span 3;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1;
  color: var(--accent-deep);
  letter-spacing: 0.04em;
  align-self: start;
  padding-top: 0.3rem;
}
.fleet-shot__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink-page);
}
.fleet-shot__model {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-page-muted);
}
.fleet-shot__specs {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.55;
  color: var(--ink-page-muted);
  margin-top: 0.3rem;
}

/* Mobile — stack, equal weight, no offset */
@media (max-width: 767px) {
  .fleet-spread {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "left" "right";
    row-gap: 2.75rem;
    padding-inline: var(--gutter-x);
  }
  .fleet-shot--right { padding-top: 0; }
  .fleet-shot picture { aspect-ratio: 4 / 3; }
  .fleet-shot figcaption {
    column-gap: 1rem;
  }
}

/* ----- TARIFF DIVIDER — between tier cards and hourly tariff list */
.tariff-divider {
  position: relative;
  text-align: center;
  margin: clamp(3.25rem, 5.5vw, 4.5rem) 0 clamp(2rem, 3.5vw, 3rem);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}
.tariff-divider::before,
.tariff-divider::after {
  content: '';
  flex: 1;
  max-width: 12rem;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--accent-deep-dim) 50%, transparent 100%);
}
.tariff-divider span {
  flex: 0 0 auto;
}

/* ============================================================
   CHI SIAMO — owner story (asymmetric 5/7 grid)
   ============================================================ */
.section--about {
  position: relative;
  background-color: var(--page-bg);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

/* Portrait — editorial silver frame (placeholder until photo) */
.about-portrait {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  margin: 0;
}
.about-portrait__frame {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 30px 60px -30px rgba(20, 30, 50, 0.32),
    0 12px 24px -16px rgba(20, 30, 50, 0.18);
  overflow: hidden;
  background: #1a1d24;                       /* fallback while loading */
}
.about-portrait__frame picture,
.about-portrait__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;               /* face upper-mid, jacket visible below */
}
/* Bottom gradient + label badge — editorial caption overlay */
.about-portrait__frame::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    transparent 100%);
  pointer-events: none;
}
.about-portrait__label {
  position: absolute;
  left: clamp(1.2rem, 2vw, 1.6rem);
  bottom: clamp(1.2rem, 2vw, 1.6rem);
  z-index: 2;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.about-portrait__caption {
  margin-top: 1.2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.85rem, 1.05vw, 0.95rem);
  line-height: 1.5;
  color: var(--ink-page-muted);
  max-width: 32ch;
}

/* Content side */
.about-content { padding-top: 0.4rem; }
.about-content .section-h2 { margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem); }
.about-content .lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}
.about-body p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.7;
  margin-bottom: 1.1rem;
  color: var(--ink-page);
}

/* Stats — 3 columns, thin separators */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  margin: clamp(2rem, 4vw, 2.75rem) 0 clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.4rem, 2.5vw, 1.8rem) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.about-stat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.about-stat__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink-page);
}
.about-stat__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
}

.about-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: rgba(0, 0, 0, 0.7);
  letter-spacing: 0.02em;
}

/* ============================================================
   L'ESPERIENZA — editorial 3-image triptych
   ============================================================ */
.section--experience {
  position: relative;
  background-color: var(--page-bg);
  overflow: hidden;
}
.section-header--center { text-align: center; max-width: 56rem; margin: 0 auto clamp(3rem, 6vw, 4.5rem); }
.section-header--center .lead { margin-left: auto; margin-right: auto; max-width: 38rem; }

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.experience-card {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0a0e16;
  box-shadow:
    0 28px 56px -28px rgba(20, 30, 50, 0.28),
    0 12px 24px -16px rgba(20, 30, 50, 0.12);
  isolation: isolate;
  transition:
    transform 420ms var(--ease-out),
    box-shadow 420ms var(--ease-out);
}
.experience-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
}
.experience-card__media picture,
.experience-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-out);
}
/* Gradient overlay — keeps caption legible */
.experience-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.55) 30%,
    rgba(0, 0, 0, 0.18) 55%,
    transparent 75%);
  pointer-events: none;
  z-index: 1;
}

/* Caption — sits over image at bottom */
.experience-card__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--accent-bright);
}
.experience-card__num {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: rgba(230, 233, 236, 0.7);
  margin-bottom: 0.6rem;
}
.experience-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: #fff;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.experience-card__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.88rem, 1vw, 0.95rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36ch;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Hover — gentle zoom + lift */
@media (hover: hover) and (pointer: fine) {
  .experience-card:hover {
    transform: translateY(-4px);
    box-shadow:
      0 38px 70px -28px rgba(20, 30, 50, 0.36),
      0 16px 32px -16px rgba(20, 30, 50, 0.18);
  }
  .experience-card:hover .experience-card__media img {
    transform: scale(1.06);
  }
}

/* Routes + Tariffs are a paired pricing zone — tighten gap */
.section--tariff { padding-top: clamp(2rem, 4vh, 3rem); }


.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header.center { text-align: center; }
.section-header.center .eyebrow { justify-content: center; }
.section-header.center .section-h2 { margin-left: auto; margin-right: auto; }
.section-header.center .lead { margin-left: auto; margin-right: auto; }

/* ============================================================
   CARD-DARK — black panel on light page
   Tint shadow to cool background hue (impeccable principle)
   ============================================================ */

.card-dark {
  background: var(--bg);
  color: var(--text);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  border-radius: var(--radius);
  position: relative;
  box-shadow:
    0 30px 60px -28px rgba(20, 30, 50, 0.16),
    0 10px 28px -14px rgba(20, 30, 50, 0.08);
}

/* ============================================================
   SERVICES — stack of 5 black cards (no 3-card grid)
   ============================================================ */

/* Services grid — image visible only through cards (box-shadow mask trick) */
.services-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 1.5vw, 1.25rem);
  /* Hide the shadow spread that goes beyond grid bounds */
  isolation: isolate;
}
.service-card--wide { grid-column: 1 / -1; }

/* Service card — JS-driven shared background (one image across all cards) */
.service-card {
  position: relative;
  background-color: #0a0e16;                   /* fallback */
  background-image:
    linear-gradient(rgba(6, 8, 12, 0.62), rgba(6, 8, 12, 0.72)),
    url('../img/card-bg.webp?v=2026052122');
  background-size: auto, var(--bg-size, cover);
  background-position: center, var(--bg-x, center) var(--bg-y, center);
  background-repeat: no-repeat, no-repeat;
  will-change: background-position;
  color: var(--text);
  padding: clamp(2rem, 3.5vw, 2.75rem);
  border-radius: var(--radius);
  border: 1px solid var(--accent-dim);
  display: flex;
  flex-direction: column;
  isolation: isolate;
  overflow: hidden;
  box-shadow:
    0 28px 56px -26px rgba(20, 30, 50, 0.22),
    0 10px 24px -14px rgba(20, 30, 50, 0.1);
  transition:
    border-color 320ms var(--ease-out),
    transform 320ms var(--ease-out);
}

/* Card text needs dark shadow so it's readable on lighter overlay */
.service-card__title,
.service-card__desc {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

@media (max-width: 767px) {
  /* iOS Safari quirk — fall back to scroll attachment, cards still pretty */
  .service-card {
    background-attachment: scroll, scroll;
  }
}

/* Interior radial light from top — luxury showroom feel */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(ellipse 80% 50% at 50% 0%,
    rgba(230, 233, 236, 0.05) 0%,
    transparent 60%);
  pointer-events: none;
}

/* Hover — lift + border brighten + deeper shadow */
@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow:
      0 40px 80px -28px rgba(20, 30, 50, 0.28),
      0 18px 40px -14px rgba(20, 30, 50, 0.14);
  }
  .service-card:hover .service-card__rule { transform: scaleX(1.4); }
  .service-card:hover .service-card__arrow { transform: translateX(6px); }
  .service-card:hover .service-card__cta { color: var(--accent-bright); }
}

/* Header — italic number + thin silver line */
.service-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}
.service-card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  letter-spacing: -0.02em;
  color: var(--accent);
  opacity: 0.85;
  line-height: 1;
  flex-shrink: 0;
}
.service-card__rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right,
    var(--accent-dim) 0%,
    rgba(197, 200, 203, 0.05) 100%);
  transform-origin: left center;
  transition: transform 320ms var(--ease-out);
}

/* Title — Cormorant display */
.service-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.008em;
  color: var(--text);
  margin-bottom: clamp(0.85rem, 1.6vw, 1.2rem);
}

/* Description — body copy with breathing room */
.service-card__desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 60ch;
  margin-bottom: clamp(1.5rem, 2.8vw, 2rem);
}

/* CTA link — Manrope tracked uppercase, silver, arrow */
.service-card__cta {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  transition: color 200ms var(--ease-out);
}
.service-card__arrow {
  display: inline-block;
  font-style: normal;
  font-weight: 300;
  font-size: 0.9rem;
  transition: transform 320ms var(--ease-out);
}

/* Wide card — bigger title since more room */
.service-card--wide .service-card__title {
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  max-width: 28ch;
}
.service-card--wide .service-card__desc {
  font-size: 0.95rem;
  max-width: 70ch;
}

/* ============================================================
   FLEET — two pricing tier cards (S-Class + V-Class)
   ============================================================ */

.tier-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.tier {
  position: relative;
  background: var(--bg);
  color: var(--text);
  padding: clamp(1.5rem, 3.6vw, 3.5rem) clamp(1.5rem, 2.8vw, 2rem);
  border-radius: var(--radius);
  border: 1px solid var(--accent-dim);
  display: flex;
  flex-direction: column;
  isolation: isolate;
  overflow: hidden;                              /* clip image to card radius */
  box-shadow:
    0 24px 48px -28px rgba(20, 30, 50, 0.16),
    0 8px 20px -14px rgba(20, 30, 50, 0.08);
  transition:
    border-color 320ms var(--ease-out),
    transform 320ms var(--ease-out),
    box-shadow 320ms var(--ease-out);
}

/* Background photo — vehicle in luxury context */
.tier__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}
.tier__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  /* Lighter darken — let the location show through */
  filter: brightness(0.58) contrast(1.05) saturate(0.65);
  transition: transform 600ms var(--ease-out), filter 320ms var(--ease-out);
}

/* Softer vignette overlay — image visible, text still readable */
.tier::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(to bottom,
      rgba(10, 10, 12, 0.40) 0%,
      rgba(10, 10, 12, 0.58) 45%,
      rgba(8, 8, 10, 0.78) 100%),
    radial-gradient(ellipse 80% 55% at 50% 0%,
      rgba(230, 233, 236, 0.06) 0%,
      transparent 65%);
}

/* Hover — lift, brighten border, deepen shadow (emil-design-eng: gated, custom easing) */
@media (hover: hover) and (pointer: fine) {
  .tier:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow:
      0 44px 90px -28px rgba(20, 30, 50, 0.28),
      0 18px 40px -14px rgba(20, 30, 50, 0.16);
  }
  .tier:hover .tier__icon {
    filter: drop-shadow(0 6px 32px rgba(230, 233, 236, 0.55));
  }
  .tier:hover .tier__cta {
    border-color: var(--accent);
  }
}

/* Flagship variant — S-Class subtle premium treatment */
.tier--flagship {
  border-color: rgba(230, 233, 236, 0.45);
}
.tier--flagship::after {
  content: '';
  position: absolute;
  top: 0;
  left: 30%; right: 30%;
  height: 1px;
  background: linear-gradient(to right,
    transparent,
    var(--accent-bright),
    transparent);
  opacity: 0.7;
  pointer-events: none;
}

/* Editorial number 01/02 — italic Cormorant in top-left corner */
.tier__num {
  position: absolute;
  top: clamp(1.25rem, 2.4vw, 1.65rem);
  left: clamp(1.5rem, 2.5vw, 2rem);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--accent);
  letter-spacing: -0.02em;
  opacity: 0.7;
  line-height: 1;
}

/* Badge — top-right pill */
.tier__badge {
  position: absolute;
  top: clamp(1.25rem, 2.5vw, 1.75rem);
  right: clamp(1.25rem, 2.5vw, 1.75rem);
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(197, 200, 203, 0.08);
  border: 1px solid var(--accent-dim);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.85rem;
}

/* Mercedes star icon — bigger, with silver drop-shadow glow */
.tier__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(44px, 5.5vw, 58px);
  height: clamp(44px, 5.5vw, 58px);
  margin: 0 auto clamp(1rem, 2vw, 1.4rem);
  color: var(--accent);
  filter: drop-shadow(0 4px 24px rgba(197, 200, 203, 0.3));
  transition: filter 320ms var(--ease-out);
}
.tier__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Vehicle category name (large display) — readable on bg image */
.tier__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -0.008em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

/* Model — brighter silver, weight up */
.tier__model {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--accent-bright);
  text-align: center;
  margin-bottom: clamp(0.85rem, 1.8vw, 1.25rem);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* Specs row — full white, bolder */
.tier__specs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem 0.9rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: clamp(1rem, 2vw, 1.4rem);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}
.tier__dot { color: var(--accent-dim); }

/* Status indicator — availability state */
.tier__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  align-self: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.tier__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* Available — filled dot with subtle glow, accent-bright text */
.tier__status--available {
  color: var(--accent-bright);
}
.tier__status--available .tier__status-dot {
  background: var(--accent-bright);
  box-shadow: 0 0 8px rgba(230, 233, 236, 0.6);
  animation: status-pulse 3s ease-in-out infinite;
}

@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 6px rgba(230, 233, 236, 0.5); }
  50%      { box-shadow: 0 0 12px rgba(230, 233, 236, 0.9); }
}

/* Request only — amber tone, more prominent than muted */
.tier__status--request {
  color: #e9c373;
  font-weight: 500;
}
.tier__status--request .tier__status-dot {
  background: #e9c373;
  box-shadow: 0 0 8px rgba(233, 195, 115, 0.45);
  animation: status-pulse-amber 3s ease-in-out infinite;
}
@keyframes status-pulse-amber {
  0%, 100% { box-shadow: 0 0 6px rgba(233, 195, 115, 0.35); }
  50%      { box-shadow: 0 0 12px rgba(233, 195, 115, 0.75); }
}

/* Price — with top accent line + big italic display */
.tier__price {
  position: relative;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  letter-spacing: 0.04em;
  color: var(--accent-bright);
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.4rem);
  padding-top: clamp(0.85rem, 1.6vw, 1.1rem);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}
.tier__price::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 1px;
  background: linear-gradient(to right,
    transparent,
    var(--accent-dim),
    var(--accent),
    var(--accent-dim),
    transparent);
}
.tier__price em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.2rem, 4.3vw, 3rem);
  color: #ffffff;
  margin-left: 0.4em;
  display: inline-block;
  line-height: 1.1;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.8),
    0 4px 18px rgba(0, 0, 0, 0.6);
}

/* Description — slightly bolder + shadow for image bg readability */
.tier__desc {
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(245, 247, 250, 0.88);
  text-align: center;
  margin: 0 auto clamp(1.2rem, 2.4vw, 1.75rem);
  max-width: 34ch;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}

/* CTA — ghost button stretched to width inside card */
.tier__cta {
  margin-top: auto;                       /* push to bottom of card */
  align-self: center;
  min-width: 0;
  width: 100%;
  max-width: 18rem;
}

/* ============================================================
   WHY US — 2-col grid of 6 small cards on white
   Restrained variant — typography callouts, not icon-heading-text template
   ============================================================ */

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.why-statement {
  max-width: 36rem;
}
.why-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.2vw, 1rem);
}
.why-values li {
  background: var(--bg);
  color: var(--text);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: var(--radius);
  box-shadow:
    0 24px 56px -28px rgba(20, 30, 50, 0.14),
    0 8px 20px -12px rgba(20, 30, 50, 0.06);
}
.why-values h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.why-values p {
  font-size: 0.93rem;
  color: var(--text-muted);
  max-width: 52ch;
}

/* ============================================================
   ROUTES — single big black card with internal route table
   ============================================================ */

.routes-card {
  background: #fcfcfd;
  color: var(--ink-page);
  padding: 0;
  border-radius: var(--radius);
  border: 1px solid var(--line-light);
  list-style: none;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 28px 56px -28px rgba(20, 30, 50, 0.12),
    0 8px 20px -10px rgba(20, 30, 50, 0.06);
}
.routes-card::before,
.routes-card::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  pointer-events: none;
  opacity: 0.45;
  z-index: 1;
}
.routes-card::before {
  top: 14px; left: 14px;
  border-top: 1px solid var(--accent-deep-dim);
  border-left: 1px solid var(--accent-deep-dim);
}
.routes-card::after {
  bottom: 14px; right: 14px;
  border-bottom: 1px solid var(--accent-deep-dim);
  border-right: 1px solid var(--accent-deep-dim);
}
.routes-card > li { margin: 0; padding: 0; }

.route {
  display: grid;
  grid-template-columns: auto minmax(0, 1.8fr) auto auto auto;
  gap: clamp(0.85rem, 2vw, 1.75rem);
  align-items: center;
  padding: clamp(1.1rem, 2.2vw, 1.5rem) clamp(1.5rem, 3.5vw, 2.5rem);
  border-top: 1px solid var(--line-light);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: background-color 200ms var(--ease-out);
}
.routes-card > li:first-child .route { border-top: 0; }

.route__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  color: var(--accent-deep);
  letter-spacing: 0.05em;
  min-width: 1.6rem;
}
.route__dest {
  display: inline-flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.route__from {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--ink-page-muted);
}
.route__arrow {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  color: var(--accent-deep-dim);
  transition: transform 200ms var(--ease-out), color 200ms var(--ease-out);
  display: inline-block;
}
.route__to {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  letter-spacing: -0.005em;
  color: var(--ink-page);
}
.route__code {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: var(--page-bg);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.5rem;
  vertical-align: middle;
}
.route__meta {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-page-muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.route__price {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  color: var(--ink-page);
  text-align: right;
  white-space: nowrap;
  letter-spacing: -0.005em;
  font-variant-numeric: tabular-nums;
}
.route__price em {
  font-style: normal;
  font-size: 0.42em;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-left: 0.45em;
  vertical-align: 0.18em;
}
.route__action {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent-deep);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out);
  width: 1.25rem;
  display: inline-block;
}

@media (hover: hover) and (pointer: fine) {
  .route:hover { background-color: rgba(106, 109, 114, 0.05); }
  .route:hover .route__action { opacity: 1; transform: translateX(0); }
  .route:hover .route__to { color: var(--accent-deep); }
  .route:hover .route__arrow { transform: translateX(3px); color: var(--accent-deep); }
}

@media (max-width: 768px) {
  .route {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    grid-template-areas:
      "dest dest"
      "meta price";
    column-gap: 0.85rem;
    row-gap: 0.45rem;
    padding: 1.6rem 1.1rem 1.1rem;
  }
  /* Roman numeral as a small chapter mark in the top-left corner — out of the grid flow */
  .route__num {
    position: absolute;
    top: 0.55rem;
    left: 0.85rem;
    font-size: 0.85rem;
    opacity: 0.55;
    min-width: 0;
  }
  .route__dest {
    grid-area: dest;
    flex-wrap: wrap;
    gap: 0.4rem 0.55rem;
    align-items: baseline;
    min-width: 0;
  }
  .route__from { font-size: 1rem; }
  .route__to {
    font-size: 1.1rem;
    line-height: 1.25;
  }
  .route__code {
    display: inline-block;
    margin-left: 0.4rem;
    font-size: 0.55rem;
    padding: 0.18rem 0.4rem;
    vertical-align: middle;
  }
  .route__meta {
    grid-area: meta;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    align-self: end;
  }
  .route__price {
    grid-area: price;
    font-size: 1.2rem;
  }
  .route__action { display: none; }
}

/* ============================================================
   TARIFFS — hourly / km / wait card
   ============================================================ */

.tariff-card {
  background: #fcfcfd;
  color: var(--ink-page);
  padding: clamp(1rem, 2.5vw, 1.75rem) clamp(1.75rem, 3.5vw, 2.75rem);
  border-radius: var(--radius);
  border: 1px solid var(--line-light);
  box-shadow:
    0 28px 56px -28px rgba(20, 30, 50, 0.12),
    0 8px 20px -10px rgba(20, 30, 50, 0.06);
  position: relative;
}
.tariff-card::before,
.tariff-card::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  pointer-events: none;
  opacity: 0.45;
}
.tariff-card::before {
  top: 14px; left: 14px;
  border-top: 1px solid var(--accent-deep-dim);
  border-left: 1px solid var(--accent-deep-dim);
}
.tariff-card::after {
  bottom: 14px; right: 14px;
  border-bottom: 1px solid var(--accent-deep-dim);
  border-right: 1px solid var(--accent-deep-dim);
}
.tariff {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding-block: clamp(1.25rem, 2.5vw, 1.75rem);
  border-top: 1px solid var(--line-light);
}
.tariff:first-child { border-top: 0; }
.tariff-text { display: flex; flex-direction: column; gap: 0.4rem; }
.tariff-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  line-height: 1.15;
  letter-spacing: -0.008em;
  color: var(--ink-page);
}
.tariff-meta {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--ink-page-muted);
  max-width: 54ch;
}
.tariff-value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink-page);
  white-space: nowrap;
}
.tariff-value em {
  font-style: normal;
  font-size: 0.45em;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-left: 0.4em;
  vertical-align: 0.1em;
}

/* ============================================================
   TESTIMONIAL — single black card centered with quote
   ============================================================ */

.section--testimonial {
  background: var(--bg);
  color: var(--text);
  padding-block: var(--section-y-l);

  /* DEEP BORDEAUX — editorial color break, scoped to testimonial only */
  --accent:        #7a2f3f;
  --accent-bright: #a4485a;
  --accent-dim:    rgba(122, 47, 63, 0.45);
}
.testimonial-card {
  max-width: 62rem;
  margin: 0 auto;
  background: transparent;
  color: var(--text);
  padding: clamp(1rem, 3vw, 2rem);
  text-align: center;
  box-shadow: none;
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.7rem, 4.2vw, 2.9rem);
  line-height: 1.25;
  color: var(--text);
}
.testimonial-card blockquote p {
  position: relative;
  display: inline-block;
}
.testimonial-card blockquote p::before {
  content: '\201C';
  position: absolute;
  top: -0.35em; left: -0.7em;
  font-size: 1.85em;
  color: var(--accent);
  opacity: 0.75;
  font-style: normal;
  font-weight: 500;
  text-shadow: 0 0 28px rgba(122, 47, 63, 0.4);    /* subtle bordeaux glow */
}
.testimonial-card footer {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
.testimonial-card footer .line {
  width: 40px; height: 1px; background: var(--accent);
}
.testimonial-card cite {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--text-muted);
}

/* ============================================================
   BOOKING CTA — single black card with content centered
   ============================================================ */

.booking-card {
  max-width: 58rem;
  margin: 0 auto;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(230, 233, 236, 0.07) 0%, transparent 65%),
    var(--bg);
  color: var(--text);
  padding: clamp(3rem, 6.5vw, 5rem) clamp(1.75rem, 5vw, 4rem);
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid var(--accent-dim);
  box-shadow:
    0 36px 72px -32px rgba(20, 30, 50, 0.32),
    0 14px 28px -14px rgba(20, 30, 50, 0.16);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Corner brackets — top-left + bottom-right (editorial framing) */
.booking-card::before,
.booking-card::after {
  content: '';
  position: absolute;
  width: 36px;
  height: 36px;
  pointer-events: none;
  z-index: 2;
}
.booking-card::before {
  top: 18px;
  left: 18px;
  border-top: 1px solid var(--accent);
  border-left: 1px solid var(--accent);
}
.booking-card::after {
  bottom: 18px;
  right: 18px;
  border-bottom: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
}
/* Giant italic watermark behind content */
.booking-card__bg-glyph {
  position: absolute;
  bottom: -2.5rem;
  right: -1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(11rem, 22vw, 17rem);
  line-height: 0.85;
  color: var(--accent);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
/* Eyebrow with twin marks */
.booking-card__eyebrow {
  color: var(--accent);
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  position: relative;
  z-index: 1;
}
.booking-card__eyebrow::before { content: none; }
.booking-card__mark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.25em;
  letter-spacing: 0;
  color: var(--accent);
  line-height: 1;
  opacity: 0.85;
}
/* Title with hairline divider between lines */
.booking-card__title {
  color: var(--text);
  margin: 0 auto !important;
  max-width: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.85rem, 1.6vw, 1.2rem);
  position: relative;
  z-index: 1;
}
.booking-card__title em { color: var(--accent); }
.booking-card__divider {
  display: block;
  width: 64px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-dim) 50%, transparent);
}
.booking-card .lead {
  color: var(--text-muted);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.booking-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 2.75rem);
  position: relative;
  z-index: 1;
}
/* Features strip — divided by hairline */
.booking-card__features {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.85rem, 2.5vw, 2rem);
  padding-top: clamp(1.75rem, 3vw, 2.25rem);
  margin: clamp(1.75rem, 3vw, 2.25rem) auto 0;
  border-top: 1px solid var(--accent-dim);
  max-width: 38rem;
  position: relative;
  z-index: 1;
}
.booking-card__features span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
}
.booking-card__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
}
/* Luxury seal */
.booking-card__seal {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  margin: clamp(1.6rem, 2.5vw, 2rem) auto 0;
  padding: 0.65rem 1.4rem;
  border-top: 1px solid var(--accent-dim);
  border-bottom: 1px solid var(--accent-dim);
  position: relative;
  z-index: 1;
}
.booking-card__seal-coords {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.booking-card__seal-divider {
  width: 14px;
  height: 1px;
  background: var(--accent-dim);
}
.booking-card__seal-year {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--accent);
}
.booking-card .booking-meta {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}
/* Index home page uses the new decorated structure → hide legacy meta there.
   Tratte pages use the legacy structure → keep meta visible. */
.booking-card:has(.booking-card__seal) .booking-meta { display: none; }

/* Legacy markup (tratte pages) — dark card with light text */
.booking-card .eyebrow {
  color: var(--accent);
  justify-content: center;
  position: relative;
  z-index: 1;
}
.booking-card .eyebrow::before { background: var(--accent-dim); }
.booking-card .section-h2 {
  color: var(--text);
  margin: 0 auto;
  max-width: none;
  position: relative;
  z-index: 1;
}
.booking-card .section-h2 em { color: var(--accent); }
.booking-card .lead {
  color: var(--text-muted);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  .booking-card::before,
  .booking-card::after { width: 24px; height: 24px; top: 12px; left: 12px; }
  .booking-card::after { top: auto; left: auto; bottom: 12px; right: 12px; }
  .booking-card__features {
    flex-direction: column;
    gap: 0.6rem;
  }
}

/* ============================================================
   FOOTER — editorial close, no navigation list
   Brand wordmark · contact (tel+email) · address · legal row
   ============================================================ */

.site-footer {
  background: var(--bg-deep);
  color: var(--text);
  padding: clamp(1.75rem, 3.5vh, 2.5rem) 0 1.4rem;
  border-top: 1px solid var(--line);
}
.footer-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  text-align: left;
}

/* Top row: brand left | contacts right */
.footer-row-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.footer-mark {
  font-family: 'Cinzel', var(--font-display);
  font-weight: 500;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent-bright);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  margin: 0;
  padding-left: 0.42em;
}
.footer-mark .dot {
  color: var(--accent);
  margin: 0 0.05em;
  opacity: 0.75;
}
.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--text-muted);
  letter-spacing: 0.01em;
  margin: 0;
}

/* Contacts column on the right — tel/email inline, address below */
.footer-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  text-align: right;
}
.footer-contacts__value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  letter-spacing: -0.005em;
  color: var(--accent-bright);
  text-decoration: none;
  transition: color 200ms var(--ease-out);
  line-height: 1.3;
}
@media (hover: hover) and (pointer: fine) {
  .footer-contacts__value:hover { color: var(--text); }
}
.footer-address {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin: 0.2rem 0 0;
  line-height: 1.4;
}

/* Hairline */
.footer-rule {
  width: 100%;
  height: 1px;
  border: 0;
  background: linear-gradient(to right,
    transparent 0%, rgba(197, 200, 203, 0.22) 50%, transparent 100%);
  margin: 0;
}

/* Bottom row — copyright left, legal right */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.footer-copy { margin: 0; }
.footer-copy__uid {
  letter-spacing: 0.12em;
  font-variant-numeric: tabular-nums;
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-legal a {
  color: var(--text-faint);
  transition: color 160ms var(--ease-out);
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .footer-legal a:hover { color: var(--accent-bright); }
}

@media (max-width: 700px) {
  .footer-row-top {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .footer-contacts {
    align-items: flex-start;
    text-align: left;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }
}

/* ============================================================
   LUXURY DECORATIONS — editorial background marks
   Restrained, layered, low-opacity. Emil-style "invisible details".
   ============================================================ */

/* A. Giant italic Roman numeral as section watermark */
.section-mark {
  position: absolute;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  line-height: 0.85;
  color: var(--accent-deep);
  opacity: 0.13;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.section-mark--num {
  font-size: clamp(14rem, 30vw, 26rem);
}
.section-mark--glyph {
  font-size: clamp(18rem, 36vw, 32rem);
  opacity: 0.1;
}
/* Dark surfaces */
.section-mark--on-dark {
  color: var(--accent);
  opacity: 0.12;
}
/* Positioning helpers — keep inside section bounds */
.section-mark--bottom-right { right: clamp(0.5rem, 2vw, 2rem);  bottom: clamp(0.5rem, 2vw, 2rem); }
.section-mark--bottom-left  { left:  clamp(0.5rem, 2vw, 2rem);  bottom: clamp(0.5rem, 2vw, 2rem); }
.section-mark--top-right    { right: clamp(0.5rem, 2vw, 2rem);  top: clamp(1rem, 3vw, 2.5rem); }
.section-mark--top-left     { left:  clamp(0.5rem, 2vw, 2rem);  top: clamp(1rem, 3vw, 2.5rem); }
.section-mark--center       { left: 50%; top: 50%; transform: translate(-50%, -50%); }

/* B. Vertical tracked-out label — runs along section edge */
.section-label-vertical {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.7rem, 0.95vw, 0.82rem);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--accent-deep);
  opacity: 0.58;
  writing-mode: vertical-rl;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
}
.section-label-vertical::before,
.section-label-vertical::after {
  content: '';
  display: block;
  width: 1px;
  height: clamp(28px, 5vw, 48px);
  background: currentColor;
  opacity: 0.55;
}
.section-label-vertical--right { right: clamp(1rem, 3vw, 2.5rem); }
.section-label-vertical--left  { left:  clamp(1rem, 3vw, 2.5rem); }

/* Mobile — vertical labels collide with content and feel busy; hide.
   Section watermarks shrink so they don't overflow narrow viewports. */
@media (max-width: 768px) {
  .section-label-vertical { display: none; }
  .section-mark--num   { font-size: clamp(7rem, 32vw, 12rem); }
  .section-mark--glyph { font-size: clamp(9rem, 38vw, 14rem); }
}

/* C. Luxury seal — small precision plate (coordinates + year) */
.luxury-seal {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.95rem 1.4rem;
  border-top: 1px solid var(--accent-deep-dim);
  border-bottom: 1px solid var(--accent-deep-dim);
}
.luxury-seal__coords {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-variant-numeric: tabular-nums;
}
.luxury-seal__divider {
  width: 16px;
  height: 1px;
  background: var(--accent-deep-dim);
}
.luxury-seal__year {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--accent-deep);
}
/* Variant — on dark surfaces (booking summary card etc.) */
.luxury-seal--on-dark .luxury-seal__coords,
.luxury-seal--on-dark .luxury-seal__year {
  color: var(--accent);
}
.luxury-seal--on-dark {
  border-top-color: var(--accent-dim);
  border-bottom-color: var(--accent-dim);
}
.luxury-seal--on-dark .luxury-seal__divider { background: var(--accent-dim); }

/* Make sections position-relative + overflow-hidden so marks stay inside */
.section--why,
.section--routes,
.section--testimonial,
.section--tariff,
.section--services,
.section--about {
  position: relative;
  overflow: hidden;
}
/* Ensure section content stacks above the decorative marks */
.section--why > .container,
.section--routes > .container,
.section--testimonial > .container,
.section--tariff > .container,
.section--services > .container,
.section--about > .container {
  position: relative;
  z-index: 2;
}

/* ============================================================
   REVEAL-ON-SCROLL
   ============================================================ */

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
[data-reveal-delay="1"] { transition-delay: 0.06s; }
[data-reveal-delay="2"] { transition-delay: 0.12s; }
[data-reveal-delay="3"] { transition-delay: 0.18s; }
[data-reveal-delay="4"] { transition-delay: 0.24s; }
[data-reveal-delay="5"] { transition-delay: 0.30s; }

/* ============================================================
   SHARED ENTRANCE
   ============================================================ */
@keyframes drift-in {
  from { opacity: 0; transform: translate3d(0, 22px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0,    0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1023px) {
  .hero__inner { grid-template-columns: 1fr; padding-top: clamp(7rem, 18vh, 10rem); }
  .hero__meta  { display: none; }
  .hero__detail { justify-self: center; max-width: 360px; }

  .tier-grid { grid-template-columns: 1fr; gap: 1rem; }
  .tier { padding: 1.4rem 1.4rem; }
  .tier__name { font-size: 1.55rem; }
  .tier__model { margin-bottom: 0.85rem; }
  .tier__status { margin-bottom: 1.1rem; }
  .tier__desc { margin-bottom: 1.1rem; font-size: 0.9rem; }

  .why-values { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card--wide { grid-column: auto; }    /* no special spanning on mobile */

  /* L'Esperienza — stack on mobile */
  .experience-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .experience-card__media { aspect-ratio: 4 / 5; }   /* slightly less tall on mobile */

  /* Same-bg transitions on mobile — slightly tighter than default, not collapsed.
     Default --section-y = clamp(5rem, 12vh, 9rem); these are ~70% of that. */
  .section--services { padding-bottom: clamp(3rem, 7vw, 4.5rem); }
  .section--about    { padding-top:    clamp(3rem, 7vw, 4.5rem); }
  .section--routes   { padding-bottom: clamp(3rem, 7vw, 4.5rem); }
  .section--tariff   { padding-top:    clamp(3rem, 7vw, 4.5rem); }
  .section--testimonial { padding-bottom: clamp(3rem, 7vw, 4.5rem); }
  .section--booking     { padding-top:    clamp(3rem, 7vw, 4.5rem); }

  /* About — stack vertically, content (title) first then portrait */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-content  { order: 1; }
  .about-portrait { order: 2; position: static; justify-self: center; }
  .about-portrait__frame {
    max-width: 360px;                        /* keep portrait, don't dominate viewport */
    aspect-ratio: 3 / 4;                     /* match image orientation — no awkward crop */
    margin: 0 auto;
  }
  .about-stats { grid-template-columns: 1fr; gap: 1rem; }
  .about-stat { padding: 0.5rem 0; border-bottom: 1px solid rgba(0,0,0,.08); }
  .about-stat:last-child { border-bottom: none; }
  /* Mobile uses smaller image (still JS-positioned, just lighter file) */
  .service-card {
    background-image:
      linear-gradient(rgba(6, 8, 12, 0.62), rgba(6, 8, 12, 0.72)),
      url('../img/card-bg-mobile.webp?v=2026052122');
  }

  .route {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "from   price"
      "to     price"
      "meta   meta";
    gap: 0.25rem 1rem;
    align-items: baseline;
  }
  .route .from  { grid-area: from; }
  .route .to    { grid-area: to; }
  .route .meta  { grid-area: meta; font-size: 0.68rem; margin-top: 0.4rem; }
  .route .price { grid-area: price; align-self: center; }
  .route .arrow { display: none; }

  .tariff { grid-template-columns: 1fr; gap: 0.75rem; }
  .tariff-value { align-self: start; }
}

@media (max-width: 880px) {
  .quote-fields {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .quote-submit { grid-column: 1 / -1; width: 100%; }
}
@media (max-width: 560px) {
  .hero__sub { letter-spacing: 0.16em; }
  .hero__cta { flex-direction: column; width: 100%; align-items: stretch; }
  .hero__cta .btn { width: 100%; min-width: 0; }
  .quote-fields { grid-template-columns: 1fr; }

  .booking-cta { flex-direction: column; align-items: stretch; }
  .booking-cta .btn { width: 100%; min-width: 0; }

  .hero__frame::before, .hero__frame::after { width: 20px; height: 20px; }

  .testimonial-card blockquote p::before { left: 0; top: -1em; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .hero__frame,
  .hero__mark,
  .hero__meta,
  .hero__headline,
  .hero__sub,
  .hero__cta,
  .hero__detail {
    animation: gentle-fade 500ms ease-out forwards !important;
    transform: none !important;
  }
  .hero__line { opacity: 1; transform: scaleX(1); animation: none !important; }
  .hero__grain { opacity: 0.05; animation: none !important; }

  .hero__bg,
  .hero__lights,
  .hero__motes,
  .hero-ticker__track,
  .tier__status-dot,
  .section-bg-star { animation: none !important; transform: none !important; }
  .hero__photo { background-attachment: scroll !important; }
  .hero__motes span { opacity: 0; }
  .hero-ticker { animation: gentle-fade 500ms ease-out forwards !important; }

  [data-reveal] { transition: opacity 400ms ease-out !important; transform: none !important; }
  [data-reveal].is-visible { transform: none !important; }

  .service,
  .route { transition: none !important; }

  .btn:active { transform: none !important; }
  .btn__arrow { transition: none !important; }
}

@keyframes gentle-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   BOOKING PAGE (/prenotazione.html)
   ============================================================ */

/* ============================================================
   BOOKING — "Carta di servizio" editorial concierge brief
   Surfaces: dark hero → cream page → ink-dark sidebar card
   Inputs: underline-only (matches .quote-card DNA from home hero)
   Step legends: italic Roman numerals + Cormorant chapter titles
   ============================================================ */

/* ----- 1. HERO — refined editorial open --------------------- */
.booking-hero {
  background: var(--bg);
  color: var(--text);
  padding: clamp(4rem, 11vh, 7rem) 0 clamp(3.5rem, 9vh, 5.5rem);
  --accent: #c5c8cb;
  --accent-bright: #e6e9ec;
  --accent-dim: rgba(197, 200, 203, 0.45);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.booking-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 45% 40% at 22% 32%, rgba(230,233,236,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 50% 45% at 78% 68%, rgba(230,233,236,0.05) 0%, transparent 70%),
    linear-gradient(180deg, #0a0a0a 0%, #07070a 100%);
}
/* Editorial top + bottom rules — frame the chapter */
.booking-hero::after {
  content: '';
  position: absolute;
  inset: clamp(1.5rem, 4vw, 3.25rem) clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--accent-dim);
  border-bottom: 1px solid var(--accent-dim);
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}
.booking-hero .container {
  max-width: 62rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.booking-hero .route-breadcrumb {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(245, 247, 250, 0.5);
  margin: 0 0 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.booking-hero .route-breadcrumb a {
  color: rgba(245, 247, 250, 0.66);
  transition: color 180ms var(--ease-out);
}
.booking-hero .route-breadcrumb a:hover { color: var(--accent-bright); }
.booking-hero .route-breadcrumb span[aria-hidden] {
  color: var(--accent-dim);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 0.85rem;
}
/* Concierge eyebrow — small italic mark above title */
.booking-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.64rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
}
.booking-hero__eyebrow span[aria-hidden] {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0;
  color: var(--accent);
  opacity: 0.85;
}
.booking-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--accent-bright);
  margin: 0 0 1.4rem;
}
.booking-hero h1 em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  margin-top: 0.25rem;
}
.booking-hero .lead {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 38rem;
  margin: 0;
}

/* ----- 2. TRUST BADGES — editorial triptych ----------------- */
.booking-trust {
  background: var(--page-bg);
  padding: clamp(2.2rem, 4.5vh, 3.25rem) 0;
  border-bottom: 1px solid var(--line-light);
  position: relative;
}
.booking-trust__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: start;
}
.booking-trust__item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-left: clamp(2.5rem, 4vw, 3.5rem);
  position: relative;
}
.booking-trust__item::before {
  content: attr(data-num);
  position: absolute;
  left: 0;
  top: -0.2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  color: var(--accent-deep);
  line-height: 1;
  letter-spacing: 0.05em;
}
.booking-trust__item::after {
  content: '';
  position: absolute;
  left: clamp(2.45rem, 3.95vw, 3.45rem);
  top: 0.55rem;
  width: 1px;
  height: 1rem;
  background: var(--accent-deep-dim);
  opacity: 0.5;
}
.booking-trust__icon { display: none; }
.booking-trust__item > div {
  display: flex;
  flex-direction: column;
}
.booking-trust__item strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--ink-page);
  margin-bottom: 0.25rem;
}
.booking-trust__item em {
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--ink-page-muted);
}
@media (max-width: 767px) {
  .booking-trust__inner { grid-template-columns: 1fr; gap: 1.25rem; }
  .booking-trust__item { padding-left: 2.5rem; }
  .booking-trust__item::after { left: 2.45rem; }
}

/* Mobile — hero first (compact), then form immediately below, then trust badges */
@media (max-width: 900px) {
  .booking-page main {
    display: flex;
    flex-direction: column;
  }
  .booking-page .booking-hero    {
    order: 1;
    padding: clamp(2rem, 5vh, 3rem) 0 clamp(1.25rem, 2.5vh, 1.75rem);
  }
  .booking-page .booking-hero .route-breadcrumb { margin-bottom: 1rem; }
  .booking-page .booking-hero__eyebrow { margin-bottom: 0.9rem; }
  .booking-page .booking-hero h1 {
    font-size: clamp(2rem, 7vw, 2.6rem);
    margin-bottom: 0.9rem;
  }
  .booking-page .booking-hero .lead {
    font-size: 0.95rem;
    line-height: 1.55;
  }
  /* Suppress the editorial top/bottom rules on mobile — they crowd the compact header */
  .booking-page .booking-hero::after { display: none; }

  .booking-page .booking-section { order: 2; padding-top: clamp(1.25rem, 3vh, 2rem); }
  .booking-page .booking-trust   {
    order: 3;
    padding: clamp(1.5rem, 3vh, 2.5rem) 0;
    border-top: 1px solid var(--line-light);
    border-bottom: 0;
  }
}

/* ----- 3. BOOKING LAYOUT ------------------------------------ */
.booking-section {
  background: var(--page-bg);
  padding: clamp(3.5rem, 8vh, 6rem) 0 clamp(4rem, 10vh, 7rem);
  position: relative;
  isolation: isolate;
}
.booking-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 30% 60% at 8% 22%, rgba(106, 109, 114, 0.05) 0%, transparent 65%),
    radial-gradient(ellipse 35% 60% at 92% 80%, rgba(106, 109, 114, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

/* ----- 4. FORM — editorial paper panel ---------------------- */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.75rem);
  background: #fcfcfd;
  padding: clamp(1.75rem, 3.5vw, 3rem);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow:
    0 32px 64px -32px rgba(20, 30, 50, 0.12),
    0 10px 24px -12px rgba(20, 30, 50, 0.06);
  position: relative;
}
/* Decorative hairline marks — top-left + bottom-right corners */
.booking-form::before,
.booking-form::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  pointer-events: none;
  opacity: 0.5;
}
.booking-form::before {
  top: 14px;
  left: 14px;
  border-top: 1px solid var(--accent-deep-dim);
  border-left: 1px solid var(--accent-deep-dim);
}
.booking-form::after {
  bottom: 14px;
  right: 14px;
  border-bottom: 1px solid var(--accent-deep-dim);
  border-right: 1px solid var(--accent-deep-dim);
}

/* Chapter — italic Roman + Cormorant title + hairline rule */
.booking-step {
  border: 0;
  padding: 0;
  margin: 0;
}
.booking-step legend {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: baseline;
  gap: clamp(0.85rem, 1.5vw, 1.2rem);
  width: 100%;
  margin-bottom: clamp(1.6rem, 2.8vw, 2.2rem);
}
.booking-step__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  letter-spacing: 0.04em;
  color: var(--accent-deep);
  line-height: 1;
  min-width: 1.6rem;
}
.booking-step__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--ink-page);
}
.booking-step__rule {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right,
    var(--accent-deep-dim) 0%,
    rgba(106, 109, 114, 0.12) 40%,
    transparent 100%);
  align-self: center;
  transform: translateY(-3px);
}

/* Editorial segmented control (service type) */
.booking-segments {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid var(--line-light);
  margin-bottom: 0.25rem;
}
.booking-segments--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 36rem;
}
.booking-segment {
  position: relative;
  cursor: pointer;
}
.booking-segment input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.booking-segment span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  letter-spacing: 0.005em;
  padding: 0.95rem 1rem 1.15rem;
  background: transparent;
  color: var(--ink-page-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition:
    color 240ms var(--ease-out),
    border-color 240ms var(--ease-out),
    transform 240ms var(--ease-out);
  text-align: center;
  line-height: 1.25;
}
.booking-segment input:checked + span {
  color: var(--ink-page);
  border-bottom-color: var(--ink-page);
}
@media (hover: hover) and (pointer: fine) {
  .booking-segment:hover input:not(:checked) + span {
    color: var(--ink-page);
    border-bottom-color: var(--accent-deep-dim);
  }
}
.booking-segment input:focus-visible + span {
  outline: 1px solid var(--accent-deep);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Field rows */
.booking-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 1.25rem 1.85rem;
}
.booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  position: relative;
  cursor: pointer;
}
.booking-field input,
.booking-field select,
.booking-field textarea,
.booking-field label { cursor: auto; }

.booking-field select,
.booking-field label[for] { cursor: pointer; }
.booking-field:last-child { margin-bottom: 0; }

/* Hint below a field — guides discovery (e.g. "Tratta personalizzata in fondo") */
.booking-field__hint,
.booking-field__help {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ink-page-muted);
  margin: 0.15rem 0 0;
}
.booking-field__hint {
  background: linear-gradient(to right, rgba(106, 109, 114, 0.06) 0%, rgba(106, 109, 114, 0) 100%);
  padding: 0.55rem 0.85rem;
  border-left: 2px solid var(--accent-deep);
  border-radius: 0 6px 6px 0;
  color: var(--ink-page);
}
.booking-field__hint span[aria-hidden] {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--accent-deep);
  line-height: 1.2;
  flex-shrink: 0;
}
.booking-field__hint em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--ink-page);
}
.booking-field__help-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-deep);
  margin-top: 0.55rem;
  flex-shrink: 0;
}
.booking-field__help.is-warning {
  color: #8a2a2a;
}
.booking-field__help.is-warning .booking-field__help-dot {
  background: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
}

/* Label — clear, scannable, with editorial mark */
.booking-field label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--ink-page);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.booking-field label::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-deep);
  flex-shrink: 0;
}
.booking-field label .optional {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--ink-page-faint);
  font-size: 0.88rem;
  margin-left: auto;
}

/* Field panel — clearly tappable white surface with soft border */
.booking-field input,
.booking-field select,
.booking-field textarea {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.45;
  padding: 0.9rem 1.05rem;
  background: #fff;
  border: 1px solid rgba(20, 22, 28, 0.16);
  border-radius: 10px;
  color: var(--ink-page);
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6),
              0 1px 2px rgba(20, 30, 50, 0.03);
  transition:
    border-color 200ms var(--ease-out),
    box-shadow 200ms var(--ease-out),
    background-color 200ms var(--ease-out);
}
.booking-field input::placeholder,
.booking-field textarea::placeholder {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: rgba(20, 22, 28, 0.42);
  font-size: 1rem;
  letter-spacing: 0;
}
.booking-field textarea {
  resize: vertical;
  min-height: 110px;
  padding: 0.85rem 1.05rem;
  line-height: 1.55;
}
.booking-field input:hover,
.booking-field select:hover,
.booking-field textarea:hover {
  border-color: rgba(20, 22, 28, 0.32);
}
.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: var(--ink-page);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 0 0 3px rgba(20, 22, 28, 0.08);
}
.booking-field input:focus-visible,
.booking-field select:focus-visible,
.booking-field textarea:focus-visible {
  outline: none;
}
/* Filled state — subtle confirmation the field has a value */
.booking-field input:not(:placeholder-shown),
.booking-field textarea:not(:placeholder-shown) {
  border-color: rgba(20, 22, 28, 0.32);
  background-color: #fbfbfd;
}
.booking-field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-page) 50%),
                    linear-gradient(135deg, var(--ink-page) 50%, transparent 50%);
  background-position: calc(100% - 16px) 55%, calc(100% - 10px) 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  background-color: #fff;
  padding-right: 2.25rem;
  cursor: pointer;
}
.booking-field select option {
  font-family: var(--font-body);
  background: #fff;
  color: var(--ink-page);
}
/* datetime hints */
.booking-field input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  filter: opacity(0.55);
  cursor: pointer;
  transition: filter 160ms var(--ease-out);
}
.booking-field input[type="datetime-local"]::-webkit-calendar-picker-indicator:hover {
  filter: opacity(1);
}

/* Hide irrelevant fields by service mode */
.booking-form[data-service="transfer"] [data-show-for]:not([data-show-for~="transfer"]),
.booking-form[data-service="ore"]      [data-show-for]:not([data-show-for~="ore"]),
.booking-form[data-service="andata-ritorno"] [data-show-for]:not([data-show-for~="andata-ritorno"]),
.booking-form[data-service="tour"]     [data-show-for]:not([data-show-for~="tour"]) {
  display: none;
}

/* Checkbox — editorial square + sharp tick */
.booking-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-page-muted);
  margin-top: 1.2rem;
}
.booking-checkbox input {
  appearance: none;
  -webkit-appearance: none;
  margin: 0.15rem 0 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--accent-deep);
  border-radius: 3px;
  background: transparent;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition:
    background-color 180ms var(--ease-out),
    border-color 180ms var(--ease-out);
}
.booking-checkbox input:checked {
  background-color: var(--ink-page);
  border-color: var(--ink-page);
}
.booking-checkbox input:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border-right: 1.5px solid var(--accent-bright);
  border-bottom: 1.5px solid var(--accent-bright);
  transform: rotate(45deg);
}
.booking-checkbox input:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 3px;
}
.booking-checkbox a {
  color: var(--ink-page);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--accent-deep-dim);
  transition: text-decoration-color 160ms var(--ease-out);
}
.booking-checkbox a:hover { text-decoration-color: var(--ink-page); }
.booking-checkbox--inline {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  color: var(--ink-page);
}
.booking-checkbox--inline em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-page-muted);
  font-size: 0.92rem;
  margin-left: 0.35rem;
}

/* ============================================================
   Booking — Google Maps Embed preview (route A → B)
   Shows below the From/To row once a route is selected or both addresses are filled.
   ============================================================ */
.booking-map {
  margin-top: 1.25rem;
  border: 1px solid var(--accent-deep-dim);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--page-bg);
  box-shadow: 0 12px 32px -20px rgba(20, 30, 50, 0.18);
}
.booking-map[hidden] { display: none; }
.booking-map__inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--accent-deep-dim);
}
.booking-map__inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 600px) {
  .booking-map__inner { aspect-ratio: 4 / 3; }
}

/* Google Places Autocomplete dropdown (.pac-container) — match form aesthetic */
.pac-container {
  margin-top: 0.35rem;
  border: 1px solid var(--accent-deep-dim);
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 40px -22px rgba(20, 30, 50, 0.22);
  font-family: var(--font-body);
  background: var(--bg);
  z-index: 1100;
}
.pac-item {
  padding: 0.55rem 0.85rem;
  border-top-color: var(--accent-deep-dim);
  color: var(--ink-page);
  font-size: 0.9rem;
  cursor: pointer;
}
.pac-item:hover, .pac-item-selected {
  background: rgba(106, 109, 114, 0.06);
}
.pac-item-query {
  color: var(--ink-page);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.98rem;
}
.pac-matched { color: var(--accent-deep); font-weight: 600; }
.pac-icon { display: none; }
.pac-logo:after { margin: 0.5rem 0.85rem; opacity: 0.55; }

/* Location autocomplete */
.booking-field--autocomplete { position: relative; }
.autocomplete-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 30;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  box-shadow:
    0 24px 48px -16px rgba(20, 30, 50, 0.18),
    0 8px 16px -8px rgba(20, 30, 50, 0.08);
  max-height: 320px;
  overflow-y: auto;
  padding: 0.4rem;
}
.autocomplete-list[hidden] { display: none; }
.autocomplete-list .ac-group {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-deep);
  padding: 0.75rem 0.85rem 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.autocomplete-list .ac-group::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--accent-deep-dim);
}
.autocomplete-list li.ac-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.85rem;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-page);
  transition: background-color 120ms var(--ease-out);
}
.autocomplete-list li.ac-item:hover,
.autocomplete-list li.ac-item.is-focused {
  background: var(--page-bg-warm);
}
.autocomplete-list .ac-item__icon {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent-deep);
  width: 1.5rem;
  flex-shrink: 0;
  text-align: center;
}
.autocomplete-list .ac-item__name { flex: 1; }
.autocomplete-list .ac-item__code {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--ink-page-muted);
}

/* Submit — primary ink-dark, mirror-silver text */
.booking-submit {
  width: 100%;
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  padding-block: 1.2rem;
  margin-top: 0.6rem;
  background-color: var(--ink-page);
  color: var(--accent-bright);
  border-color: var(--ink-page);
}
@media (hover: hover) and (pointer: fine) {
  .booking-submit:hover {
    background-color: #1f232c;
    border-color: #1f232c;
    color: var(--accent-bright);
  }
}
.booking-submit:focus-visible {
  background-color: #1f232c;
  border-color: #1f232c;
  outline: 1px solid var(--accent-deep);
  outline-offset: 4px;
}
.booking-disclaimer {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-page-muted);
  text-align: center;
  margin: 1.3rem auto 0;
  max-width: 38rem;
}

/* Honeypot — visually hidden but reachable to bots (avoid display:none) */
.booking-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Status panel after submit */
.booking-status {
  margin: 1.25rem 0 0;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.55;
  text-align: center;
  border: 1px solid transparent;
}
.booking-status.is-success {
  background: rgba(46, 125, 50, 0.06);
  border-color: rgba(46, 125, 50, 0.28);
  color: #1b4e21;
}
.booking-status.is-success strong {
  font-family: var(--font-display);
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
  color: #163d18;
}
.booking-status.is-error {
  background: rgba(192, 57, 43, 0.06);
  border-color: rgba(192, 57, 43, 0.28);
  color: #8a2a2a;
}
.booking-status a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.booking-submit[disabled] {
  opacity: 0.75;
  cursor: progress;
}

/* Success card — replaces the form after a confirmed submission */
.booking-success {
  background: #fcfcfd;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.75rem, 4vw, 3rem);
  position: relative;
  text-align: center;
  box-shadow:
    0 32px 64px -32px rgba(20, 30, 50, 0.12),
    0 10px 24px -12px rgba(20, 30, 50, 0.06);
  overflow: hidden;
}
.booking-success::before,
.booking-success::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  pointer-events: none;
  opacity: 0.5;
}
.booking-success::before {
  top: 14px;
  left: 14px;
  border-top: 1px solid var(--accent-deep-dim);
  border-left: 1px solid var(--accent-deep-dim);
}
.booking-success::after {
  bottom: 14px;
  right: 14px;
  border-bottom: 1px solid var(--accent-deep-dim);
  border-right: 1px solid var(--accent-deep-dim);
}

.booking-success__mark {
  width: 72px;
  height: 72px;
  margin: 0 auto clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: 50%;
  background: var(--ink-page);
  color: var(--accent-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.booking-success__mark::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid var(--accent-deep-dim);
  border-radius: 50%;
}
.booking-success__mark svg {
  width: 34px;
  height: 34px;
}

.booking-success__eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 0.8rem;
}
.booking-success__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--ink-page);
  margin: 0 auto 1rem;
  max-width: 24ch;
}
.booking-success__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-deep);
}
.booking-success__lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.6;
  color: var(--ink-page-muted);
  margin: 0 auto 0.85rem;
  max-width: 42ch;
}
.booking-success__hint {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-page-faint);
  margin: 0 auto 2rem;
  max-width: 38ch;
}
.booking-success__hint em {
  font-style: italic;
  color: var(--ink-page-muted);
}
.booking-success__contact {
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: clamp(1.5rem, 3vw, 2rem) 0;
  margin: clamp(1.5rem, 3vw, 2rem) auto;
  max-width: 32rem;
}
.booking-success__contact p {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 0.6rem;
}
.booking-success__phone {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.85rem, 2.8vw, 2.3rem);
  letter-spacing: -0.005em;
  color: var(--ink-page);
  display: inline-block;
  margin-bottom: 0.55rem;
  transition: color 200ms var(--ease-out);
}
.booking-success__phone:hover { color: var(--accent-deep); }
.booking-success__hours {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-page-muted);
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}
.booking-success__cta {
  margin-top: 0.5rem;
  background-color: transparent;
  color: var(--ink, #0a0a0a);
  border-color: rgba(10, 10, 10, 0.5);
}
.booking-success__cta:focus-visible {
  background-color: rgba(10, 10, 10, 0.05);
  border-color: var(--ink, #0a0a0a);
  color: var(--ink, #0a0a0a);
}
@media (hover: hover) and (pointer: fine) {
  .booking-success__cta:hover {
    background-color: rgba(10, 10, 10, 0.05);
    border-color: var(--ink, #0a0a0a);
    color: var(--ink, #0a0a0a);
  }
}

/* ----- 5. SIDEBAR — Carta di servizio ----------------------- */
.booking-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.booking-summary {
  background: var(--bg);
  color: var(--accent-bright);
  border-radius: var(--radius);
  padding: clamp(1.85rem, 3vw, 2.4rem);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--accent-dim);
  --accent:        #c5c8cb;
  --accent-bright: #e6e9ec;
  --accent-dim:    rgba(197, 200, 203, 0.45);
  box-shadow:
    0 32px 64px -28px rgba(20, 30, 50, 0.30),
    0 10px 24px -10px rgba(20, 30, 50, 0.16);
}
.booking-summary::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 90% 65% at 50% 0%, rgba(230, 233, 236, 0.07) 0%, transparent 65%);
}
/* Corner editorial marks on dark card */
.booking-summary::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  width: 20px;
  height: 20px;
  border-top: 1px solid var(--accent-dim);
  border-left: 1px solid var(--accent-dim);
  opacity: 0.55;
  pointer-events: none;
}
.booking-summary__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.booking-summary__label::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--accent-dim);
}
.booking-summary__amount {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 4.2vw, 3.6rem);
  line-height: 1;
  color: var(--accent-bright);
  margin-bottom: 1.1rem;
  letter-spacing: -0.008em;
}
.booking-summary__amount em {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}
.booking-summary__note {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(230, 233, 236, 0.72);
  padding-top: 1.1rem;
  border-top: 1px solid var(--accent-dim);
}

.booking-info {
  background: #fcfcfd;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.8vw, 2.1rem);
  position: relative;
}
.booking-info::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px;
  width: 24px;
  height: 1px;
  background: var(--accent-deep-dim);
}
.booking-info h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink-page);
  margin: 0.7rem 0 1rem;
}
.booking-info__phone {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.55rem, 2vw, 1.85rem);
  letter-spacing: -0.005em;
  color: var(--ink-page);
  display: inline-block;
  margin-bottom: 0.4rem;
  transition: color 200ms var(--ease-out);
}
.booking-info__phone:hover { color: var(--accent-deep); }
.booking-info__hint {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--ink-page-muted);
  margin-bottom: 1.35rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--line-light);
}
.booking-info__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.booking-info__list li {
  position: relative;
  padding-left: 1.55rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-page);
}
.booking-info__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--accent-deep);
  line-height: 1.4;
}
.booking-info__seal {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

/* ----- FLATPICKR — editorial silver-ink theme --------------- */
.flatpickr-calendar {
  background: #fcfcfd;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow:
    0 32px 64px -28px rgba(20, 30, 50, 0.30),
    0 12px 28px -14px rgba(20, 30, 50, 0.14);
  font-family: var(--font-body);
  width: 340px;
  padding: 0.6rem 0.6rem 0.5rem;
  /* Subtle paper grain */
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(106, 109, 114, 0.04) 0%, transparent 70%);
}
.flatpickr-calendar.hasTime {
  width: 420px;
}
.flatpickr-calendar.arrowTop::before,
.flatpickr-calendar.arrowTop::after,
.flatpickr-calendar.arrowBottom::before,
.flatpickr-calendar.arrowBottom::after {
  border-bottom-color: var(--line-light);
}
.flatpickr-calendar.arrowTop::after {
  border-bottom-color: #fcfcfd;
}
.flatpickr-calendar.arrowBottom::after {
  border-top-color: #fcfcfd;
}

/* Month nav */
.flatpickr-months {
  padding: 0.4rem 0.25rem 0.65rem;
  align-items: center;
}
.flatpickr-months .flatpickr-month {
  color: var(--ink-page);
  height: 36px;
  overflow: visible;
}
.flatpickr-current-month {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem !important;
  padding: 0;
  color: var(--ink-page);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 36px;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink-page);
  background: transparent;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
  transition: background-color 160ms var(--ease-out);
  -webkit-appearance: none;
  appearance: none;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: var(--page-bg-warm);
}
.flatpickr-current-month input.cur-year {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink-page);
  font-style: italic;
  width: 4.5ch;
  padding: 0.2rem 0.1rem;
}
.flatpickr-monthDropdown-months option {
  background: #fff;
  color: var(--ink-page);
  font-family: var(--font-body);
}
/* Month nav arrows — simple, no border/bg, just darker colour for visibility */
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  color: var(--ink-page);
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  transition: background-color 160ms var(--ease-out), color 160ms var(--ease-out);
  top: 0;
  height: 36px;
  display: flex;
  align-items: center;
}
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  background: var(--page-bg-warm);
  color: var(--ink-page);
}
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.numInputWrapper:hover { background: transparent; }
.numInputWrapper span {
  border: 0;
  width: 14px;
  opacity: 0;
  transition: opacity 160ms var(--ease-out);
}
.numInputWrapper:hover span { opacity: 0.7; }
.numInputWrapper span.arrowUp::after { border-bottom-color: var(--ink-page); }
.numInputWrapper span.arrowDown::after { border-top-color: var(--ink-page); }

/* Weekday names */
.flatpickr-weekdays {
  background: transparent;
  height: 32px;
  margin-top: 0.4rem;
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 0.3rem;
}
.flatpickr-weekday {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: transparent !important;
}

/* Day grid */
.dayContainer {
  padding: 0.4rem 0;
  gap: 2px 0;
}
.flatpickr-day {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--ink-page);
  border: 0;
  border-radius: 8px;
  max-width: 44px;
  height: 40px;
  line-height: 40px;
  transition:
    background-color 160ms var(--ease-out),
    color 160ms var(--ease-out),
    transform 100ms var(--ease-out);
}
.flatpickr-day:hover,
.flatpickr-day:focus {
  background: var(--page-bg-warm);
  border: 0;
  color: var(--ink-page);
}
.flatpickr-day.today {
  border: 0;
  background: transparent;
  color: var(--ink-page);
  font-weight: 600;
  position: relative;
}
.flatpickr-day.today::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-deep);
}
.flatpickr-day.today:hover {
  background: var(--page-bg-warm);
  color: var(--ink-page);
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected.today,
.flatpickr-day.selected.today:hover {
  background: var(--ink-page);
  color: var(--accent-bright);
  border: 0;
  font-weight: 500;
}
.flatpickr-day.selected.today::after {
  background: var(--accent-bright);
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: var(--ink-page-faint);
  background: transparent;
  cursor: not-allowed;
}
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: var(--ink-page-faint);
}

/* Time picker — larger, clearer steppers */
.flatpickr-time {
  border-top: 1px solid var(--line-light);
  padding: 0.9rem 0.5rem 0.7rem;
  background: transparent;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.flatpickr-time::before {
  content: 'Ora';
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-right: 0.5rem;
}
.flatpickr-time .numInputWrapper {
  flex: 0 0 110px;
  width: 110px;
  height: 64px;
  background: #fff;
  border: 1px solid rgba(20, 22, 28, 0.18);
  border-radius: 10px;
  transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
  position: relative;
  overflow: hidden;
}
.flatpickr-time .numInputWrapper:hover {
  border-color: rgba(20, 22, 28, 0.4);
}
.flatpickr-time .numInputWrapper:focus-within {
  border-color: var(--ink-page);
  box-shadow: 0 0 0 3px rgba(20, 22, 28, 0.08);
}
.flatpickr-time .numInput {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--ink-page);
  background: transparent;
  padding: 0 38px 0 0;
  width: 100%;
  height: 100%;
  text-align: center;
  border: 0;
  letter-spacing: 0.02em;
  cursor: text;
  box-sizing: border-box;
}
.flatpickr-time .numInput:hover,
.flatpickr-time .numInput:focus {
  background: transparent;
}
.flatpickr-time .flatpickr-time-separator {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--accent-deep);
  height: 64px;
  line-height: 64px;
  padding: 0 0.2rem;
}
/* Up/down arrow buttons — flex-centred triangles, no offset hacks */
.flatpickr-time .numInputWrapper span.arrowUp,
.flatpickr-time .numInputWrapper span.arrowDown {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  width: 38px;
  height: 32px;
  border: 0;
  border-left: 1px solid var(--line-light);
  opacity: 1;
  background: #f5f6f8;
  transition: background-color 160ms var(--ease-out);
  cursor: pointer;
  margin: 0;
  padding: 0;
}
.flatpickr-time .numInputWrapper span.arrowUp {
  border-bottom: 1px solid var(--line-light);
  top: 0;
  bottom: auto;
}
.flatpickr-time .numInputWrapper span.arrowDown {
  bottom: 0;
  top: auto;
}
.flatpickr-time .numInputWrapper span:hover {
  background: var(--page-bg-warm);
}
.flatpickr-time .numInputWrapper span.arrowUp::after,
.flatpickr-time .numInputWrapper span.arrowDown::after {
  position: static;
  margin: 0;
  border: solid transparent;
  width: 0;
  height: 0;
}
.flatpickr-time .numInputWrapper span.arrowUp::after {
  border-width: 0 6px 8px 6px;
  border-bottom-color: var(--ink-page);
}
.flatpickr-time .numInputWrapper span.arrowDown::after {
  border-width: 8px 6px 0 6px;
  border-top-color: var(--ink-page);
}

/* Hide AM/PM toggle (24h mode) */
.flatpickr-am-pm { display: none; }

/* Mobile flatpickr — modal-style centred popup, no flash from Flatpickr's JS
   positioning. `position: fixed` overrides Flatpickr's inline `left/top` styles
   so the calendar appears centred from frame 1. */
@media (max-width: 600px) {
  .flatpickr-calendar.open {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    width: calc(100vw - 1.5rem) !important;
    max-width: 360px;
    z-index: 9999;
  }
  .flatpickr-calendar.open.hasTime {
    width: calc(100vw - 1.5rem) !important;
  }
  /* The Flatpickr arrow tip points at the trigger element. On a centred mobile
     popup the trigger may not be aligned with the tip, so hide it. */
  .flatpickr-calendar.arrowTop::before,
  .flatpickr-calendar.arrowTop::after,
  .flatpickr-calendar.arrowBottom::before,
  .flatpickr-calendar.arrowBottom::after { display: none; }
  /* Dim the background behind the centred calendar so it feels like a modal */
  body:has(.flatpickr-calendar.open)::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(20, 30, 50, 0.45);
    z-index: 9998;
    pointer-events: none;
  }
  /* TIME PICKER (mobile) — slightly larger than desktop for touch */
  .flatpickr-time::before { display: none !important; }
  .flatpickr-time {
    gap: 0.5rem !important;
    border-top: 1px solid var(--line-light) !important;
  }
  .flatpickr-time .numInputWrapper {
    flex: 0 0 120px !important;
    width: 120px !important;
    height: 72px !important;
  }
  .flatpickr-time .numInput {
    font-size: 1.5rem !important;
    padding: 0 44px 0 0 !important;
  }
  .flatpickr-time .numInputWrapper span.arrowUp,
  .flatpickr-time .numInputWrapper span.arrowDown {
    width: 44px !important;
    height: 36px !important;
  }
  .flatpickr-time .flatpickr-time-separator {
    font-size: 1.5rem !important;
    height: 72px !important;
    line-height: 72px !important;
  }
}

/* Confirm button (added via JS onReady) — gives users a clear "I'm done" action.
   A top divider + breathing room separates it visually from the time picker. */
.fp-confirm-btn {
  display: block;
  width: calc(100% - 1.2rem);
  margin: 0.9rem 0.6rem 0.5rem;
  padding: 0.7rem 1rem;
  background: var(--ink-page);
  color: #fcfcfd;
  border: 0;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  transition: background-color 160ms var(--ease-out), transform 120ms var(--ease-out);
}
/* Thin divider line above the button, separating it from the time picker */
.fp-confirm-btn::before {
  content: '';
  position: absolute;
  top: -0.5rem;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line-light);
}
.fp-confirm-btn:hover { background: var(--accent-deep); }
.fp-confirm-btn:active { transform: scale(0.985); }

/* ----- Mobile ----------------------------------------------- */
@media (max-width: 900px) {
  .booking-layout { grid-template-columns: 1fr; }
  /* Form first, sidebar below — keep form in the foreground */
  .booking-sidebar {
    position: static;
    order: 1;
    margin-top: 1rem;
  }
  .booking-summary {
    padding: 1.35rem 1.5rem;
  }
  .booking-segments { grid-template-columns: 1fr 1fr; }
  .booking-form { padding: 1.5rem 1.25rem; }
  .booking-form::before,
  .booking-form::after { width: 16px; height: 16px; }
}
@media (max-width: 500px) {
  .booking-segments {
    grid-template-columns: 1fr;
    border-bottom: 0;
    gap: 0.5rem;
  }
  .booking-segment span {
    border: 1px solid var(--line-light);
    border-radius: var(--radius-sm);
    margin-bottom: 0;
    padding: 0.95rem 1rem;
  }
  .booking-segment input:checked + span {
    background: var(--ink-page);
    color: var(--accent-bright);
    border-color: var(--ink-page);
  }
}

/* ============================================================
   ROUTE LANDING PAGES (tratte/*.html)
   ============================================================ */

/* Route hero — 2-column dark panel (text left, image right) */
.route-hero {
  position: relative;
  background: var(--bg);
  color: var(--text);
  padding: clamp(3rem, 9vh, 6rem) 0 clamp(3rem, 9vh, 6rem);
  isolation: isolate;
  overflow: hidden;

  /* scoped silver palette like hero */
  --accent: #c5c8cb;
  --accent-bright: #e6e9ec;
  --accent-dim: rgba(197, 200, 203, 0.45);
}
.route-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 50% at 25% 30%, rgba(230,233,236,0.08) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #07070a 100%);
}
.route-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
/* Text column */
.route-hero__text { max-width: 36rem; }

/* Image column — rounded card on right */
.route-hero__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: #1a1d24;
  box-shadow:
    0 30px 60px -30px rgba(0, 0, 0, 0.6),
    0 12px 28px -16px rgba(0, 0, 0, 0.4);
}
.route-hero__image picture,
.route-hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* If page has no image, center text column */
.route-hero:not(:has(.route-hero__image)) .container {
  grid-template-columns: minmax(0, 1fr);
  max-width: 56rem;
  text-align: center;
  justify-items: center;
}
.route-hero:not(:has(.route-hero__image)) .route-hero__text {
  max-width: 56rem;
}
.route-hero:not(:has(.route-hero__image)) .route-cta-row {
  justify-content: center;
}
.route-breadcrumb {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.route-breadcrumb a { color: var(--text-muted); transition: color 160ms var(--ease-out); }
.route-breadcrumb a:hover { color: var(--text); }
.route-breadcrumb span[aria-hidden] { padding: 0 0.6rem; opacity: 0.5; }

.route-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.012em;
  color: var(--accent-bright);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.route-hero h1 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.route-hero .lead {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 38rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

/* Route data section — below hero, large prominent layout */
.route-data {
  background: var(--page-bg);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-bottom: 1px solid var(--line-light);
}
.route-data__inner {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.route-data__price {
  text-align: left;
}
.route-data__from {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ink-page-muted);
  margin-bottom: 0.65rem;
}
.route-data__amount {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.4rem, 7vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--ink-page);
  margin-bottom: 1.1rem;
}
.route-data__amount em {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.route-data__note {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-page-muted);
  max-width: 32rem;
}

.route-data__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}
.route-data__meta .route-meta-item {
  padding: 1.4rem 1.5rem;
  border-bottom: 1px solid var(--line-light);
  border-right: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.route-data__meta .route-meta-item:nth-child(2n) { border-right: 0; }
.route-data__meta .route-meta-item:nth-last-child(-n+2) { border-bottom: 0; }
.route-data__meta dt {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-page-faint);
}
.route-data__meta dd {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  letter-spacing: -0.005em;
  color: var(--ink-page);
}

/* Legacy: keep price-card class for compatibility (now unused but defined) */
.route-price-card {
  background: rgba(230, 233, 236, 0.04);
  border: 1px solid var(--accent-dim);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.route-price-card__from {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.route-price-card__amount {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--accent-bright);
  margin-bottom: 0.85rem;
}
.route-price-card__amount em {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}
.route-price-card__note {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: clamp(1rem, 2vw, 1.4rem);
  padding-bottom: clamp(1rem, 2vw, 1.4rem);
  border-bottom: 1px solid var(--line);
}
.route-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.2rem;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.6rem);
}
.route-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.route-meta-item dt {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.route-meta-item dd {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink-page);
  margin: 0;
}

.route-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Info section (what's included) */
.route-includes {
  background: var(--page-bg);
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}
.route-includes h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink-page);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 32rem;
}
.route-includes h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-deep);
}
.route-includes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.route-include-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line-light);
}
.route-include-item__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--accent-deep);
  min-width: 2rem;
}
.route-include-item h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--ink-page);
  margin-bottom: 0.45rem;
}
.route-include-item p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--ink-page-muted);
}

/* Other routes (cross-links) */
.route-related {
  background: var(--page-bg-warm);
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.route-related h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: -0.005em;
  color: var(--ink-page);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}
.route-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.route-related-card {
  display: block;
  background: var(--page-bg);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 2vw, 1.6rem);
  transition: transform 220ms var(--ease-out), border-color 220ms var(--ease-out);
}
.route-related-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-deep-dim);
}
.route-related-card__name {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.route-related-card__name strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--ink-page);
}
.route-related-card__name em {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--accent-deep);
}
.route-related-card__hint {
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ink-page-muted);
}

/* Mobile */
@media (max-width: 767px) {
  .route-hero .container { grid-template-columns: 1fr; gap: 1.75rem; }
  .route-hero__image { aspect-ratio: 16 / 10; order: -1; }  /* image above text on mobile */
  .route-data__inner { grid-template-columns: 1fr; gap: 2rem; }
  .route-meta { grid-template-columns: 1fr 1fr; }
  .route-data__meta { grid-template-columns: repeat(2, 1fr); }
  .route-includes-grid { grid-template-columns: 1fr; gap: 0.5rem; }
  .route-related-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LEGAL PAGES (note-legali.html, privacy.html)
   Editorial document layout: hero + TOC sidebar + prose article
   ============================================================ */


/* Hero — refined editorial open, smaller than booking hero */
.legal-hero {
  background: var(--bg);
  color: var(--text);
  padding: clamp(3.5rem, 9vh, 5.5rem) 0 clamp(3rem, 7vh, 4.5rem);
  --accent: #c5c8cb;
  --accent-bright: #e6e9ec;
  --accent-dim: rgba(197, 200, 203, 0.45);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 45% at 25% 35%, rgba(230,233,236,0.09) 0%, transparent 65%),
    linear-gradient(180deg, #0a0a0a 0%, #07070a 100%);
}
.legal-hero::after {
  content: '';
  position: absolute;
  inset: clamp(1.25rem, 3vw, 2.5rem) clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--accent-dim);
  border-bottom: 1px solid var(--accent-dim);
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}
.legal-hero .container {
  max-width: 60rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.legal-hero .route-breadcrumb {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(245, 247, 250, 0.5);
  margin: 0 0 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.legal-hero .route-breadcrumb a {
  color: rgba(245, 247, 250, 0.66);
  transition: color 180ms var(--ease-out);
}
.legal-hero .route-breadcrumb a:hover { color: var(--accent-bright); }
.legal-hero .route-breadcrumb span[aria-hidden] {
  color: var(--accent-dim);
  font-family: var(--font-display);
  font-style: italic;
}
.legal-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--accent-bright);
  margin: 0 0 1.1rem;
}
.legal-hero h1 em {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: 0.55em;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-top: 0.4rem;
}
.legal-hero .lead {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 38rem;
  margin: 0;
}
.legal-hero__meta {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--accent);
}

/* Content section */
.legal-section--content {
  background: var(--page-bg);
  padding: clamp(3.5rem, 8vh, 6rem) 0 clamp(4rem, 10vh, 7rem);
  position: relative;
}
.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

/* TOC sidebar — sticky on desktop */
.legal-toc {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  background: #fcfcfd;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.5vw, 1.85rem) clamp(1.3rem, 2.3vw, 1.75rem);
  position: relative;
}
.legal-toc::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px;
  width: 24px;
  height: 1px;
  background: var(--accent-deep-dim);
}
.legal-toc__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0.6rem 0 1rem;
}
.legal-toc ol {
  list-style: none;
  counter-reset: legal-toc;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.legal-toc li {
  counter-increment: legal-toc;
  position: relative;
  padding-left: 2.4rem;
  min-height: 1.8rem;
}
.legal-toc li::before {
  content: counter(legal-toc, upper-roman);
  position: absolute;
  left: 0;
  top: 0.4rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--accent-deep);
  letter-spacing: 0.05em;
  line-height: 1;
  width: 2rem;
}
.legal-toc a {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-page);
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: color 160ms var(--ease-out), border-color 160ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .legal-toc a:hover {
    color: var(--accent-deep);
    border-bottom-color: var(--accent-deep-dim);
  }
}

/* Article — prose */
.legal-article {
  background: #fcfcfd;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3.25rem);
  position: relative;
  box-shadow:
    0 28px 56px -28px rgba(20, 30, 50, 0.10),
    0 8px 20px -10px rgba(20, 30, 50, 0.05);
}
.legal-article::before,
.legal-article::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  pointer-events: none;
  opacity: 0.4;
}
.legal-article::before {
  top: 14px;
  left: 14px;
  border-top: 1px solid var(--accent-deep-dim);
  border-left: 1px solid var(--accent-deep-dim);
}
.legal-article::after {
  bottom: 14px;
  right: 14px;
  border-bottom: 1px solid var(--accent-deep-dim);
  border-right: 1px solid var(--accent-deep-dim);
}

/* Chapter — Roman numeral + Cormorant title + hairline rule */
.legal-chapter + .legal-chapter {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
}
.legal-chapter__head {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: baseline;
  gap: clamp(0.85rem, 1.5vw, 1.2rem);
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}
.legal-chapter__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: 0.04em;
  color: var(--accent-deep);
  line-height: 1;
  min-width: 1.5rem;
}
.legal-chapter__head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink-page);
  margin: 0;
}
.legal-chapter__head::after {
  content: '';
  height: 1px;
  background: linear-gradient(to right,
    var(--accent-deep-dim) 0%,
    rgba(106, 109, 114, 0.12) 50%,
    transparent 100%);
  align-self: center;
  margin-top: 4px;
}

/* Prose */
.legal-chapter p,
.legal-chapter ul,
.legal-chapter ol,
.legal-chapter dl {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-page);
  max-width: 62ch;
}
.legal-chapter p + p,
.legal-chapter p + ul,
.legal-chapter p + ol,
.legal-chapter p + dl,
.legal-chapter ul + p,
.legal-chapter ol + p,
.legal-chapter dl + p {
  margin-top: 1.05rem;
}
.legal-chapter ul,
.legal-chapter ol {
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.legal-chapter ul li,
.legal-chapter ol li {
  position: relative;
}
.legal-chapter ul {
  list-style: none;
  padding-left: 0;
}
.legal-chapter ul li {
  padding-left: 1.55rem;
}
.legal-chapter ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 1px;
  background: var(--accent-deep);
}
.legal-chapter ol {
  list-style: decimal;
  padding-left: 1.5rem;
}
.legal-chapter ol li::marker {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--accent-deep);
}

/* Definition list — company data */
.legal-chapter dl {
  display: grid;
  grid-template-columns: minmax(10rem, max-content) 1fr;
  gap: 0.65rem 1.5rem;
  margin: 0.4rem 0;
  background: var(--page-bg);
  border-radius: var(--radius-sm);
  padding: clamp(1.2rem, 2.5vw, 1.6rem) clamp(1.2rem, 2.5vw, 1.6rem);
  border: 1px solid var(--line-light);
}
.legal-chapter dt {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  align-self: baseline;
  padding-top: 2px;
}
.legal-chapter dd {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-page);
  margin: 0;
}
.legal-chapter dd a {
  color: var(--ink-page);
  border-bottom: 1px solid var(--accent-deep-dim);
  text-decoration: none;
  transition: border-color 160ms var(--ease-out);
}
.legal-chapter dd a:hover { border-color: var(--ink-page); }

.legal-chapter strong { font-weight: 600; color: var(--ink-page); }
.legal-chapter em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-page);
}

.legal-chapter a:not(dd a) {
  color: var(--ink-page);
  border-bottom: 1px solid var(--accent-deep-dim);
  transition: border-color 160ms var(--ease-out);
}
.legal-chapter a:not(dd a):hover { border-color: var(--ink-page); }

/* Seal at end of article — sits between last chapter and the date stamp */
.legal-seal-wrap {
  display: flex;
  justify-content: center;
  margin: clamp(3rem, 5vw, 4rem) 0 clamp(1.5rem, 2.5vw, 2rem);
}

/* Last-updated footer */
.legal-footer-note {
  margin-top: clamp(3rem, 5vw, 4rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--line-light);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--ink-page-muted);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.legal-footer-note::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent-deep-dim);
}

/* Mobile */
@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .legal-toc {
    position: static;
    margin-bottom: 0.5rem;
  }
  .legal-toc ol {
    columns: 2;
    column-gap: 1.5rem;
  }
  .legal-toc li {
    break-inside: avoid;
  }
  .legal-chapter dl {
    grid-template-columns: 1fr;
    gap: 0.2rem 0;
  }
  .legal-chapter dt {
    padding-top: 0.7rem;
  }
  .legal-chapter dt:first-of-type { padding-top: 0; }
}
@media (max-width: 600px) {
  .legal-toc ol { columns: 1; }
  .legal-article { padding: 1.5rem 1.25rem; }
  .legal-article::before,
  .legal-article::after { width: 16px; height: 16px; }
}
