/* ═══════════════════════════════════════════════
   Deluxe Travel Tours
   Black and gold, taken from the brand's own
   number plate. White cars, dark canvas, gold
   used sparingly so it still reads as gold.
   ═══════════════════════════════════════════════ */

:root {
  /* Surfaces: never pure black, so the white cars have somewhere to sit */
  --ink:        #0B0B0D;
  --ink-2:      #131317;
  --ink-3:      #1C1C22;
  --ink-4:      #26262E;

  /* Gold, three stops so it can shade rather than sit flat */
  --gold:       #D8B863;
  --gold-hi:    #F2DFA4;
  --gold-deep:  #9C7A2A;

  --paper:      #F7F4ED;
  --paper-2:    #EFEBE1;
  --dim:        #B4B0A6;
  --dimmer:     #85817A;

  --line:       rgba(216, 184, 99, .16);
  --line-soft:  rgba(247, 244, 237, .09);

  --wa:         #25D366;

  /* Type */
  --display: 'Bodoni Moda', 'Times New Roman', serif;
  --body:    'Manrope', system-ui, -apple-system, sans-serif;

  --t-hero:  clamp(2.7rem, 1.2rem + 6.4vw, 6.6rem);
  --t-h1:    clamp(2.3rem, 1.3rem + 4.2vw, 4.6rem);
  --t-h2:    clamp(1.85rem, 1.15rem + 2.7vw, 3.3rem);
  --t-h3:    clamp(1.08rem, .98rem + .38vw, 1.3rem);
  --t-body:  clamp(1rem, .96rem + .18vw, 1.09rem);

  /* Rhythm: deliberately uneven, not one padding everywhere */
  --gut:     clamp(1.25rem, .7rem + 2.2vw, 2.75rem);
  --sec:     clamp(4.5rem, 3rem + 6vw, 9rem);
  --sec-sm:  clamp(3rem, 2.2rem + 3vw, 5rem);
  --max:     1240px;

  --r-sm: 6px;
  --r:    12px;
  --r-lg: 20px;

  --dur:  .42s;
  --dur-q: .2s;
  --ease: cubic-bezier(.22, 1, .36, 1);

  /* Layered, colour-tinted shadows. Never a flat grey box-shadow. */
  --lift: 0 1px 2px rgba(0,0,0,.4), 0 8px 24px -8px rgba(0,0,0,.55), 0 24px 60px -30px rgba(216,184,99,.18);
  --lift-hi: 0 2px 4px rgba(0,0,0,.45), 0 14px 34px -10px rgba(0,0,0,.6), 0 34px 80px -34px rgba(216,184,99,.3);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: var(--t-body);
  line-height: 1.72;
  letter-spacing: .002em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain, so the flat dark areas have some tooth */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .32;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.018em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: var(--t-h1); }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); font-weight: 600; letter-spacing: -.008em; line-height: 1.25; }

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

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

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

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.sec { padding-block: var(--sec); }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--gold);
  color: var(--ink);
  padding: .8rem 1.3rem;
  font-weight: 700;
}
.skip:focus { left: .5rem; top: .5rem; }

/* ── Eyebrow ─────────────────────────────────── */

.eyebrow {
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.15rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before {
  content: '';
  width: clamp(18px, 4vw, 34px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  flex: none;
}
.center .eyebrow { justify-content: center; }

/* ── Buttons ─────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .82rem 1.5rem;
  border-radius: 100px;
  font-family: var(--body);
  font-size: .93rem;
  font-weight: 600;
  letter-spacing: .01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--dur-q) var(--ease),
              background-color var(--dur-q) var(--ease),
              border-color var(--dur-q) var(--ease),
              color var(--dur-q) var(--ease),
              box-shadow var(--dur-q) var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn.lg { padding: 1rem 1.85rem; font-size: 1rem; }
.btn.full { width: 100%; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(165deg, var(--gold-hi), var(--gold) 42%, var(--gold-deep));
  color: #16130B;
  box-shadow: 0 1px 2px rgba(0,0,0,.4), 0 10px 26px -10px rgba(216,184,99,.55);
}
.btn-gold:hover {
  box-shadow: 0 2px 4px rgba(0,0,0,.45), 0 16px 38px -12px rgba(216,184,99,.7);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--paper);
  background: rgba(247,244,237,.03);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(216,184,99,.09);
  color: var(--gold-hi);
}

.btn-dark {
  background: var(--ink-3);
  color: var(--paper);
  border-color: var(--line);
}
.btn-dark:hover { background: var(--ink-4); border-color: var(--gold); color: var(--gold-hi); }

.btn-wa { background: var(--wa); color: #06301A; }
.btn-wa:hover { background: #2ee977; }

/* ── Header ──────────────────────────────────── */

.bar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11,11,13,.72);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.bar.stuck {
  background: rgba(11,11,13,.94);
  border-bottom-color: var(--line);
}

.bar-in {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  min-height: 74px;
  padding-block: .55rem;
}

.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand-mark { color: var(--gold); display: block; }
.brand-mark .mk { width: 30px; height: 30px; display: block; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand-txt strong {
  font-family: var(--display);
  font-size: 1.24rem;
  font-weight: 600;
  letter-spacing: .012em;
}
.brand-txt em {
  font-style: normal;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .16rem;
}

.links { display: none; gap: .3rem; }
.links a {
  position: relative;
  padding: .5rem .72rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--dim);
  border-radius: var(--r-sm);
  transition: color var(--dur-q) var(--ease);
}
.links a::after {
  content: '';
  position: absolute;
  left: .72rem;
  right: .72rem;
  bottom: .18rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-q) var(--ease);
}
.links a:hover { color: var(--paper); }
.links a:hover::after { transform: scaleX(1); }
.links a.on { color: var(--gold); }
.links a.on::after { transform: scaleX(1); }

.bar-cta { display: none; align-items: center; gap: .8rem; }
.tel {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--paper);
  transition: color var(--dur-q) var(--ease);
}
.tel svg { width: 16px; height: 16px; color: var(--gold); }
.tel:hover { color: var(--gold-hi); }

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
}
.burger span {
  display: block;
  height: 1.5px;
  background: var(--paper);
  border-radius: 2px;
  transition: transform var(--dur-q) var(--ease), opacity var(--dur-q) var(--ease);
}
.burger[aria-expanded='true'] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.sheet {
  position: fixed;
  inset: 74px 0 auto;
  z-index: 55;
  background: rgba(11,11,13,.985);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: .5rem var(--gut) 1.6rem;
  display: flex;
  flex-direction: column;
  transform: translateY(-115%);
  transition: transform var(--dur) var(--ease);
}
.sheet.open { transform: translateY(0); }
.sheet a {
  padding: .95rem .2rem;
  border-bottom: 1px solid var(--line-soft);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--paper);
}
.sheet a:last-child { border-bottom: 0; }
.sheet-tel { color: var(--gold) !important; font-weight: 700 !important; }

/* ── Hero ────────────────────────────────────── */

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(94vh, 860px);
  display: flex;
  align-items: flex-end;
  padding-block: clamp(6rem, 12vh, 9rem) clamp(3.5rem, 9vh, 6.5rem);
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 42%;
  transform: scale(1.06);
  animation: drift 26s var(--ease) infinite alternate;
}
@keyframes drift {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to   { transform: scale(1.12) translate3d(-1.4%, -1.4%, 0); }
}

/* The scrim. Dims where the words are, dies out before the corners
   so the sky and the cars stay live. */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    /* Anchored on the text column, so the words sit on their own dark
       ground while the car and the sunset stay live to the right. */
    linear-gradient(100deg, rgba(11,11,13,.93) 0%, rgba(11,11,13,.82) 26%, rgba(11,11,13,.44) 52%, rgba(11,11,13,.1) 76%),
    linear-gradient(to top, rgba(11,11,13,.96) 4%, rgba(11,11,13,.6) 30%, rgba(11,11,13,.08) 62%, rgba(11,11,13,.4) 100%);
}
@media (max-width: 859px) {
  /* One column on phones, so the scrim runs bottom-up instead of sideways. */
  .hero::before {
    background:
      linear-gradient(to top, rgba(11,11,13,.97) 8%, rgba(11,11,13,.88) 38%, rgba(11,11,13,.5) 66%, rgba(11,11,13,.5) 100%);
  }
}

.hero-in { position: relative; z-index: 2; }
.hero h1 {
  font-size: var(--t-hero);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(11,11,13,.7);
}
.hero-sub {
  max-width: 46ch;
  font-size: clamp(1.02rem, .95rem + .38vw, 1.22rem);
  color: var(--paper-2);
  margin-bottom: 2.1rem;
  text-shadow: 0 1px 16px rgba(11,11,13,.8);
}
.hero-act { display: flex; flex-wrap: wrap; gap: .75rem; }

.hero-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 140px;
  z-index: 1;
  background: linear-gradient(to bottom, transparent, var(--ink));
  pointer-events: none;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .55rem;
  list-style: none;
  margin: 2.2rem 0 0;
  padding: 0;
}
.chips li {
  display: inline-flex;
  align-items: center;
  gap: .48rem;
  padding: .5rem .9rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(11,11,13,.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--paper-2);
}
.chips svg { width: 15px; height: 15px; color: var(--gold); flex: none; }

/* ── Page head (inner pages) ─────────────────── */

.pagehead {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(6.5rem, 14vh, 10rem) clamp(3.5rem, 8vh, 6rem);
}
.pagehead-bg { position: absolute; inset: 0; z-index: -2; }
.pagehead-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.04);
}
.pagehead::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(11,11,13,.97) 6%, rgba(11,11,13,.8) 40%, rgba(11,11,13,.4) 100%),
    radial-gradient(110% 80% at 12% 80%, rgba(11,11,13,.8), transparent 70%);
}
.pagehead.short {
  padding-block: clamp(5.5rem, 12vh, 8rem) clamp(2.5rem, 6vh, 4rem);
  background: radial-gradient(120% 100% at 20% 0%, var(--ink-2), var(--ink) 70%);
  border-bottom: 1px solid var(--line);
}
.pagehead-in { position: relative; z-index: 2; }
.pagehead-sub {
  max-width: 52ch;
  color: var(--paper-2);
  font-size: clamp(1rem, .95rem + .3vw, 1.15rem);
  margin: 1.3rem 0 2rem;
}
.pagehead h1 { text-shadow: 0 2px 26px rgba(11,11,13,.65); }

.crumb {
  font-size: .78rem;
  letter-spacing: .05em;
  color: var(--dimmer);
  margin-bottom: 1.4rem;
}
.crumb a { color: var(--dim); border-bottom: 1px solid var(--line); }
.crumb a:hover { color: var(--gold); }
.crumb span { margin: 0 .45rem; opacity: .5; }

/* ── Section heads ───────────────────────────── */

.sec-head { max-width: 60ch; margin-bottom: clamp(2.4rem, 4vw, 3.6rem); }
.sec-head h2 { margin-bottom: 1.1rem; }
.sec-head p { color: var(--dim); max-width: 54ch; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center p { margin-inline: auto; }

.h-sm {
  font-size: clamp(1.4rem, 1.2rem + .8vw, 1.85rem);
  margin-bottom: 1.5rem;
}

/* ── Cards ───────────────────────────────────── */

.cards {
  display: grid;
  gap: clamp(.85rem, 1.5vw, 1.25rem);
  grid-template-columns: 1fr;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.4vw, 2.1rem);
  min-width: 0;
  background: linear-gradient(168deg, var(--ink-2), var(--ink) 72%);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform var(--dur-q) var(--ease),
              border-color var(--dur-q) var(--ease),
              box-shadow var(--dur-q) var(--ease);
}
.card::after {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--dur) var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  box-shadow: var(--lift);
}
.card:hover::after { transform: scaleX(1); }

.card-ico {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  margin-bottom: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  background: radial-gradient(circle at 32% 28%, rgba(216,184,99,.16), transparent 70%);
}
.card-ico svg { width: 21px; height: 21px; }
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--dim); font-size: .93rem; line-height: 1.68; }
.card-go {
  margin-top: auto;
  padding-top: 1.2rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gold);
}
.card-go span { display: inline-block; transition: transform var(--dur-q) var(--ease); }
.card:hover .card-go span { transform: translateX(4px); }

/* ── Showcase (full-bleed image band) ────────── */

.showcase {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(5rem, 10vw, 8.5rem);
  margin-block: var(--sec-sm);
}
.showcase-bg { position: absolute; inset: 0; z-index: -2; }
.showcase-bg img { width: 100%; height: 100%; object-fit: cover; }
.showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(11,11,13,.96) 24%, rgba(11,11,13,.72) 52%, rgba(11,11,13,.34) 100%);
}
.showcase-in { position: relative; z-index: 2; }
.showcase-in > div { max-width: 46ch; }
.showcase h2 { margin-bottom: 1.2rem; }
.showcase p { color: var(--paper-2); margin-bottom: 1.9rem; }

/* ── Split ───────────────────────────────────── */

.split {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  grid-template-columns: 1fr;
}
.split-media { min-width: 0; }
.split-media img {
  width: 100%;
  border-radius: var(--r);
  border: 1px solid var(--line-soft);
  box-shadow: var(--lift);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.split-media video {
  width: 100%;
  /* height:auto is required: the element's height attribute otherwise
     wins over aspect-ratio and pins the box to 584px at every width. */
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r);
  border: 1px solid var(--line-soft);
  box-shadow: var(--lift);
  background: var(--ink-2);
}
@media (min-width: 860px) {
  /* Given its own room on desktop, the footage keeps its native shape. */
  .split-media video { aspect-ratio: 960 / 584; }
}

.split h2 { margin-bottom: 1.2rem; }
.split > div > p { color: var(--dim); }

.ticks { list-style: none; padding: 0; margin: 1.8rem 0 2rem; display: grid; gap: 1rem; }
.ticks li { display: flex; gap: .85rem; align-items: flex-start; }
.ticks svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: .34rem; }
.ticks span { color: var(--dim); font-size: .95rem; line-height: 1.65; }
.ticks strong { color: var(--paper); font-weight: 600; }

/* ── Dark section (steps) ────────────────────── */

.dark-sec {
  background:
    radial-gradient(90% 130% at 82% 0%, rgba(216,184,99,.07), transparent 58%),
    var(--ink-2);
  border-block: 1px solid var(--line-soft);
  padding-block: var(--sec);
}

.steps {
  display: grid;
  gap: clamp(1.2rem, 2.4vw, 2rem);
  grid-template-columns: 1fr;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: s;
}
.steps li { position: relative; padding-top: 1.6rem; border-top: 1px solid var(--line); min-width: 0; }
.step-n {
  display: block;
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1;
  color: var(--gold);
  opacity: .9;
  margin-bottom: .85rem;
}
.steps h3 { margin-bottom: .55rem; }
.steps p { color: var(--dim); font-size: .92rem; line-height: 1.68; }

/* ── Alt section ─────────────────────────────── */

.alt-sec {
  background: linear-gradient(180deg, var(--ink), var(--ink-2) 50%, var(--ink));
  border-block: 1px solid var(--line-soft);
  padding-block: var(--sec);
}

.scope { display: grid; gap: clamp(1.3rem, 2.6vw, 2.1rem); grid-template-columns: 1fr; }
.scope-i { display: flex; gap: 1rem; align-items: flex-start; min-width: 0; }
.scope-ico {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  background: radial-gradient(circle at 34% 30%, rgba(216,184,99,.14), transparent 72%);
}
.scope-ico svg { width: 16px; height: 16px; }
.scope-i h3 { margin-bottom: .4rem; }
.scope-i p { color: var(--dim); font-size: .92rem; line-height: 1.68; }

/* ── Fleet rows ──────────────────────────────── */

.fleet-row {
  display: grid;
  gap: clamp(1.6rem, 3.5vw, 3.5rem);
  align-items: center;
  grid-template-columns: 1fr;
  padding-block: clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--line-soft);
}
.fleet-row:last-child { border-bottom: 0; }
.fleet-media { min-width: 0; }
.fleet-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--r);
  border: 1px solid var(--line-soft);
  box-shadow: var(--lift);
}
.fleet-body { min-width: 0; }
.fleet-body h2 { margin-bottom: .3rem; }
.fleet-trim {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.fleet-body > p:last-child { color: var(--dim); }

/* ── Gallery ─────────────────────────────────── */

.gal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(.5rem, 1.2vw, .9rem);
}
.gal figure {
  margin: 0;
  min-width: 0;
  grid-column: span 4;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--ink-2);
}
.gal img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .6s var(--ease);
}
.gal figure:hover img { transform: scale(1.045); filter: saturate(1.06); }
.gal .tall img { aspect-ratio: 3 / 4; }

.sec-more { margin-top: 2.4rem; }

/* ── FAQ ─────────────────────────────────────── */

.faq { max-width: 74ch; border-top: 1px solid var(--line-soft); }
.faq details { border-bottom: 1px solid var(--line-soft); }
.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.35rem .2rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: clamp(1.05rem, .98rem + .34vw, 1.28rem);
  font-weight: 500;
  letter-spacing: -.008em;
  transition: color var(--dur-q) var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold); }
.faq summary span {
  position: relative;
  width: 16px; height: 16px;
  flex: none;
  margin-top: .42rem;
}
.faq summary span::before,
.faq summary span::after {
  content: '';
  position: absolute;
  inset: 50% 0 auto;
  height: 1.5px;
  background: var(--gold);
  transition: transform var(--dur-q) var(--ease);
}
.faq summary span::after { transform: rotate(90deg); }
.faq details[open] summary span::after { transform: rotate(0); }
.faq details[open] summary { color: var(--gold); }
.ans { padding: 0 .2rem 1.5rem; color: var(--dim); max-width: 62ch; font-size: .95rem; }

/* ── Areas ───────────────────────────────────── */

.areas { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.area-col { min-width: 0; }
.area-col h3 { color: var(--gold); margin-bottom: .9rem; }
.area-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .42rem; }
.area-col li { color: var(--dim); font-size: .92rem; }

/* ── Band (CTA) ──────────────────────────────── */

.band {
  background:
    radial-gradient(80% 160% at 12% 0%, rgba(216,184,99,.11), transparent 60%),
    var(--ink-2);
  border-top: 1px solid var(--line);
  padding-block: var(--sec-sm);
}
.band-in { display: grid; gap: 2rem; align-items: center; }
.band h2 { margin-bottom: 1rem; max-width: 22ch; }
.band-sub { color: var(--dim); max-width: 48ch; }
.band-act { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ── Contact ─────────────────────────────────── */

.contact-grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); grid-template-columns: 1fr; }

.contact-list { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: 1.15rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list svg { width: 19px; height: 19px; color: var(--gold); flex: none; margin-top: .3rem; }
.contact-list span:first-child,
.contact-list div > span:first-child {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dimmer);
  margin-bottom: .18rem;
}
.contact-list a { font-weight: 600; border-bottom: 1px solid var(--line); }
.contact-list a:hover { color: var(--gold); }
.contact-list .plain { color: var(--dim); font-size: .94rem; letter-spacing: 0; text-transform: none; font-weight: 400; }

.contact-note {
  padding: 1.2rem 1.35rem;
  border: 1px solid var(--line);
  border-left-width: 2px;
  border-left-color: var(--gold);
  border-radius: var(--r-sm);
  background: rgba(216,184,99,.05);
}
.contact-note p { color: var(--dim); font-size: .92rem; margin: 0; }
.contact-note strong { color: var(--paper); }

.form {
  padding: clamp(1.5rem, 3vw, 2.3rem);
  background: linear-gradient(168deg, var(--ink-2), var(--ink) 78%);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  min-width: 0;
}
.f-row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.f { margin-bottom: 1rem; min-width: 0; }
.f label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: .45rem;
}
.f .opt { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--dimmer); }
.f input, .f select, .f textarea {
  width: 100%;
  padding: .82rem .95rem;
  background: var(--ink);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  color: var(--paper);
  font-family: var(--body);
  font-size: .95rem;
  transition: border-color var(--dur-q) var(--ease), background-color var(--dur-q) var(--ease);
}
.f textarea { min-height: 110px; resize: vertical; }
.f input::placeholder, .f textarea::placeholder { color: var(--dimmer); }
.f input:hover, .f select:hover, .f textarea:hover { border-color: var(--line); }
.f input:focus, .f select:focus, .f textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--ink-2);
}
.f select { appearance: none; cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 2.6rem; }

/* ── Availability calendar ───────────────────── */
/* The date field reads Dylan's own diary, so a day the fleet is
   already out is crossed and cannot be picked. */

.f-date { position: relative; }
.datefield {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  width: 100%;
  padding: .82rem .95rem;
  background: var(--ink);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  color: var(--dimmer);
  font-family: var(--body);
  font-size: .95rem;
  text-align: left;
  cursor: pointer;
  transition: border-color var(--dur-q) var(--ease), background-color var(--dur-q) var(--ease), color var(--dur-q) var(--ease);
}
.datefield.set { color: var(--paper); }
.datefield:hover { border-color: var(--line); }
.datefield:focus-visible { outline: none; border-color: var(--gold); background: var(--ink-2); }
.datefield[aria-expanded="true"] { border-color: var(--gold); background: var(--ink-2); }
.cal-ico { width: 17px; height: 17px; flex: none; color: var(--gold); }

.cal {
  position: absolute;
  z-index: 30;
  top: calc(100% + .5rem);
  left: 0;
  width: 100%;
  padding: .85rem .8rem .7rem;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .62), 0 2px 0 rgba(216, 184, 99, .07) inset;
}
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .4rem;
  margin-bottom: .6rem;
}
.cal-month {
  margin: 0;
  font-family: var(--display);
  font-size: 1.02rem;
  letter-spacing: .01em;
  color: var(--paper);
}
.cal-nav {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: none;
  background: transparent;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  color: var(--gold);
  cursor: pointer;
  transition: border-color var(--dur-q) var(--ease), background-color var(--dur-q) var(--ease), opacity var(--dur-q) var(--ease);
}
.cal-nav svg { width: 15px; height: 15px; }
.cal-nav:hover { border-color: var(--gold); background: var(--ink-3); }
.cal-nav:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.cal-nav[disabled] { opacity: .28; cursor: default; }
.cal-nav[disabled]:hover { border-color: var(--line-soft); background: transparent; }

.cal-dow, .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-dow {
  margin-bottom: .3rem;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dimmer);
  text-align: center;
}
.cal-day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  color: var(--paper);
  font-family: var(--body);
  font-size: .82rem;
  cursor: pointer;
  transition: background-color var(--dur-q) var(--ease), color var(--dur-q) var(--ease), border-color var(--dur-q) var(--ease);
}
.cal-day.pad { visibility: hidden; }
.cal-day:hover { background: var(--ink-4); }
.cal-day:focus-visible { outline: 2px solid var(--gold); outline-offset: -1px; }
.cal-day.today { border-color: var(--line); }
.cal-day.sel { background: var(--gold); color: var(--ink); font-weight: 700; }
.cal-day.sel:hover { background: var(--gold-hi); }
.cal-day[aria-disabled="true"] { color: var(--dimmer); cursor: default; background: transparent; opacity: .5; }
.cal-day.booked {
  color: var(--dimmer);
  cursor: default;
  background: transparent;
  text-decoration: line-through;
  text-decoration-color: var(--gold-deep);
  text-decoration-thickness: 1.5px;
}
.cal-key {
  margin: .55rem 0 0;
  padding-top: .5rem;
  border-top: 1px solid var(--line-soft);
  font-size: .72rem;
  color: var(--dimmer);
  text-align: center;
}
.cal-load { margin: .3rem 0 0; font-size: .72rem; color: var(--dimmer); text-align: center; }

.f-err { color: #F0A6A6; font-size: .88rem; margin: 0 0 .9rem; }
.f-note { color: var(--dimmer); font-size: .82rem; margin: .9rem 0 0; text-align: center; }

/* ── Footer ──────────────────────────────────── */

.foot {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  padding-top: var(--sec-sm);
}
.foot-in {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: 1fr;
  padding-bottom: 2.6rem;
}
.foot-brand .brand-mark { color: var(--gold); margin-bottom: .9rem; }
.foot-name {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: .55rem;
}
.foot-blurb { color: var(--dim); font-size: .92rem; max-width: 38ch; }
.foot-social {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.1rem;
  padding: .5rem .95rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  transition: border-color var(--dur-q) var(--ease), color var(--dur-q) var(--ease);
}
.foot-social svg { width: 16px; height: 16px; color: var(--gold); }
.foot-social:hover { border-color: var(--gold); color: var(--gold-hi); }

.foot h3 {
  font-family: var(--body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.05rem;
}
.foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.foot li { color: var(--dim); font-size: .92rem; }
.foot a { transition: color var(--dur-q) var(--ease); }
.foot a:hover { color: var(--gold); }
.foot-contact li { display: flex; gap: .6rem; align-items: flex-start; }
.foot-contact svg { width: 16px; height: 16px; color: var(--gold); flex: none; margin-top: .28rem; }

.foot-base {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  justify-content: space-between;
  padding-block: 1.4rem 1.6rem;
  border-top: 1px solid var(--line-soft);
}
.foot-base p { color: var(--dimmer); font-size: .8rem; margin: 0; }
.foot-base .credit { color: inherit; font-size: inherit; text-decoration: none; }
.foot-base .credit:hover,
.foot-base .credit:focus-visible { color: var(--gold); }

/* ── Floating WhatsApp ───────────────────────── */

.fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--wa);
  color: #06301A;
  box-shadow: 0 2px 6px rgba(0,0,0,.4), 0 12px 30px -8px rgba(37,211,102,.55);
  transition: transform var(--dur-q) var(--ease), box-shadow var(--dur-q) var(--ease);
}
.fab svg { width: 27px; height: 27px; }
.fab:hover { transform: scale(1.06) translateY(-2px); }

/* ── Demo banner ─────────────────────────────── */

.demo-bar {
  position: relative;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: .7rem var(--gut);
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  color: #16130B;
  font-size: .86rem;
  font-weight: 600;
  text-align: center;
}
.demo-bar button {
  background: rgba(22,19,11,.14);
  border: 0;
  border-radius: 100px;
  width: 26px; height: 26px;
  font-size: 1rem;
  line-height: 1;
  color: #16130B;
  cursor: pointer;
  flex: none;
}
.demo-bar button:hover { background: rgba(22,19,11,.26); }

/* ── Reveal on scroll ────────────────────────── */

.js-on .rise {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js-on .rise.in { opacity: 1; transform: translate3d(0, 0, 0); }
.js-on .rise.d1 { transition-delay: .09s; }
.js-on .rise.d2 { transition-delay: .18s; }
.js-on .rise.d3 { transition-delay: .27s; }

/* ── Breakpoints ─────────────────────────────── */

@media (min-width: 560px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gal figure { grid-column: span 2; }
  .gal .w8 { grid-column: span 4; }
  .f-row { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .scope { grid-template-columns: repeat(2, 1fr); }
  .areas { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; }
  .fleet-row { grid-template-columns: 1.05fr .95fr; }
  .fleet-row.flip .fleet-media { order: 2; }
  .band-in { grid-template-columns: 1.25fr auto; }
  .contact-grid { grid-template-columns: .95fr 1.05fr; }
  .areas { grid-template-columns: repeat(3, 1fr); }
  .foot-in { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
  .gal .w4 { grid-column: span 1; }
  .gal .w6 { grid-column: span 2; }
  .gal .w8 { grid-column: span 2; }
  .gal .tall { grid-column: span 1; grid-row: span 2; }
  .gal .tall img { height: 100%; aspect-ratio: auto; }
}

@media (min-width: 1000px) {
  .burger, .sheet { display: none; }
  .links { display: flex; }
  .bar-cta { display: flex; }
  .cards { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .scope { grid-template-columns: repeat(3, 1fr); }
  .fab { right: 1.5rem; bottom: 1.5rem; }
}

/* ── Reduced motion ──────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero-bg img { animation: none; transform: scale(1.02); }
  .js-on .rise { opacity: 1; transform: none; }
  .gal figure:hover img { transform: none; }
  .btn:hover, .card:hover, .fab:hover { transform: none; }
}

/* ── No JS ───────────────────────────────────── */

html:not(.js-on) .rise { opacity: 1; transform: none; }
