:root {
  --ink: #080808;
  --ink-soft: #11110f;
  --charcoal: #181714;
  --paper: #f4f0e8;
  --paper-deep: #e9e1d4;
  --white: #fffdf8;
  --gold: #d3aa61;
  --gold-light: #efd28d;
  --gold-dark: #9a6d2f;
  --muted: #9d998f;
  --line-dark: rgba(255, 255, 255, .13);
  --line-light: rgba(8, 8, 8, .13);
  --font-body: var(--font-geist), "Helvetica Neue", Arial, sans-serif;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --container: min(1280px, calc(100% - 72px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #050505;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main { background: var(--paper); }

body::selection { background: var(--gold); color: var(--ink); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.container { width: var(--container); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 98px;
  border-bottom: 1px solid var(--line-dark);
  background: linear-gradient(180deg, rgba(4, 4, 4, .84), rgba(4, 4, 4, .28));
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(230px, 360px) 1fr auto;
  align-items: center;
  gap: 38px;
}

.brand { width: min(100%, 342px); }
.brand img { width: 100%; height: auto; }

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 2.6vw, 42px);
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: color .25s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -12px;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active { color: var(--white); }
.desktop-nav a:hover::after,
.desktop-nav a.active::after { right: 0; }

.header-call {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  white-space: nowrap;
}

.header-call svg { width: 19px; color: var(--gold); }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 840px;
  height: min(940px, 100svh);
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("/assets/images/hero-fleet-composite.webp");
  background-size: cover;
  background-position: center center;
  transform: scale(1.01);
  animation: heroReveal 1.25s cubic-bezier(.2, .7, .2, 1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(2, 2, 2, .92) 0%, rgba(2, 2, 2, .68) 35%, rgba(2, 2, 2, .18) 68%, rgba(2, 2, 2, .08) 100%),
    linear-gradient(0deg, rgba(2, 2, 2, .72) 0%, transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: center;
  gap: 64px;
  padding-top: 94px;
  padding-bottom: 120px;
}

.hero-copy { max-width: 760px; animation: copyReveal .8s .2s both; }

.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .26em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span { width: 34px; height: 1px; background: currentColor; }
.eyebrow.light { color: var(--gold-light); }

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .94;
}

h1 { font-size: clamp(74px, 7vw, 118px); }
.hero-home h1 { max-width: 760px; font-size: clamp(56px, 5.5vw, 88px); }
h2 { font-size: clamp(54px, 5.2vw, 84px); }
h1 em, h2 em { color: var(--gold-light); font-weight: 400; }

.hero-lead {
  max-width: 620px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
  line-height: 1.7;
}

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

.button {
  min-height: 57px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.button:hover { transform: translateY(-2px); }
.button svg { width: 19px; height: 19px; }
.button-gold { background: var(--gold); color: #0a0907; border-color: var(--gold); }
.button-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.button-ghost { border-color: rgba(255, 255, 255, .34); color: var(--white); }
.button-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, .08); }
.button-outline-dark { border-color: rgba(8, 8, 8, .35); color: var(--ink); }
.button-outline-dark:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }

.hero-card {
  align-self: end;
  justify-self: end;
  width: min(100%, 385px);
  margin-bottom: 112px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(6, 6, 6, .52);
  backdrop-filter: blur(15px);
  animation: copyReveal .8s .42s both;
}

.hero-card-index {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .25em;
}

.hero-card-title {
  margin: 18px 0 20px;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.05;
}

.hero-card-line { height: 1px; background: var(--line-dark); margin-bottom: 20px; }
.hero-card > p:not(.hero-card-title) { color: rgba(255, 255, 255, .6); font-size: 13px; line-height: 1.75; }
.hero-card a { display: flex; align-items: center; justify-content: space-between; color: var(--gold-light); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.hero-card a svg { width: 19px; }

.hero-trust {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
}

.hero-trust > div {
  min-height: 92px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid var(--line-dark);
}

.hero-trust > div:first-child { border-left: 1px solid var(--line-dark); }
.hero-trust svg { width: 27px; color: var(--gold); }
.hero-trust span { font-size: 13px; font-weight: 500; }
.hero-trust small { display: block; margin-bottom: 2px; color: rgba(255,255,255,.45); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }

.section { padding: 132px 0; }
.intro-section { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 10vw; align-items: start; }
.intro-grid h2 { max-width: 600px; }
.intro-grid h2 em { color: var(--gold-dark); }
.intro-copy { max-width: 600px; padding-top: 42px; }
.intro-copy p { color: #5e5b54; }
.intro-copy .lead { color: var(--ink); font-family: var(--font-display); font-size: 28px; line-height: 1.42; }

.text-link {
  margin-top: 18px;
  padding-bottom: 7px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--gold-dark);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.text-link svg { width: 19px; transition: transform .25s ease; }
.text-link:hover svg { transform: translateX(4px); }

.services-section { background: var(--paper-deep); }
.section-heading { margin-bottom: 64px; }
.row-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.row-heading h2 { max-width: 800px; margin-bottom: 0; }
.row-heading h2 em { color: var(--gold-dark); }

.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line-light); }
.service-card { min-height: 390px; padding: 38px; display: flex; flex-direction: column; border-right: 1px solid var(--line-light); transition: background .3s ease, color .3s ease; }
.service-card:last-child { border-right: 0; }
.service-card:hover { background: var(--ink); color: var(--white); }
.card-number { color: var(--gold-dark); font-size: 10px; font-weight: 700; letter-spacing: .18em; }
.card-rule { height: 1px; margin: 29px 0 58px; background: currentColor; opacity: .16; }
.service-card h3 { margin-bottom: 19px; font-family: var(--font-display); font-size: 37px; font-weight: 400; line-height: 1.06; }
.service-card p { max-width: 340px; color: #68645d; font-size: 14px; line-height: 1.75; }
.service-card:hover p { color: rgba(255,255,255,.58); }
.service-card > a { width: 46px; height: 46px; margin-top: auto; display: grid; place-items: center; border: 1px solid currentColor; }
.service-card > a svg { width: 18px; }

.fleet-feature { position: relative; min-height: 780px; display: flex; align-items: center; overflow: hidden; background: #080808; color: var(--white); }
.fleet-feature-image { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.18)), url("/assets/images/fleet-coaches-hq.webp") center/cover no-repeat; }
.fleet-feature-inner { position: relative; z-index: 2; }
.fleet-panel { width: min(510px, 100%); padding: 58px; border: 1px solid rgba(255,255,255,.2); background: rgba(7,7,7,.66); backdrop-filter: blur(14px); }
.fleet-panel h2 { font-size: clamp(52px, 4.5vw, 74px); }
.fleet-panel p:not(.eyebrow) { margin-bottom: 32px; color: rgba(255,255,255,.62); }

.routes-section { background: var(--paper); }
.routes-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; align-items: center; }
.routes-copy { max-width: 500px; }
.routes-copy h2 em { color: var(--gold-dark); }
.routes-copy > p:not(.eyebrow) { color: #625f58; }
.route-list { border-top: 1px solid var(--line-light); }
.route-list > div { min-height: 102px; padding: 0 10px; display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 18px; border-bottom: 1px solid var(--line-light); transition: padding .25s ease, background .25s ease; }
.route-list > div:hover { padding-inline: 24px; background: rgba(255,255,255,.6); }
.route-list span { color: var(--gold-dark); font-size: 10px; letter-spacing: .16em; }
.route-list p { margin: 0; font-family: var(--font-display); font-size: 28px; }
.route-list svg { width: 22px; color: var(--gold-dark); }

.cta-section { padding: 100px 0; background: var(--ink); color: var(--white); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.cta-inner h2 { margin-bottom: 0; font-size: clamp(52px, 5vw, 80px); }
.cta-actions { display: flex; flex-direction: column; align-items: stretch; gap: 15px; min-width: 310px; }
.cta-phone { color: rgba(255,255,255,.55); font-size: 12px; letter-spacing: .08em; text-align: center; }

.site-footer { padding: 92px 0 118px; background: #050505; color: var(--white); border-top: 1px solid var(--line-dark); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .6fr .8fr; gap: 9vw; padding-bottom: 65px; }
.footer-brand img { width: 340px; margin-bottom: 25px; }
.footer-brand p { max-width: 430px; color: rgba(255,255,255,.46); font-size: 14px; }
.footer-title { margin-bottom: 22px; color: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.footer-links, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-links a, .footer-contact a, .footer-contact span { color: rgba(255,255,255,.58); font-size: 13px; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-light); }
.footer-legal { padding: 24px 0; border-top: 1px solid var(--line-dark); color: rgba(255,255,255,.42); }
.footer-legal p { margin: 0; font-size: 11px; line-height: 1.75; }
.footer-legal p:first-child { color: rgba(255,255,255,.64); }
.footer-bottom { padding-top: 25px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; border-top: 1px solid var(--line-dark); color: rgba(255,255,255,.32); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.footer-credit a { color: rgba(255,255,255,.54); transition: color .2s ease; }
.footer-credit a:hover { color: var(--gold-light); }

.bottom-bar {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 14px;
  width: min(760px, calc(100% - 28px));
  min-height: 68px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.15fr;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(7,7,7,.94);
  color: var(--white);
  box-shadow: 0 18px 55px rgba(0,0,0,.38);
  backdrop-filter: blur(18px);
}
.bottom-bar > a { padding: 10px 18px; display: flex; align-items: center; justify-content: center; gap: 12px; border-right: 1px solid var(--line-dark); }
.bottom-bar > a:last-child { border-right: 0; }
.bottom-bar svg { width: 21px; color: var(--gold); }
.bottom-bar span { font-size: 12px; font-weight: 600; line-height: 1.3; }
.bottom-bar small { display: block; margin-bottom: 2px; color: rgba(255,255,255,.38); font-size: 8px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.bottom-bar .whatsapp { background: #0c2316; }
.bottom-bar .whatsapp svg { color: #62d38c; }
.bottom-bar .book { background: var(--gold); color: var(--ink); }
.bottom-bar .book svg { color: var(--ink); }
.bottom-bar .book small { color: rgba(8,8,8,.52); }

/* Inner pages */
.inner-hero { position: relative; min-height: 650px; padding: 190px 0 105px; display: flex; align-items: end; overflow: hidden; background: var(--ink); color: var(--white); }
.inner-hero::before { content: ""; position: absolute; inset: 0; background: var(--inner-image, url("/assets/images/hero-transfer.webp")) center/cover no-repeat; opacity: .52; }
.inner-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,3,3,.94), rgba(3,3,3,.4)), linear-gradient(0deg, rgba(3,3,3,.75), transparent 55%); }
.inner-hero-content { position: relative; z-index: 2; }
.inner-hero h1 { max-width: 980px; margin-bottom: 25px; font-size: clamp(68px, 7vw, 108px); }
.inner-hero h1 em { color: var(--gold-light); }
.inner-hero .hero-lead { margin-bottom: 0; }
.services-hero { --inner-image: url("/assets/images/hero-transfer.webp"); }
.fleet-hero { --inner-image: url("/assets/images/real-coaches.webp"); }
.destinations-hero { --inner-image: url("/assets/images/adriatic-route.webp"); }
.contact-hero { min-height: 560px; --inner-image: url("/assets/images/hero-transfer.webp"); }
.legal-hero { min-height: 560px; --inner-image: url("/assets/images/executive-sedan.webp"); }

.page-section { padding: 118px 0; }
.page-section.alt { background: var(--paper-deep); }
.page-heading { max-width: 780px; margin-bottom: 64px; }
.page-heading h2 em { color: var(--gold-dark); }
.page-heading > p:not(.eyebrow) { max-width: 640px; color: #625f58; font-size: 17px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); }
.feature-card { min-height: 345px; padding: 38px; background: var(--paper); }
.feature-card .feature-icon { width: 48px; height: 48px; margin-bottom: 55px; display: grid; place-items: center; border: 1px solid var(--gold-dark); color: var(--gold-dark); }
.feature-card .feature-icon svg { width: 22px; }
.feature-card h3 { margin-bottom: 15px; font-family: var(--font-display); font-size: 34px; font-weight: 400; line-height: 1.05; }
.feature-card p { color: #66625a; font-size: 14px; }

.service-detail-list { border-top: 1px solid var(--line-light); }
.service-detail { padding: 44px 0; display: grid; grid-template-columns: 90px .8fr 1.2fr; gap: 5vw; border-bottom: 1px solid var(--line-light); align-items: start; }
.service-detail > span { color: var(--gold-dark); font-size: 10px; font-weight: 700; letter-spacing: .2em; }
.service-detail h3 { font-family: var(--font-display); font-size: 40px; font-weight: 400; line-height: 1.05; }
.service-detail p { max-width: 620px; color: #625f58; }

.image-split { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 690px; background: var(--ink); color: var(--white); }
.image-split-media { min-height: 600px; background: var(--split-image, url("/assets/images/fleet-lineup.webp")) center/cover no-repeat; }
.image-split-media-portrait { background-position: center 58%; }
.image-split-copy { padding: 8vw; display: flex; flex-direction: column; justify-content: center; }
.image-split-copy h2 { font-size: clamp(50px, 4.5vw, 74px); }
.image-split-copy p:not(.eyebrow) { color: rgba(255,255,255,.58); }

.fleet-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.home-fleet-section { background: var(--paper); }
.home-fleet-section .section-heading { margin-bottom: 64px; }
.fleet-card { position: relative; min-height: 430px; padding: 35px; display: flex; flex-direction: column; justify-content: end; overflow: hidden; background: var(--ink); color: var(--white); }
.fleet-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.96), rgba(0,0,0,.06) 72%); }
.fleet-card-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.fleet-card-image-portrait { object-position: center 50%; }
.fleet-card:hover .fleet-card-image { transform: scale(1.04); }
.fleet-card-content { position: relative; z-index: 2; }
.fleet-card h3 { margin-bottom: 7px; font-family: var(--font-display); font-size: 37px; font-weight: 400; }
.fleet-card p { margin: 0; color: rgba(255,255,255,.55); font-size: 13px; }

.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); }
.spec-item { padding: 32px; display: flex; align-items: center; gap: 18px; background: var(--paper); }
.spec-item svg { width: 26px; color: var(--gold-dark); }
.spec-item h3 { margin: 0 0 3px; font-size: 14px; }
.spec-item p { margin: 0; color: #6d6960; font-size: 13px; }

.destination-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.destination-card { min-height: 330px; padding: 42px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line-light); background: rgba(255,255,255,.34); transition: background .3s ease, transform .3s ease; }
.destination-card:hover { background: var(--white); transform: translateY(-4px); }
.destination-card > span { color: var(--gold-dark); font-size: 10px; letter-spacing: .2em; }
.destination-card h3 { margin-bottom: 13px; font-family: var(--font-display); font-size: 39px; font-weight: 400; line-height: 1.05; }
.destination-card p { max-width: 470px; color: #68645c; font-size: 14px; }
.destination-card a { display: inline-flex; align-items: center; gap: 20px; color: var(--gold-dark); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.destination-card a svg { width: 18px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); }
.step { padding: 15px 42px 15px 0; border-right: 1px solid var(--line-light); }
.step + .step { padding-left: 42px; }
.step:last-child { border-right: 0; }
.step > span { display: block; margin-bottom: 34px; color: var(--gold-dark); font-size: 10px; letter-spacing: .2em; }
.step h3 { font-family: var(--font-display); font-size: 33px; font-weight: 400; }
.step p { color: #68645c; font-size: 14px; }

.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 8vw; align-items: start; }
.contact-copy { padding-top: 35px; }
.contact-copy h2 { font-size: clamp(52px, 4.3vw, 72px); }
.contact-copy h2 em { color: var(--gold-dark); }
.contact-copy > p:not(.eyebrow) { color: #625f58; }
.contact-options { margin-top: 42px; border-top: 1px solid var(--line-light); }
.contact-option { padding: 22px 0; display: flex; align-items: center; gap: 18px; border-bottom: 1px solid var(--line-light); }
.contact-option > span:first-child { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--gold-dark); color: var(--gold-dark); }
.contact-option svg { width: 21px; }
.contact-option small { display: block; color: #777269; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.contact-option strong { font-size: 14px; font-weight: 600; }

.booking-form { padding: 52px; background: var(--ink); color: var(--white); }
.form-heading { margin-bottom: 42px; display: flex; align-items: center; gap: 20px; }
.form-icon { width: 52px; height: 52px; display: grid; place-items: center; background: #143822; color: #68d894; }
.form-icon svg { width: 25px; }
.form-heading .eyebrow { margin-bottom: 8px; }
.form-heading h2 { margin: 0; font-size: 42px; line-height: 1.05; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 18px; }
.form-grid label { display: flex; flex-direction: column; gap: 8px; }
.form-grid label > span { color: rgba(255,255,255,.55); font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.form-wide { grid-column: 1 / -1; }
.booking-form input, .booking-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.17); border-radius: 0; background: rgba(255,255,255,.055); color: var(--white); outline: none; transition: border-color .2s ease, background .2s ease; }
.booking-form input { height: 52px; padding: 0 15px; }
.booking-form textarea { padding: 14px 15px; resize: vertical; }
.booking-form input:focus, .booking-form textarea:focus { border-color: var(--gold); background: rgba(255,255,255,.08); }
.booking-form input::placeholder, .booking-form textarea::placeholder { color: rgba(255,255,255,.28); }
.booking-form input[type="datetime-local"] { color-scheme: dark; }
.form-submit { width: 100%; margin-top: 24px; }
.form-error { margin: 18px 0 0; color: #ffb0a8; font-size: 13px; }
.form-note { margin: 13px 0 0; color: rgba(255,255,255,.34); font-size: 10px; text-align: center; }

.faq-list { max-width: 900px; border-top: 1px solid var(--line-light); }
.faq-list details { border-bottom: 1px solid var(--line-light); }
.faq-list summary { padding: 24px 0; display: flex; justify-content: space-between; gap: 20px; cursor: pointer; font-family: var(--font-display); font-size: 26px; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--gold-dark); font-family: var(--font-body); font-size: 21px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 720px; padding: 0 0 24px; color: #625f58; }

.fleet-gallery-section { background: var(--ink); color: var(--white); }
.fleet-gallery-section .page-heading > p:not(.eyebrow) { color: rgba(255,255,255,.58); }
.real-fleet-gallery { display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: 440px 440px; gap: 18px; }
.real-fleet-gallery figure { position: relative; margin: 0; overflow: hidden; background: #111; }
.real-fleet-gallery .gallery-wide { grid-column: 1; grid-row: 1; }
.real-fleet-gallery .gallery-tall { grid-column: 2; grid-row: 1 / span 2; }
.real-fleet-gallery figure:nth-child(3) { grid-column: 1; grid-row: 2; width: calc(50% - 9px); }
.real-fleet-gallery figure:nth-child(4) { grid-column: 1; grid-row: 2; width: calc(50% - 9px); justify-self: end; }
.real-fleet-gallery img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.real-fleet-gallery .gallery-tall img { object-position: center 48%; }
.real-fleet-gallery figure:hover img { transform: scale(1.025); }
.real-fleet-gallery figcaption { position: absolute; z-index: 2; left: 22px; bottom: 20px; padding: 8px 12px; background: rgba(5,5,5,.78); color: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; backdrop-filter: blur(8px); }

.legal-section { background: var(--paper-deep); }
.legal-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; align-items: start; }
.legal-side { display: grid; gap: 24px; }
.legal-card { padding: 48px; border: 1px solid var(--line-light); background: var(--paper); }
.legal-card h2 { margin-bottom: 36px; font-size: 54px; }
.legal-card p:not(.eyebrow) { color: #625f58; }
.legal-data { margin: 0; }
.legal-data > div { padding: 18px 0; display: grid; grid-template-columns: 175px 1fr; gap: 25px; border-top: 1px solid var(--line-light); }
.legal-data dt { color: var(--gold-dark); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.legal-data dd { margin: 0; color: #3f3c36; font-size: 14px; line-height: 1.7; }
.legal-data a { border-bottom: 1px solid var(--gold-dark); }
.legal-data.compact > div { grid-template-columns: 135px 1fr; }

.cookie-notice { position: fixed; z-index: 110; left: 20px; bottom: 98px; width: min(410px, calc(100% - 40px)); padding: 28px; border: 1px solid rgba(255,255,255,.2); background: rgba(8,8,8,.97); color: var(--white); box-shadow: 0 22px 65px rgba(0,0,0,.45); backdrop-filter: blur(16px); }
.cookie-label { margin-bottom: 7px; color: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.cookie-notice h2 { margin-bottom: 10px; font-family: var(--font-display); font-size: 32px; line-height: 1.05; }
.cookie-notice > p:not(.cookie-label) { margin-bottom: 20px; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.65; }
.cookie-close { position: absolute; top: 11px; right: 14px; border: 0; background: transparent; color: rgba(255,255,255,.55); cursor: pointer; font-size: 24px; line-height: 1; }
.cookie-actions { display: flex; align-items: center; gap: 20px; }
.cookie-actions .button { min-height: 44px; padding-inline: 18px; }
.cookie-actions a { color: rgba(255,255,255,.62); font-size: 10px; border-bottom: 1px solid rgba(255,255,255,.28); }

@keyframes heroReveal { from { opacity: 0; transform: scale(1.06); } to { opacity: 1; transform: scale(1.01); } }
@keyframes copyReveal { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

@media (max-width: 1120px) {
  :root { --container: min(100% - 46px, 1100px); }
  .header-inner { grid-template-columns: 280px 1fr auto; gap: 20px; }
  .desktop-nav { gap: 20px; }
  .desktop-nav a { font-size: 9px; }
  .header-call span { display: none; }
  .header-call { width: 42px; height: 42px; justify-content: center; border: 1px solid var(--line-dark); }
  .hero-content { grid-template-columns: 1fr .55fr; gap: 32px; }
  .hero-card { margin-bottom: 105px; }
  .intro-grid { gap: 7vw; }
  .footer-grid { gap: 6vw; }
}

@media (max-width: 860px) {
  :root { --container: calc(100% - 36px); }
  body { padding-bottom: 0; }
  .site-header { height: 82px; }
  .header-inner { grid-template-columns: minmax(220px, 300px) 1fr; }
  .desktop-nav, .header-call { display: none; }
  .mobile-menu { display: block; justify-self: end; position: relative; }
  .mobile-menu summary { width: 46px; height: 46px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; border: 1px solid var(--line-dark); cursor: pointer; list-style: none; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { width: 19px; height: 1px; background: var(--white); }
  .mobile-menu nav { position: fixed; top: 82px; left: 0; right: 0; padding: 20px 18px 28px; display: flex; flex-direction: column; background: rgba(5,5,5,.98); border-top: 1px solid var(--line-dark); box-shadow: 0 30px 60px rgba(0,0,0,.5); }
  .mobile-menu nav a { padding: 14px 2px; border-bottom: 1px solid var(--line-dark); color: var(--white); font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
  .mobile-menu nav a:last-child { margin-top: 14px; padding: 16px; background: var(--gold); color: var(--ink); text-align: center; }
  .hero { min-height: 820px; height: auto; }
  .hero-content { min-height: 820px; grid-template-columns: 1fr; align-content: center; padding-top: 130px; padding-bottom: 190px; }
  .hero-copy { max-width: 640px; }
  .hero-card { display: none; }
  .hero-image { background-position: 62% center; opacity: .78; }
  .hero-shade { background: linear-gradient(90deg, rgba(2,2,2,.92), rgba(2,2,2,.38)), linear-gradient(0deg, rgba(2,2,2,.82), transparent 50%); }
  h1 { font-size: clamp(66px, 13vw, 92px); }
  h2 { font-size: clamp(50px, 10vw, 70px); }
  .hero-trust > div { padding: 15px 16px; }
  .hero-trust svg { width: 23px; }
  .section { padding: 96px 0; }
  .intro-grid, .routes-grid, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .intro-copy { padding-top: 0; }
  .service-cards, .feature-grid, .fleet-cards { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .service-card:last-child { border-bottom: 0; }
  .card-rule { margin-bottom: 35px; }
  .fleet-feature { min-height: 700px; }
  .fleet-panel { padding: 44px; }
  .routes-grid { gap: 60px; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .cta-actions { width: min(100%, 380px); }
  .footer-grid { grid-template-columns: 1.2fr .8fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .bottom-bar { bottom: 0; width: 100%; min-height: 72px; border-left: 0; border-right: 0; border-bottom: 0; }
  .bottom-bar > a { padding-inline: 10px; }
  .bottom-bar span { font-size: 10px; }
  .bottom-bar small { font-size: 7px; }
  .inner-hero { min-height: 600px; padding-top: 165px; }
  .page-section { padding: 92px 0; }
  .service-detail { grid-template-columns: 55px 1fr; gap: 18px; }
  .service-detail p { grid-column: 2; }
  .image-split { grid-template-columns: 1fr; }
  .image-split-media { min-height: 500px; }
  .image-split-copy { padding: 80px var(--container); }
  .destination-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step, .step + .step { padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .step:last-child { border-bottom: 0; }
  .step > span { margin-bottom: 17px; }
  .contact-copy { padding-top: 0; }
  .real-fleet-gallery { grid-template-columns: 1fr; grid-template-rows: 340px 500px 340px 340px; }
  .real-fleet-gallery .gallery-wide, .real-fleet-gallery .gallery-tall, .real-fleet-gallery figure:nth-child(3), .real-fleet-gallery figure:nth-child(4) { grid-column: 1; grid-row: auto; width: 100%; }
  .legal-layout { grid-template-columns: 1fr; }
  .cookie-notice { left: 14px; bottom: 84px; width: calc(100% - 28px); }
}

@media (max-width: 560px) {
  :root { --container: calc(100% - 28px); }
  .site-header { height: 74px; }
  .header-inner { grid-template-columns: minmax(190px, 260px) 1fr; }
  .brand { width: 236px; }
  .mobile-menu nav { top: 74px; }
  .hero { min-height: 760px; }
  .hero-content { min-height: 760px; padding-top: 120px; padding-bottom: 185px; align-content: start; }
  .hero-copy { padding-top: 55px; }
  .hero-image { background-position: 67% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(2,2,2,.94), rgba(2,2,2,.25)), linear-gradient(0deg, rgba(2,2,2,.9), transparent 60%); }
  h1 { font-size: clamp(53px, 16vw, 72px); line-height: .95; }
  .hero-home h1 { font-size: clamp(46px, 13vw, 64px); }
  h2 { font-size: clamp(45px, 13vw, 60px); }
  .hero-lead { font-size: 15px; line-height: 1.65; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-trust { grid-template-columns: repeat(3, 1fr); }
  .hero-trust > div { min-height: 78px; padding: 10px 5px; justify-content: center; text-align: center; border-left: 0 !important; }
  .hero-trust svg { display: none; }
  .hero-trust span { font-size: 10px; }
  .hero-trust small { font-size: 7px; }
  .section, .page-section { padding: 78px 0; }
  .intro-copy .lead { font-size: 24px; }
  .row-heading { align-items: flex-start; flex-direction: column; }
  .service-card { padding: 28px; }
  .fleet-feature { min-height: 650px; align-items: end; }
  .fleet-feature-image { background-position: 58% center; }
  .fleet-feature-inner { width: 100%; }
  .fleet-panel { width: 100%; padding: 34px 28px; border-left: 0; border-right: 0; }
  .route-list > div { grid-template-columns: 36px 1fr auto; padding-inline: 0; }
  .route-list p { font-size: 22px; }
  .cta-section { padding: 75px 0; }
  .cta-inner { gap: 38px; }
  .site-footer { padding: 70px 0 102px; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-brand img { width: 290px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .bottom-bar { grid-template-columns: .8fr 1fr 1.15fr; }
  .bottom-bar svg { width: 19px; }
  .bottom-bar > a:first-child span small { display: none; }
  .bottom-bar > a:first-child span { font-size: 0; }
  .bottom-bar > a:first-child span::after { content: "Call"; font-size: 10px; }
  .inner-hero { min-height: 540px; padding: 145px 0 80px; }
  .inner-hero h1 { font-size: clamp(54px, 15vw, 76px); }
  .page-heading { margin-bottom: 45px; }
  .service-detail { padding: 34px 0; grid-template-columns: 40px 1fr; }
  .service-detail h3 { font-size: 32px; }
  .image-split-media { min-height: 390px; }
  .image-split-copy { padding: 65px 28px; }
  .fleet-card { min-height: 380px; }
  .spec-grid { grid-template-columns: 1fr; }
  .destination-card { min-height: 300px; padding: 31px; }
  .booking-form { margin-inline: -14px; padding: 36px 22px; }
  .form-heading { align-items: flex-start; }
  .form-heading h2 { font-size: 34px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .legal-card { padding: 32px 24px; }
  .legal-data > div, .legal-data.compact > div { grid-template-columns: 1fr; gap: 7px; }
  .cookie-notice { padding: 23px; }
  .cookie-actions { align-items: flex-start; flex-direction: column; gap: 13px; }
}

/* Mobile home hero: keep the message readable, then show the full fleet image. */
@media (max-width: 860px) {
  .hero-home {
    min-height: 0;
    height: auto;
    display: grid;
    grid-template-areas:
      "content"
      "image"
      "trust";
    overflow: hidden;
  }

  .hero-home .hero-content {
    grid-area: content;
    min-height: 0;
    height: auto;
    padding-top: 148px;
    padding-bottom: 64px;
  }

  .hero-home .hero-copy { padding-top: 0; }

  .hero-home .hero-image {
    grid-area: image;
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 1672 / 941;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-home .hero-shade { display: none; }

  .hero-home .hero-trust {
    grid-area: trust;
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
  }
}

@media (max-width: 560px) {
  .hero-home .hero-content {
    padding-top: 124px;
    padding-bottom: 52px;
  }
}

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