/* ============================================================
   Executive Travel Wales — Master Stylesheet
   ============================================================ */

/* ===== 1. DESIGN TOKENS ===== */
:root {
  --bg: #f8f8f6;
  --bg-warm: #f3f1ec;
  --ink: #0a0e1a;
  --ink-soft: #2d3348;
  --muted: #6b7280;
  --line: rgba(15,23,42,.08);
  --card: #ffffff;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 24px 64px rgba(2,6,23,.10);
  --shadow-soft: 0 8px 32px rgba(2,6,23,.06);
  --shadow-hover: 0 32px 80px rgba(2,6,23,.14);
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --gold-dark: #9a7b2e;
  --gold-glow: rgba(201,168,76,.15);
  --gold-gradient: linear-gradient(135deg, #e8d48b 0%, #c9a84c 35%, #9a7b2e 70%, #c9a84c 100%);
  --transition: cubic-bezier(.22,1,.36,1);
}

/* ===== 2. RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ===== 3. UTILITIES ===== */
.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}
.center { text-align: center; }
.muted { color: var(--muted); }
.hidden { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ===== 4. SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--transition), transform .8s var(--transition);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .35s; }

/* ===== 5. GOLD DIVIDER ===== */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 12px 0 20px;
}
.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .35;
}
.gold-divider span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* ===== 6. BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 650;
  font-size: 14px;
  letter-spacing: .02em;
  cursor: pointer;
  transition: all .3s var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(180deg, #1a1f2e, #0a0e1a);
  color: #fff;
  box-shadow: 0 12px 36px rgba(2,6,23,.20);
  border: 1px solid rgba(201,168,76,.2);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(201,168,76,.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .5s ease;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(2,6,23,.28);
  border-color: rgba(201,168,76,.4);
}

.btn-outline {
  background: rgba(255,255,255,.95);
  border-color: rgba(15,23,42,.12);
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(2,6,23,.04);
}
.btn-outline:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(201,168,76,.1);
  color: var(--gold-dark);
}

.btn-gold {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold);
  color: #0a0e1a;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201,168,76,.25);
}

.btn-ghost {
  background: transparent;
  box-shadow: none;
}

/* ===== 7. SITE HEADER (index page) ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,248,246,.88);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(248,248,246,.96);
  box-shadow: 0 4px 30px rgba(0,0,0,.06);
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 280px;
}
.brand img {
  height: 54px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}
.brand-name {
  font-family: "Great Vibes", cursive;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(2px);
  white-space: nowrap;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: 6px;
  align-items: center;
}
.main-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 12px;
  letter-spacing: .01em;
  transition: background .2s ease, color .2s ease;
  position: relative;
}
.main-nav a:hover {
  background: rgba(201,168,76,.08);
  color: var(--ink);
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width .25s var(--transition), left .25s var(--transition);
}
.main-nav a:hover::after {
  width: 20px;
  left: calc(50% - 10px);
}

.header-actions {
  justify-self: end;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ===== 8. SIMPLE HEADER (terms / privacy pages) ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  flex-wrap: wrap;
}

header:not(.site-header) {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,248,246,.88);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease, box-shadow .3s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
}
.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}
.logo span {
  font-family: "Great Vibes", cursive;
  font-size: 28px;
  font-weight: 400;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Gold heading (terms / privacy) */
.gold-heading {
  margin: 0 0 10px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== 9. HERO CAROUSEL ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: #0a0e1a;
  height: clamp(500px, 55vw, 750px);
}

.slides { position: absolute; inset: 0; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.is-active { opacity: 1; }

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  display: block;
  filter: brightness(1.05) contrast(1.05) saturate(1.1);
  transform: scale(1.03);
  transition: transform 8s ease;
}
.slide.is-active img {
  transform: scale(1);
}

.scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,14,26,.3) 0%, rgba(10,14,26,.15) 30%, rgba(10,14,26,.5) 70%, rgba(10,14,26,.85) 100%),
    radial-gradient(ellipse at 50% 40%, transparent 0%, rgba(10,14,26,.3) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  z-index: 10;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 0 90px;
}

.hero-content { max-width: 820px; padding: 0 16px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  padding: 8px 20px;
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 999px;
  background: rgba(201,168,76,.08);
  backdrop-filter: blur(10px);
}
.hero-eyebrow svg { width: 14px; height: 14px; }

.hero-title {
  margin: 0 0 20px;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(38px, 5vw, 72px);
  text-shadow: 0 4px 60px rgba(0,0,0,.5);
}
.hero-title em {
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.hero-sub {
  margin: 0 auto 24px;
  max-width: 640px;
  color: rgba(255,255,255,.75);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: .01em;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0 28px;
}
.pill {
  font-size: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,168,76,.2);
  color: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  font-weight: 600;
  letter-spacing: .02em;
  transition: all .3s ease;
}
.pill:hover {
  background: rgba(201,168,76,.1);
  border-color: rgba(201,168,76,.4);
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-ctas .btn-primary {
  background: var(--gold);
  color: #0a0e1a;
  border-color: var(--gold);
  font-weight: 700;
}
.hero-ctas .btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 20px 50px rgba(201,168,76,.3);
}
.hero-ctas .btn-outline {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.25);
  color: #fff;
  backdrop-filter: blur(8px);
}
.hero-ctas .btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.5);
}

#primary-cta { outline-offset: 4px; }

/* Carousel prev/next */
.hero .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,.2);
  background: rgba(10,14,26,.4);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  backdrop-filter: blur(12px);
  transition: all .3s var(--transition);
  font-size: 20px;
  padding: 0;
}
.hero .nav.prev { left: 20px; }
.hero .nav.next { right: 20px; }
.hero .nav:hover {
  background: rgba(201,168,76,.15);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}

/* Carousel dots */
.dots {
  position: absolute;
  bottom: 24px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 5;
}
.dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  padding: 0;
  transition: all .3s var(--transition);
}
.dots button[aria-current="true"] {
  background: var(--gold);
  width: 28px;
}

/* ===== 10. TESTIMONIAL ===== */
.testimonial { background: transparent; padding: 36px 0; }
.testimonial-inner {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding: 28px;
  border-radius: 14px;
  border: 1px solid var(--line);
}
.testimonial blockquote {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 500;
}
.testimonial .byline {
  display: flex;
  gap: 12px;
  align-items: center;
}
.testimonial .byline img {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(201,168,76,.12);
}

/* ===== 11. TRUST STRIP ===== */
.strip {
  background: var(--ink);
  padding: 0;
  position: relative;
  z-index: 2;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.kv {
  padding: 28px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background .3s ease;
}
.kv:last-child { border-right: none; }
.kv:hover { background: rgba(201,168,76,.04); }

.kv-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.kv-icon svg { width: 20px; height: 20px; }

.kv .label {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 2px;
}
.kv .sub {
  color: rgba(255,255,255,.5);
  font-size: 13px;
}

/* ===== 12. SECTION SYSTEM ===== */
main { padding: 0 0 40px; }
section { padding: 60px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

h2 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}

.section-desc {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
}

/* ===== 13. SERVICE CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.card-grid .card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all .4s var(--transition);
}
.card-grid .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--transition);
}
.card-grid .card:hover::before { transform: scaleX(1); }
.card-grid .card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201,168,76,.15);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(201,168,76,.08), rgba(201,168,76,.15));
  border: 1px solid rgba(201,168,76,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
}
.card-icon svg { width: 24px; height: 24px; }

.card-grid .card h3 {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.card-grid .card p {
  color: var(--muted);
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
}

/* ===== 14. FLEET GALLERY ===== */
.fleet {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.fleet figure {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all .4s var(--transition);
  position: relative;
}
.fleet figure::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(10,14,26,.5), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
}
.fleet figure:hover::after { opacity: 1; }
.fleet figure:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.fleet img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--transition);
}
.fleet figure:hover img { transform: scale(1.05); }

.fleet figcaption {
  padding: 16px 18px 18px;
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.fleet strong { color: var(--ink); }

/* ===== 15. AREAS ===== */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: start;
  margin-top: 24px;
}
.areas-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 16px;
}
ul { margin: 16px 0 0; padding-left: 0; list-style: none; color: var(--muted); }
.areas-text li {
  margin: 10px 0;
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
}
.areas-text li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

/* ===== 16. QUOTE FORM ===== */
.quote {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 32px;
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}
.quote .full { grid-column: 1 / -1; }

label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 8px;
  color: var(--ink-soft);
  letter-spacing: .02em;
}
input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(15,23,42,.1);
  font: inherit;
  font-size: 15px;
  outline: none;
  background: #fafaf8;
  color: var(--ink);
  transition: all .25s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-glow);
  background: #fff;
}
input::placeholder, textarea::placeholder {
  color: #b0b5be;
}

/* ===== 17. CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 24px;
}
.contact-info p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.contact-info a {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 600;
  transition: color .2s ease;
}
.contact-info a:hover { color: var(--gold); }

.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 28px;
}
.contact-card label { margin-top: 16px; }
.contact-card label:first-child { margin-top: 0; }

/* ===== 18. CONTENT CARD (terms / privacy) ===== */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.card h2 {
  margin: 24px 0 10px;
  font-size: 19px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.card h2:first-child { margin-top: 0; }
.card p {
  line-height: 1.8;
  color: var(--muted);
  font-size: 15px;
}
.card a {
  color: var(--gold-dark);
  font-weight: 600;
  transition: color .2s ease;
}
.card a:hover { color: var(--gold); }

/* main.container for terms/privacy pages */
main.container {
  padding: 48px 0 64px;
}

/* ===== 18b. SISTER COMPANY BANNER ===== */
.sister-banner {
  background: var(--ink);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.sister-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}
.sister-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(201,168,76,.04) 0%, transparent 60%);
  pointer-events: none;
}

.sister-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 44px 0;
}

.sister-content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  min-width: 0;
}

.sister-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201,168,76,.12), rgba(201,168,76,.2));
  border: 1px solid rgba(201,168,76,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.sister-icon svg { width: 28px; height: 28px; }

.sister-title {
  margin: 0 0 6px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.01em;
}

.sister-text {
  margin: 0;
  color: rgba(255,255,255,.6);
  font-size: 15px;
  line-height: 1.65;
  max-width: 520px;
}
.sister-text strong {
  color: var(--gold);
  font-weight: 700;
}

.sister-cta {
  flex-shrink: 0;
  height: 50px;
  padding: 0 28px;
  font-size: 15px;
}

@media (max-width: 768px) {
  .sister-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 36px 0;
  }
  .sister-content {
    flex-direction: column;
    gap: 16px;
  }
  .sister-text { max-width: 100%; }
}

/* ===== 19. FOOTER ===== */
.footer {
  background: linear-gradient(180deg, #0a0e1a, #060912);
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
  margin-top: 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

/* Index page footer */
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* Terms/privacy footer */
.cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer h3 {
  color: #fff;
  margin: 0 0 16px;
  font-family: "Playfair Display", serif;
  font-size: 22px;
}
.footer h4 {
  color: var(--gold);
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.footer p { line-height: 1.7; font-size: 14.5px; }
.footer a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .2s ease;
}
.footer a:hover { color: var(--gold); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin: 10px 0; font-size: 14.5px; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

.copyright {
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

/* ===== 20. BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--ink);
  border: 1px solid rgba(201,168,76,.2);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 50;
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s var(--transition);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  padding: 0;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-4px);
}
.back-to-top svg { width: 20px; height: 20px; }

/* ===== 21. RESPONSIVE ===== */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .header-row { grid-template-columns: auto auto; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .kv:nth-child(2) { border-right: none; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .quote { grid-template-columns: 1fr; padding: 24px; }
  .hero-inner { padding: 56px 0; }
  .brand img { height: 44px; }
  .cols { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .brand { min-width: 0; }
  .brand-name { font-size: 26px; }
  .hero { height: clamp(480px, 80vh, 700px); }
  .hero-title { font-size: clamp(32px, 8vw, 48px); }
  .quote { grid-template-columns: 1fr; padding: 24px 20px; }
  .strip-grid { grid-template-columns: 1fr; }
  .kv { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .kv:last-child { border-bottom: none; }
  .card-grid { grid-template-columns: 1fr; }
  .fleet { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
