/* ==========================================================================
   The Alpha Travels — Luxury Airport Transfer
   Design system + components
   ========================================================================== */

/* ---------- Fonts (self-hosted, latin subset) ---------- */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/cormorant-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('../fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Tokens ---------- */
:root {
  --black: #060606;
  --ink: #0b0b0c;
  --ink-2: #121214;
  --ink-3: #1a1a1d;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(214, 179, 106, 0.35);

  --gold: #d6b36a;
  --gold-bright: #e8cd93;
  --gold-deep: #b08d43;
  --gold-grad: linear-gradient(135deg, #b08d43 0%, #e8cd93 45%, #c9a55f 100%);

  --white: #ffffff;
  --off: #f6f4f0;
  --muted: #a7a7ad;
  --muted-dark: #5d5d66;

  --font-display: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Fluid type — deliberately larger than a generic template */
  --fs-hero: clamp(2.9rem, 7.2vw, 6.1rem);
  --fs-h2: clamp(2.15rem, 4.6vw, 3.65rem);
  --fs-h3: clamp(1.35rem, 2.2vw, 1.72rem);
  --fs-lead: clamp(1.09rem, 1.55vw, 1.3rem);
  --fs-body: clamp(1.03rem, 1.15vw, 1.12rem);
  --fs-small: 0.95rem;
  --fs-eyebrow: 0.79rem;

  --container: 1280px;
  --gutter: clamp(1.15rem, 4vw, 2.6rem);
  --sec-y: clamp(4.75rem, 10vw, 9rem);
  --radius: 4px;
  --radius-lg: 8px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.25s var(--ease);
  --t: 0.45s var(--ease);
  --t-slow: 0.9s var(--ease);

  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--black);
  color: var(--off);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-weight: 500; line-height: 1.1; letter-spacing: -0.015em; }

::selection { background: var(--gold); color: #0a0a0a; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; top: -100px; left: 12px; z-index: 999;
  background: var(--gold); color: #0a0a0a; padding: 0.85rem 1.4rem;
  font-weight: 700; border-radius: var(--radius); transition: top var(--t-fast);
}
.skip-link:focus { top: 12px; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--sec-y); position: relative; }
.section--tight { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--light { background: var(--off); color: var(--ink); }
.section--panel { background: var(--ink); }
.section--ink2 { background: var(--ink-2); }

.grid { display: grid; gap: clamp(1.4rem, 2.6vw, 2.2rem); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.15rem;
}
.eyebrow::before {
  content: ''; width: 34px; height: 1px;
  background: var(--gold); opacity: 0.75;
}
.eyebrow--center::after {
  content: ''; width: 34px; height: 1px;
  background: var(--gold); opacity: 0.75;
}

.h1 { font-family: var(--font-display); font-size: var(--fs-hero); font-weight: 400; line-height: 1.03; letter-spacing: -0.02em; }
.h2 { font-family: var(--font-display); font-size: var(--fs-h2); font-weight: 400; line-height: 1.08; letter-spacing: -0.018em; }
.h3 { font-family: var(--font-body); font-size: var(--fs-h3); font-weight: 700; letter-spacing: -0.012em; line-height: 1.28; }
.gold { color: var(--gold); }
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.italic-accent { font-style: italic; color: var(--gold); }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.75;
  color: var(--muted);
  max-width: 62ch;
}
.section--light .lead { color: #4a4a52; }
.measure { max-width: 66ch; }

.section-head { max-width: 760px; margin-bottom: clamp(2.6rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .lead { margin-inline: auto; }
.section-head .lead { margin-top: 1.35rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--gold-grad);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.65rem;
  padding: 1.08rem 2.15rem;
  font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  border: 1px solid transparent; border-radius: var(--radius);
  cursor: pointer; overflow: hidden;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background-color var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  will-change: transform;
  text-align: center;
}
.btn svg { width: 17px; height: 17px; flex: none; transition: transform var(--t-fast); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary { background-image: var(--btn-bg); color: #16100a; box-shadow: 0 10px 34px -14px rgba(214, 179, 106, 0.75); }
.btn--primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,0.55) 50%, transparent 75%);
  transform: translateX(-120%); transition: transform 0.75s var(--ease);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 44px -14px rgba(214, 179, 106, 0.85); }
.btn--primary:hover::after { transform: translateX(120%); }

.btn--ghost { border-color: rgba(255,255,255,0.28); color: var(--white); background: rgba(255,255,255,0.02); backdrop-filter: blur(6px); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); background: rgba(214,179,106,0.07); }

.btn--dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--dark:hover { background: #000; transform: translateY(-3px); color: var(--gold); }

.btn--outline-dark { border-color: rgba(11,11,12,0.28); color: var(--ink); }
.btn--outline-dark:hover { border-color: var(--gold-deep); color: var(--gold-deep); transform: translateY(-3px); }

.btn--sm { padding: 0.82rem 1.5rem; font-size: 0.82rem; }
.btn--block { width: 100%; }
.btn--lg { padding: 1.25rem 2.6rem; font-size: 1rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); padding-bottom: 3px;
  border-bottom: 1px solid rgba(214,179,106,0.35);
  transition: gap var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.link-arrow:hover { gap: 0.95rem; border-color: var(--gold); color: var(--gold-bright); }
.link-arrow svg { width: 15px; height: 15px; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color var(--t), border-color var(--t), box-shadow var(--t), backdrop-filter var(--t);
  border-bottom: 1px solid transparent;
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  height: var(--header-h);
  transition: height var(--t);
}
.header.is-scrolled {
  background: rgba(6, 6, 6, 0.9);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
  box-shadow: 0 14px 40px -26px rgba(0, 0, 0, 0.95);
}
.header.is-scrolled .header__inner { height: 70px; }

.brand { display: inline-flex; align-items: center; gap: 0.72rem; flex: none; }
.brand__mark {
  width: 75px; height: 58px; flex: none;
  object-fit: contain; object-position: center;
  transition: transform var(--t), filter var(--t);
  filter: drop-shadow(0 2px 10px rgba(214,179,106,0.24));
}
.brand:hover .brand__mark {
  transform: translateY(-1px) scale(1.06);
  filter: drop-shadow(0 4px 16px rgba(214,179,106,0.42));
}

/* Full gold lockup used in the footer */
.brand--footer { display: block; }
.brand__lockup {
  display: block; width: 232px; height: auto;
  max-width: 100%;
  transition: transform var(--t), filter var(--t);
  filter: drop-shadow(0 6px 26px rgba(214,179,106,0.18));
}
.brand--footer:hover .brand__lockup {
  transform: translateY(-2px);
  filter: drop-shadow(0 10px 32px rgba(214,179,106,0.32));
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display); font-size: 1.42rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.01em;
}
.brand__name em { font-style: normal; color: var(--gold); }
.brand__tag {
  font-size: 0.56rem; font-weight: 700; letter-spacing: 0.36em;
  text-transform: uppercase; color: var(--muted); margin-top: 5px;
}

.nav { display: flex; align-items: center; gap: clamp(0.4rem, 1.5vw, 1.15rem); }
.nav__link {
  position: relative; padding: 0.55rem 0.15rem;
  font-size: 0.875rem; font-weight: 600; letter-spacing: 0.03em;
  color: rgba(255,255,255,0.82);
  transition: color var(--t-fast);
  white-space: nowrap;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--t);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__link.is-active { color: var(--gold); }
.nav__link.is-active::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 0.9rem; flex: none; }
.header__phone {
  display: none; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.78);
  transition: color var(--t-fast);
}
.header__phone:hover { color: var(--gold); }
.header__phone svg { width: 16px; height: 16px; color: var(--gold); }

.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 48px; height: 48px; padding: 0 12px;
  background: transparent; border: 1px solid var(--line); border-radius: var(--radius);
  cursor: pointer; transition: border-color var(--t-fast);
}
.burger:hover { border-color: var(--gold); }
.burger span {
  display: block; height: 1.5px; width: 100%; background: var(--white);
  transition: transform var(--t), opacity var(--t-fast), background-color var(--t-fast);
}
.burger[aria-expanded='true'] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--gold); }
.burger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--gold); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: linear-gradient(165deg, #0a0a0b 0%, #111013 60%, #0a0a0b 100%);
  padding: calc(var(--header-h) + 1.6rem) var(--gutter) 2.4rem;
  display: flex; flex-direction: column;
  overflow-y: auto; overscroll-behavior: contain;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.5s var(--ease), visibility 0.5s;
}
.mobile-nav.is-open { transform: translateX(0); visibility: visible; }
.mobile-nav__list { display: flex; flex-direction: column; }
.mobile-nav__list li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-nav__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.22rem 0.25rem;
  font-family: var(--font-display); font-size: 1.72rem; font-weight: 400;
  color: var(--white);
  opacity: 0; transform: translateX(26px);
  transition: color var(--t-fast);
}
.mobile-nav.is-open .mobile-nav__link { animation: navIn 0.55s var(--ease) forwards; }
.mobile-nav__link .idx {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.2em; color: var(--gold); opacity: 0.75;
}
.mobile-nav__link:hover, .mobile-nav__link.is-active { color: var(--gold); }
@keyframes navIn { to { opacity: 1; transform: translateX(0); } }
.mobile-nav__foot { margin-top: auto; padding-top: 2.2rem; display: grid; gap: 0.9rem; }
.mobile-nav__contact {
  font-size: 0.88rem; color: var(--muted); text-align: center; line-height: 2;
}
.mobile-nav__contact a { color: var(--gold); }

body.no-scroll { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(100svh, 940px);
  display: flex; align-items: center;
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 4.5rem));
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
  overflow: hidden;
  isolation: isolate;
}
.hero--page { min-height: min(72svh, 660px); }
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 58%;
  transform: scale(1.12);
  animation: heroZoom 2.4s var(--ease) forwards, heroDrift 34s ease-in-out 2.4s infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1.02); } }
@keyframes heroDrift { from { transform: scale(1.02) translate3d(0,0,0); } to { transform: scale(1.075) translate3d(-1.2%, -0.8%, 0); } }
.hero__media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(4,4,5,0.95) 0%, rgba(4,4,5,0.82) 34%, rgba(4,4,5,0.35) 62%, rgba(4,4,5,0.62) 100%),
    linear-gradient(to top, rgba(4,4,5,0.96) 0%, transparent 38%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: -1; opacity: 0.5; pointer-events: none;
  background-image: radial-gradient(circle at 18% 32%, rgba(214,179,106,0.13), transparent 46%);
}
.hero__inner { position: relative; width: 100%; }
.hero__content { max-width: 46rem; }
.hero__title { margin-bottom: 1.7rem; color: var(--white); text-wrap: balance; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; }
.hero__lead { font-size: var(--fs-lead); color: rgba(246,244,240,0.82); max-width: 40rem; line-height: 1.78; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.6rem; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.55rem 1.1rem 0.55rem 0.6rem;
  border: 1px solid var(--line-strong); border-radius: 100px;
  background: rgba(255,255,255,0.04); backdrop-filter: blur(10px);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); margin-bottom: 1.9rem;
}
.hero__badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 4px rgba(214,179,106,0.18);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(214,179,106,0.05); } }

.hero__strip {
  position: relative;
  border-top: 1px solid var(--line);
  background: rgba(8,8,9,0.72);
  backdrop-filter: blur(14px);
}
.hero__strip ul {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
}
.hero__strip li {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 1.4rem clamp(0.5rem, 2vw, 1.6rem);
  font-size: 0.92rem; font-weight: 600; color: rgba(255,255,255,0.86);
  border-left: 1px solid var(--line);
}
.hero__strip li:first-child { border-left: 0; }
.hero__strip svg { width: 22px; height: 22px; color: var(--gold); flex: none; }
@media (max-width: 680px) {
  .hero__strip li { border-left: 0; border-top: 1px solid var(--line); padding-block: 1.05rem; }
  .hero__strip li:first-child { border-top: 0; }
}

.scroll-hint {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.scroll-hint span.bar {
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: hint 2.4s ease-in-out infinite;
}
@keyframes hint { 0%, 100% { opacity: 0.25; transform: scaleY(0.55); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }
@media (max-width: 900px) { .scroll-hint { display: none; } }

/* Page hero (inner pages) */
.page-hero__crumb {
  font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.4rem;
}
.page-hero__crumb a { color: var(--gold); }
.page-hero__crumb a:hover { text-decoration: underline; }

/* ---------- Cards ---------- */
.card {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.7rem, 3vw, 2.4rem);
  transition: transform var(--t), border-color var(--t), background-color var(--t), box-shadow var(--t);
  overflow: hidden;
  height: 100%;
}
.card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: var(--gold-grad); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.card:hover { transform: translateY(-7px); border-color: var(--line-strong); background: var(--ink-3); box-shadow: 0 26px 60px -34px rgba(0,0,0,0.95); }
.card:hover::before { transform: scaleX(1); }
.card__title { font-size: var(--fs-h3); font-weight: 700; margin-bottom: 0.75rem; color: var(--white); letter-spacing: -0.01em; }
.card__text { color: var(--muted); font-size: 1.01rem; line-height: 1.72; }

.icon-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 62px; height: 62px; margin-bottom: 1.4rem;
  border: 1px solid var(--line-strong); border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(214,179,106,0.2), rgba(214,179,106,0.03));
  color: var(--gold);
  transition: transform var(--t), background-color var(--t), box-shadow var(--t);
}
.icon-badge svg { width: 27px; height: 27px; }
.card:hover .icon-badge { transform: translateY(-3px) scale(1.06); box-shadow: 0 0 0 6px rgba(214,179,106,0.06); }

.section--light .card { background: var(--white); border-color: rgba(11,11,12,0.09); box-shadow: 0 3px 18px -12px rgba(0,0,0,0.25); }
.section--light .card:hover { background: var(--white); border-color: rgba(176,141,67,0.42); box-shadow: 0 26px 54px -34px rgba(0,0,0,0.4); }
.section--light .card__title { color: var(--ink); }
.section--light .card__text { color: #55555e; }
.section--light .icon-badge { background: radial-gradient(circle at 30% 25%, rgba(176,141,67,0.16), rgba(176,141,67,0.03)); color: var(--gold-deep); border-color: rgba(176,141,67,0.34); }

/* ---------- Split feature ---------- */
.split {
  display: grid; align-items: center;
  gap: clamp(2.2rem, 5vw, 4.6rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
}
.split--reverse .split__media { order: 2; }
@media (max-width: 880px) { .split--reverse .split__media { order: 0; } }

.media-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--ink-2);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.05s var(--ease); }
.media-frame:hover img { transform: scale(1.045); }
.media-frame--tall { aspect-ratio: 4 / 5; }
.media-frame--wide { aspect-ratio: 16 / 10; }
.media-frame--square { aspect-ratio: 1 / 1; }
.media-frame::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(214,179,106,0.2);
  border-radius: var(--radius-lg);
}
.media-frame__glow {
  position: absolute; inset: auto 0 0 0; height: 42%;
  background: linear-gradient(to top, rgba(4,4,5,0.85), transparent);
  pointer-events: none;
}

.stat-float {
  position: absolute; right: clamp(-0.5rem, 2vw, -1.75rem); bottom: clamp(1rem, 4vw, 2rem);
  background: rgba(10,10,11,0.86); backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  padding: 1.25rem 1.6rem; max-width: 250px;
  box-shadow: 0 24px 60px -30px rgba(0,0,0,0.9);
}
.stat-float strong {
  display: block; font-family: var(--font-display); font-size: 1.6rem;
  font-weight: 500; color: var(--gold); line-height: 1.2; margin-bottom: 0.25rem;
}
.stat-float span { font-size: 0.85rem; color: rgba(246,244,240,0.75); line-height: 1.5; display: block; }

.tick-list { display: grid; gap: 1.05rem; margin-top: 2rem; }
.tick-list li { display: flex; gap: 0.95rem; align-items: flex-start; font-size: 1.03rem; line-height: 1.62; }
.tick-list svg { width: 21px; height: 21px; color: var(--gold); flex: none; margin-top: 3px; }
.section--light .tick-list li { color: #3f3f47; }
.tick-list strong { color: var(--white); font-weight: 700; }
.section--light .tick-list strong { color: var(--ink); }

/* ---------- Process steps ---------- */
.steps { display: grid; gap: clamp(1.5rem, 3vw, 2rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 245px), 1fr)); counter-reset: step; }
.step { position: relative; padding-top: 2.4rem; }
.step__num {
  font-family: var(--font-display); font-size: clamp(3rem, 5.5vw, 4.15rem);
  font-weight: 300; line-height: 1; color: transparent;
  -webkit-text-stroke: 1px rgba(214,179,106,0.55);
  transition: color var(--t), -webkit-text-stroke-color var(--t), transform var(--t);
  display: block; margin-bottom: 0.9rem;
}
.step:hover .step__num { color: rgba(214,179,106,0.14); transform: translateY(-4px); }
.step__line { position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: var(--line); overflow: hidden; }
.step__line::after {
  content: ''; position: absolute; inset: 0; width: 100%;
  background: var(--gold-grad); transform: scaleX(0); transform-origin: left;
  transition: transform 0.7s var(--ease);
}
.step.is-visible .step__line::after { transform: scaleX(1); }
.step h3 { font-size: 1.22rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--white); }
.section--light .step h3 { color: var(--ink); }
.step p { color: var(--muted); font-size: 0.99rem; line-height: 1.68; }
.section--light .step p { color: #55555e; }
.section--light .step__line { background: rgba(11,11,12,0.12); }

/* ---------- Fleet ---------- */
.fleet-card {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(170deg, #131316 0%, #0b0b0d 100%);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; height: 100%;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.fleet-card:hover { transform: translateY(-8px); border-color: var(--line-strong); box-shadow: 0 34px 70px -38px rgba(0,0,0,1); }
.fleet-card__media {
  position: relative; aspect-ratio: 16 / 10;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem 1.2rem 0.4rem;
  background:
    radial-gradient(ellipse 62% 46% at 50% 78%, rgba(214,179,106,0.17), transparent 72%),
    radial-gradient(ellipse at 50% 30%, rgba(255,255,255,0.045), transparent 68%);
}
.fleet-card__media img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 26px 26px rgba(0,0,0,0.72));
  transition: transform var(--t-slow);
}
.fleet-card:hover .fleet-card__media img { transform: scale(1.06) translateY(-4px); }
.fleet-card__floor {
  position: absolute; left: 12%; right: 12%; bottom: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214,179,106,0.5), transparent);
}
.fleet-card__body { padding: 1.5rem clamp(1.4rem, 2.6vw, 1.9rem) clamp(1.6rem, 2.6vw, 2rem); display: flex; flex-direction: column; flex: 1; border-top: 1px solid var(--line); }
.fleet-card__cat { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 0.55rem; }
.fleet-card__name { font-family: var(--font-display); font-size: 1.85rem; font-weight: 500; color: var(--white); margin-bottom: 0.5rem; line-height: 1.15; }
.fleet-card__desc { color: var(--muted); font-size: 0.98rem; line-height: 1.66; margin-bottom: 1.3rem; }
.fleet-spec {
  display: flex; gap: 1.6rem; padding: 1rem 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  margin-bottom: 1.35rem;
}
.fleet-spec div { display: flex; align-items: center; gap: 0.6rem; font-size: 0.93rem; font-weight: 600; color: rgba(255,255,255,0.9); }
.fleet-spec svg { width: 19px; height: 19px; color: var(--gold); flex: none; }
.fleet-feats { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.7rem; }
.fleet-feats li {
  font-size: 0.79rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 0.4rem 0.85rem; border-radius: 100px;
  border: 1px solid var(--line); color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.025);
}
.fleet-card .btn { margin-top: auto; }

/* ---------- Services ---------- */
.svc-card {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  min-height: 330px; height: 100%;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  isolation: isolate;
}
.svc-card:hover { transform: translateY(-7px); border-color: var(--line-strong); box-shadow: 0 30px 66px -36px rgba(0,0,0,1); }
.svc-card img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease), filter var(--t);
  filter: saturate(0.92);
}
.svc-card:hover img { transform: scale(1.07); filter: saturate(1.05); }
.svc-card::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(4,4,5,0.96) 6%, rgba(4,4,5,0.62) 42%, rgba(4,4,5,0.24) 100%);
  transition: opacity var(--t);
}
.svc-card:hover::after { opacity: 0.9; }
.svc-card__body { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(1.5rem, 2.8vw, 2.1rem); }
.svc-card__body h3 { font-size: 1.42rem; font-weight: 700; color: var(--white); margin-bottom: 0.55rem; letter-spacing: -0.01em; }
.svc-card__body p { color: rgba(246,244,240,0.78); font-size: 0.97rem; line-height: 1.62; }
.svc-card__more {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.1rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
  opacity: 0; transform: translateY(8px);
  transition: opacity var(--t), transform var(--t), gap var(--t-fast);
}
.svc-card:hover .svc-card__more, .svc-card:focus-visible .svc-card__more { opacity: 1; transform: translateY(0); }
.svc-card__more svg { width: 14px; height: 14px; }
@media (hover: none) { .svc-card__more { opacity: 1; transform: none; } }

/* ---------- Testimonials ---------- */
.quote-card {
  position: relative; display: flex; flex-direction: column; height: 100%;
  padding: clamp(1.9rem, 3.2vw, 2.6rem);
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  transition: transform var(--t), border-color var(--t), background-color var(--t);
}
.quote-card:hover { transform: translateY(-6px); border-color: var(--line-strong); background: var(--ink-3); }
.quote-card__mark {
  font-family: var(--font-display); font-size: 4.6rem; line-height: 0.8;
  color: rgba(214,179,106,0.26); margin-bottom: 0.5rem; height: 2.2rem;
}
.quote-card blockquote { font-size: 1.06rem; line-height: 1.78; color: rgba(246,244,240,0.9); margin-bottom: 1.7rem; flex: 1; }
.quote-card figcaption { display: flex; align-items: center; gap: 0.95rem; padding-top: 1.3rem; border-top: 1px solid var(--line); }
.quote-avatar {
  width: 48px; height: 48px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--gold-grad); color: #16100a;
  font-weight: 800; font-size: 1rem; letter-spacing: 0.02em;
}
.quote-card .name { display: block; font-weight: 700; color: var(--white); font-size: 0.99rem; }
.quote-card .role { display: block; font-size: 0.85rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 900px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.section--light .faq__item { border-color: rgba(11,11,12,0.1); }
.faq__q {
  width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 1.6rem;
  padding: 1.6rem 0.25rem;
  background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-body); font-size: clamp(1.06rem, 1.65vw, 1.21rem); font-weight: 700;
  color: var(--white); letter-spacing: -0.008em; line-height: 1.45;
  transition: color var(--t-fast);
}
.section--light .faq__q { color: var(--ink); }
.faq__q:hover { color: var(--gold); }
.section--light .faq__q:hover { color: var(--gold-deep); }
.faq__icon {
  position: relative; flex: none; width: 34px; height: 34px; margin-top: 2px;
  border: 1px solid var(--line-strong); border-radius: 50%;
  transition: background-color var(--t), transform var(--t);
}
.faq__icon::before, .faq__icon::after {
  content: ''; position: absolute; top: 50%; left: 50%; background: var(--gold);
  transform: translate(-50%, -50%); transition: transform var(--t), opacity var(--t);
}
.faq__icon::before { width: 13px; height: 1.5px; }
.faq__icon::after { width: 1.5px; height: 13px; }
.faq__q[aria-expanded='true'] .faq__icon { background: rgba(214,179,106,0.12); transform: rotate(180deg); }
.faq__q[aria-expanded='true'] .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); opacity: 0; }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s var(--ease); }
.faq__a > div { overflow: hidden; }
.faq__q[aria-expanded='true'] + .faq__a { grid-template-rows: 1fr; }
.faq__a p { padding: 0 3.2rem 1.75rem 0.25rem; color: var(--muted); line-height: 1.8; font-size: 1.02rem; }
.section--light .faq__a p { color: #55555e; }

/* ---------- Booking form ---------- */
.booking {
  position: relative;
  background: linear-gradient(165deg, #101013 0%, #08080a 100%);
  border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3.6vw, 3.2rem);
  box-shadow: 0 40px 90px -50px rgba(0,0,0,1);
}
.booking::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--gold-grad); border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.booking__head { margin-bottom: 2.2rem; }
.booking__head h2 { font-family: var(--font-display); font-size: clamp(1.95rem, 3.4vw, 2.75rem); font-weight: 500; color: var(--white); margin-bottom: 0.7rem; }
.booking__head p { color: var(--muted); font-size: 1.02rem; max-width: 56ch; }

.form-grid { display: grid; gap: 1.25rem 1.35rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 235px), 1fr)); }
.field { display: flex; flex-direction: column; gap: 0.5rem; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field > label {
  font-size: 0.79rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(246,244,240,0.72);
}
.field .req { color: var(--gold); margin-left: 2px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.95rem 1.05rem;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.13); border-radius: var(--radius);
  color: var(--white); font-size: 1rem; line-height: 1.5;
  transition: border-color var(--t-fast), background-color var(--t-fast), box-shadow var(--t-fast);
  -webkit-appearance: none; appearance: none;
}
.field textarea { resize: vertical; min-height: 128px; }
.field input::placeholder, .field textarea::placeholder { color: #6e6e78; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(255,255,255,0.24); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  background: rgba(214,179,106,0.06);
  box-shadow: 0 0 0 3px rgba(214,179,106,0.13);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d6b36a' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 17px;
  padding-right: 2.8rem; cursor: pointer;
}
.field select option { background: #131316; color: var(--white); }
.field input[type='date'], .field input[type='time'] { cursor: pointer; }
.field input[type='date']::-webkit-calendar-picker-indicator,
.field input[type='time']::-webkit-calendar-picker-indicator {
  filter: invert(78%) sepia(35%) saturate(500%) hue-rotate(1deg) brightness(93%);
  cursor: pointer; opacity: 0.9;
}
.field__error { font-size: 0.82rem; color: #ef8f7d; min-height: 0; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #d9694f; background: rgba(217,105,79,0.07); }
.field.has-error .field__error { display: block; }

.trip-type { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 152px), 1fr)); gap: 0.7rem; }
.trip-opt { position: relative; }
.trip-opt input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; cursor: pointer; }
.trip-opt span {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 0.7rem; text-align: center;
  border: 1px solid rgba(255,255,255,0.13); border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 600; color: rgba(246,244,240,0.82);
  background: rgba(255,255,255,0.025);
  transition: all var(--t-fast); cursor: pointer; line-height: 1.3;
}
.trip-opt input:hover + span { border-color: rgba(214,179,106,0.5); color: var(--white); }
.trip-opt input:checked + span {
  border-color: var(--gold); color: var(--gold-bright);
  background: rgba(214,179,106,0.12);
  box-shadow: inset 0 0 0 1px rgba(214,179,106,0.35);
}
.trip-opt input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

.booking__foot { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; justify-content: space-between; }
.booking__note { font-size: 0.88rem; color: var(--muted); display: flex; align-items: flex-start; gap: 0.6rem; max-width: 44ch; line-height: 1.6; }
.booking__note svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: 3px; }
.booking .btn--primary { min-width: 250px; }

/* Success panel */
.booking-success {
  display: none;
  text-align: center; padding: clamp(2rem, 5vw, 3.4rem) clamp(1rem, 3vw, 2rem);
  animation: fadeUp 0.65s var(--ease) both;
}
.booking-success.is-visible { display: block; }
.booking-success__icon {
  width: 92px; height: 92px; margin: 0 auto 1.9rem;
  border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  background: radial-gradient(circle at 32% 28%, rgba(214,179,106,0.28), rgba(214,179,106,0.04));
  color: var(--gold);
}
.booking-success__icon svg { width: 42px; height: 42px; animation: drawCheck 0.85s var(--ease) 0.18s both; }
@keyframes drawCheck { from { stroke-dasharray: 60; stroke-dashoffset: 60; } to { stroke-dasharray: 60; stroke-dashoffset: 0; } }
.booking-success h3 { font-family: var(--font-display); font-size: clamp(1.9rem, 3.6vw, 2.6rem); font-weight: 500; color: var(--white); margin-bottom: 1rem; }
.booking-success p { color: var(--muted); max-width: 54ch; margin: 0 auto 1rem; line-height: 1.8; font-size: 1.04rem; }
.booking-success__ref {
  display: inline-block; margin: 0.6rem 0 1.7rem; padding: 0.75rem 1.5rem;
  border: 1px dashed var(--line-strong); border-radius: var(--radius);
  font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
  background: rgba(214,179,106,0.05);
}
.booking-success__ref strong { color: var(--gold-bright); letter-spacing: 0.16em; }
.booking-success__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }
.booking.is-submitted .booking__form, .booking.is-submitted .booking__head { display: none; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; isolation: isolate; text-align: center; }
.cta-band img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.cta-band::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to right, rgba(4,4,5,0.95), rgba(4,4,5,0.78) 50%, rgba(4,4,5,0.95));
}
.cta-band__inner { max-width: 780px; margin-inline: auto; }
.cta-band h2 { color: var(--white); margin-bottom: 1.3rem; }
.cta-band p { color: rgba(246,244,240,0.82); font-size: var(--fs-lead); margin-inline: auto; max-width: 58ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.5rem; }

/* ---------- Divider ---------- */
.gold-rule { height: 1px; background: linear-gradient(90deg, transparent, rgba(214,179,106,0.45), transparent); border: 0; }

/* ---------- Footer ---------- */
.footer { background: #050506; border-top: 1px solid var(--line); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer__grid {
  display: grid; gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: 1.5fr 1fr 1fr 1.35fr;
  padding-bottom: clamp(2.5rem, 5vw, 3.75rem);
}
@media (max-width: 980px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__about p { color: var(--muted); font-size: 0.97rem; line-height: 1.78; margin-top: 1.25rem; max-width: 38ch; }
.footer__title {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
}
.footer__list { display: grid; gap: 0.85rem; }
.footer__list a, .footer__list span { color: var(--muted); font-size: 0.97rem; transition: color var(--t-fast), padding-left var(--t-fast); }
.footer__list a:hover { color: var(--gold); padding-left: 5px; }
.footer__contact li { display: flex; gap: 0.75rem; align-items: flex-start; color: var(--muted); font-size: 0.97rem; margin-bottom: 1rem; line-height: 1.6; }
.footer__contact svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 3px; }
.footer__contact a:hover { color: var(--gold); }
.placeholder-tag {
  display: inline-block; padding: 0.1rem 0.45rem; border-radius: 3px;
  background: rgba(214,179,106,0.1); border: 1px dashed rgba(214,179,106,0.4);
  color: var(--gold); font-size: 0.83rem; letter-spacing: 0.04em; font-weight: 600;
}
.footer__cta { margin-top: 1.5rem; }
.socials { display: flex; gap: 0.65rem; margin-top: 1.7rem; }
.socials a {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%; color: var(--muted);
  transition: all var(--t-fast);
}
.socials a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); background: rgba(214,179,106,0.07); }
.socials svg { width: 17px; height: 17px; }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding-block: 1.75rem;
  display: flex; flex-wrap: wrap; gap: 1rem 1.75rem; align-items: center; justify-content: space-between;
}
.footer__bottom p, .footer__bottom a { font-size: 0.88rem; color: #7d7d86; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer__legal a:hover { color: var(--gold); }
.footer__bottom > p { margin: 0; }
.footer__credit {
  display: inline-flex; align-items: center; gap: 0.45rem;
  letter-spacing: 0.02em;
  margin-right: auto;
  padding-left: 1.75rem;
  position: relative;
}
.footer__credit::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 1px; height: 13px; margin-top: -6px;
  background: var(--line);
}
.footer__credit-name {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.footer__bottom p.footer__credit { font-size: 0.84rem; }

/* ---------- Mobile sticky action bar ---------- */
.mobile-bar {
  position: fixed; z-index: 90; inset: auto 0 0 0;
  display: none; gap: 0.65rem; padding: 0.7rem calc(var(--gutter) * 0.7);
  padding-bottom: max(0.7rem, env(safe-area-inset-bottom));
  background: rgba(8,8,9,0.94); backdrop-filter: blur(18px);
  border-top: 1px solid var(--line);
  transform: translateY(110%); transition: transform var(--t);
}
.mobile-bar.is-visible { transform: translateY(0); }
.mobile-bar .btn { flex: 1; padding: 0.95rem 0.6rem; font-size: 0.8rem; letter-spacing: 0.06em; }
@media (max-width: 900px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 0; }
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal='fade'] { transform: none; }
[data-reveal='left'] { transform: translateX(-30px); }
[data-reveal='right'] { transform: translateX(30px); }
[data-reveal='zoom'] { transform: scale(0.965); }

/* Hero staged entrance */
.hero [data-hero] { opacity: 0; transform: translateY(24px); animation: fadeUp 1s var(--ease) forwards; }
.hero [data-hero='1'] { animation-delay: 0.15s; }
.hero [data-hero='2'] { animation-delay: 0.3s; }
.hero [data-hero='3'] { animation-delay: 0.45s; }
.hero [data-hero='4'] { animation-delay: 0.6s; }
.hero [data-hero='5'] { animation-delay: 0.75s; }

/* ---------- Responsive ---------- */
@media (min-width: 1180px) { .header__phone { display: inline-flex; } }
@media (max-width: 1120px) {
  .nav, .header__actions .btn--nav-cta { display: none; }
}
@media (min-width: 1121px) { .burger { display: none; } }
@media (max-width: 640px) {
  :root { --header-h: 74px; }
  .brand__name { font-size: 1.25rem; }
  .brand__mark { width: 62px; height: 48px; }
  .brand__lockup { width: 200px; }
  .booking__foot { flex-direction: column; align-items: stretch; }
  .booking .btn--primary { width: 100%; min-width: 0; }
  .booking__note { max-width: none; }
  .stat-float { position: static; margin-top: 1rem; max-width: none; }
  .hero__cta .btn { width: 100%; }
  .cta-band__actions .btn { width: 100%; }
  .footer__bottom { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer__credit { padding-left: 0; margin-right: 0; }
  .footer__credit::before { display: none; }
}

/* ---------- Print & motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal], .hero [data-hero] { opacity: 1 !important; transform: none !important; }
  .hero__media img { animation: none; transform: scale(1.02); }
}

/* ---------- 404 error page ---------- */
.error-page { display: flex; align-items: center; min-height: calc(100vh - var(--header-h) - 220px); }
.error-page__inner { max-width: 720px; }
.error-page__code {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.4vw, 4.1rem);
  line-height: 1.08; margin: 0.6rem 0 1.15rem;
}
.error-page__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.1rem; }
.error-page__links {
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.6rem;
  margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.error-page__links a {
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.03em;
  color: rgba(255,255,255,0.72); transition: color var(--t-fast);
}
.error-page__links a:hover { color: var(--gold); }
@media (max-width: 640px) {
  .error-page__cta .btn { width: 100%; }
}
