:root {
  --navy: #061a33;
  --navy-2: #0a2546;
  --ink: #07111f;
  --gold: #e3b84f;
  --gold-soft: #ffdd82;
  --silver: #cbd3dd;
  --ice: #edf3f8;
  --white: #ffffff;
  --muted: #6f7f93;
  --line: rgba(203, 211, 221, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section { scroll-margin-top: 104px; }
body {
  margin: 0;
  color: var(--white);
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.018) 0 1px, transparent 1px 118px),
    var(--navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 22px clamp(18px, 4vw, 58px);
  background: rgba(6, 26, 51, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.header.is-scrolled { background: rgba(6, 17, 31, 0.94); }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--gold);
  background: transparent;
  border: 3px solid var(--gold);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 700;
}
.old-logo::after {
  position: absolute;
  top: -8px;
  right: -3px;
  width: 14px;
  height: 14px;
  content: "";
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  transform: rotate(-8deg);
}
.brand strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 22px; line-height: 1; }
.brand strong span { color: var(--gold); }
.brand small { display: block; margin-top: 4px; color: var(--gold-soft); font-size: 10px; font-weight: 800; letter-spacing: 0.42em; text-transform: uppercase; }
.brand strong,
.brand small {
  white-space: nowrap;
}
.nav { display: flex; justify-content: center; gap: 28px; font-size: 13px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.nav a { color: rgba(255,255,255,.78); }
.nav a:hover { color: var(--gold-soft); }
.menu-toggle {
  display: none;
  width: 48px;
  height: 46px;
  border: 1px solid rgba(227, 184, 79, .54);
  background: rgba(255,255,255,.04);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: var(--gold-soft);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
.header-cta {
  min-height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(227, 184, 79, .64);
  color: var(--gold-soft);
  font-weight: 900;
  text-transform: uppercase;
}
.header-cta:hover { color: var(--ink); background: linear-gradient(135deg, #fff2b5, var(--gold)); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 136px clamp(20px, 5vw, 76px) 56px;
  overflow: hidden;
}
.hero-bg, .hero-shade { position: absolute; inset: 0; }
.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=2200&q=88");
  background-size: cover;
  background-position: center 42%;
  transform: scale(1.02);
  filter: saturate(.82) contrast(1.08);
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 12, 25, .94), rgba(6, 26, 51, .68) 45%, rgba(6, 26, 51, .18)),
    linear-gradient(180deg, rgba(3, 12, 25, .5), rgba(3, 12, 25, .18) 40%, rgba(3, 12, 25, .92)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 120px);
}
.hero-inner { position: relative; max-width: 850px; padding-left: 26px; border-left: 1px solid rgba(227, 184, 79, .7); }
.hero-inner::before {
  position: absolute;
  top: -28px;
  left: -1px;
  width: 1px;
  height: 80px;
  content: "";
  background: linear-gradient(var(--gold-soft), transparent);
  box-shadow: 0 0 24px rgba(227,184,79,.42);
}
.pill {
  display: inline-flex;
  margin: 0 0 28px;
  padding: 12px 18px;
  border: 1px solid rgba(227, 184, 79, .42);
  border-radius: 999px;
  background: rgba(227, 184, 79, .12);
  color: var(--gold-soft);
  font-weight: 900;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
h1 { margin-bottom: 26px; font-size: clamp(46px, 7vw, 88px); line-height: .95; text-shadow: 0 22px 70px rgba(0,0,0,.5); }
h2 { margin-bottom: 18px; font-size: clamp(34px, 5vw, 58px); line-height: 1.02; }
h3 { margin-bottom: 10px; font-size: 27px; }
.lead { max-width: 730px; margin-bottom: 34px; color: rgba(255,255,255,.84); font-size: 20px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.gold { color: var(--ink); background: linear-gradient(135deg, #fff1b0, var(--gold) 52%, #ffeaa0); box-shadow: 0 18px 44px rgba(227, 184, 79, .22); }
.button.glass { color: var(--white); border-color: rgba(203, 211, 221, .58); background: rgba(255,255,255,.08); }
.button.glass:hover { color: var(--ink); background: linear-gradient(135deg, #fff1b0, var(--gold)); border-color: var(--gold-soft); }
.hero-proof {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 920px;
  margin-top: 58px;
  border: 1px solid rgba(227, 184, 79, .32);
  background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(3,12,25,.55));
  backdrop-filter: blur(16px);
  box-shadow: 0 32px 90px rgba(0,0,0,.28);
}
.hero-proof div { padding: 24px; border-right: 1px solid var(--line); }
.hero-proof div:last-child { border-right: 0; }
.hero-proof strong { display: block; margin-bottom: 6px; color: var(--gold-soft); font-family: Georgia, "Times New Roman", serif; font-size: 30px; }
.hero-proof span { color: rgba(255,255,255,.7); font-size: 13px; text-transform: uppercase; }

section { padding: 92px clamp(20px, 5vw, 76px); }
.trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: #03101f;
}
.trust span { padding: 28px; text-align: center; color: var(--gold-soft); background: rgba(255,255,255,.035); font-weight: 900; text-transform: uppercase; }

.signature {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: linear-gradient(90deg, #03101f, #071d39);
}

.signature div {
  min-height: 260px;
  padding: 38px;
  background:
    linear-gradient(145deg, rgba(227,184,79,.11), rgba(203,211,221,.04) 44%, transparent),
    rgba(255,255,255,.024);
}

.signature small {
  display: block;
  margin-bottom: 62px;
  color: var(--gold);
  font-weight: 950;
  letter-spacing: .16em;
}

.signature strong {
  display: block;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.signature p {
  margin: 0;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
}
.section-heading { max-width: 890px; margin-bottom: 44px; }
.eyebrow { margin-bottom: 15px; color: var(--gold); font-size: 12px; font-weight: 950; letter-spacing: .22em; text-transform: uppercase; }

.services, .tariffs {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(227,184,79,.08), transparent 34%),
    repeating-linear-gradient(90deg, rgba(6,26,51,.026) 0 1px, transparent 1px 108px),
    var(--ice);
}
.service-grid, .price-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-grid article, .price-grid article {
  min-height: 270px;
  padding: 32px;
  border: 1px solid rgba(6, 26, 51, .12);
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(246,249,252,.9)),
    #fff;
  box-shadow: 0 24px 70px rgba(6, 26, 51, .08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-grid article:hover, .price-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(227,184,79,.34);
  box-shadow: 0 34px 90px rgba(6, 26, 51, .14);
}
.icon { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 64px; color: var(--ink); background: linear-gradient(135deg, #fff1b0, var(--gold)); border-radius: 50%; font-weight: 900; }
.service-grid p, .price-grid p { color: var(--muted); line-height: 1.7; }

.fleet {
  display: grid;
  grid-template-columns: minmax(280px, .55fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  background: linear-gradient(180deg, #061a33, #03101f);
}
.fleet-copy { position: sticky; top: 112px; }
.fleet-copy p:not(.eyebrow), .experience-copy p { color: rgba(255,255,255,.72); line-height: 1.8; font-size: 18px; }
.fleet-gallery { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; }
.photo-card { position: relative; min-height: 330px; overflow: hidden; background: #000; }
.photo-card.large { grid-row: span 2; min-height: 680px; }
.photo-card img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; opacity: .82; transition: transform .7s ease; }
.photo-card:hover img { transform: scale(1.04); }
.photo-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent, rgba(0,0,0,.72)); }
.photo-card::before {
  position: absolute;
  inset: 18px;
  z-index: 1;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(203,211,221,.32);
  box-shadow: inset 0 0 0 1px rgba(227,184,79,.14);
}
.photo-card div { position: absolute; right: 28px; bottom: 28px; left: 28px; z-index: 2; }
.photo-card span { display: block; margin-bottom: 8px; color: var(--gold-soft); font-size: 12px; font-weight: 950; letter-spacing: .18em; text-transform: uppercase; }
.photo-card strong { font-family: Georgia, "Times New Roman", serif; font-size: 28px; }

.price-grid article strong { display: block; margin: 18px 0; color: #bd8522; font-family: Georgia, "Times New Roman", serif; font-size: 44px; }
.price-grid small { color: var(--gold); font-weight: 950; letter-spacing: .16em; text-transform: uppercase; }

.experience {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, .9fr);
  gap: 56px;
  align-items: center;
  background: linear-gradient(90deg, #03101f, #061a33);
}
.experience-image { min-height: 560px; overflow: hidden; border: 1px solid rgba(227,184,79,.28); box-shadow: 0 30px 90px rgba(0,0,0,.28); }
.experience-image img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; }
.experience-copy ul { padding: 0; margin: 28px 0 0; list-style: none; }
.experience-copy li { padding: 14px 0; border-top: 1px solid var(--line); color: var(--gold-soft); font-weight: 850; }

.booking {
  display: grid;
  grid-template-columns: minmax(280px, .55fr) minmax(0, 1fr);
  gap: 42px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(227,184,79,.1), transparent 32%),
    linear-gradient(135deg, #e8eef4, #ffffff);
}
.booking-copy p:not(.eyebrow) { color: var(--muted); font-size: 18px; line-height: 1.8; }
.booking-note {
  margin-top: 28px;
  padding: 22px;
  border-left: 1px solid var(--gold);
  background: rgba(6,26,51,.06);
}
.booking-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}
.booking-note span {
  color: var(--muted);
  line-height: 1.7;
}
.form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 34px;
  border: 1px solid rgba(227,184,79,.26);
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(239,245,250,.92));
  box-shadow: 0 34px 100px rgba(6, 26, 51, .16);
}
label { display: grid; gap: 8px; color: var(--navy); font-size: 12px; font-weight: 950; letter-spacing: .16em; text-transform: uppercase; }
input, select, textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px;
  border: 1px solid rgba(6,26,51,.16);
  background: #f8fbfd;
  font: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
input:focus, select:focus, textarea:focus {
  outline: 0;
  border-color: rgba(227,184,79,.72);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(227,184,79,.14);
}
textarea { resize: vertical; }
.wide { grid-column: 1 / -1; }

.legal,
.rgpd {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 12%, rgba(227,184,79,.13), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.018) 0 1px, transparent 1px 112px),
    linear-gradient(180deg, #03101f, #071d39);
}

.rgpd {
  background:
    linear-gradient(135deg, rgba(227,184,79,.1), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.018) 0 1px, transparent 1px 112px),
    #061a33;
}

.legal .section-heading,
.rgpd .section-heading {
  max-width: 780px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.legal-grid article {
  position: relative;
  min-height: 280px;
  padding: 30px;
  border: 1px solid rgba(227,184,79,.26);
  background:
    linear-gradient(145deg, rgba(227,184,79,.08), rgba(203,211,221,.035) 44%, transparent),
    rgba(255,255,255,.026);
  box-shadow: 0 24px 80px rgba(0,0,0,.18);
}

.legal-grid article::before {
  position: absolute;
  top: 0;
  left: 30px;
  width: 78px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--gold), rgba(203,211,221,.7));
}

.legal-grid h3 {
  margin-bottom: 22px;
  color: var(--gold-soft);
  font-size: 28px;
}

.legal-grid p {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 15px;
  line-height: 1.75;
}

.legal-grid dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.legal-grid dl div {
  display: grid;
  grid-template-columns: minmax(132px, .42fr) minmax(0, 1fr);
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid rgba(203,211,221,.14);
}

.legal-grid dl div:first-child {
  border-top: 0;
}

.legal-grid dt {
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.legal-grid dd {
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.55;
}

.footer {
  display: grid;
  grid-template-columns: 1.1fr .9fr .75fr .75fr;
  gap: 28px;
  padding: 112px clamp(20px, 5vw, 76px) 42px;
  background: #03101f;
  border-top: 1px solid var(--line);
}
.footer h3 {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
}
.footer p,
.footer span {
  display: block;
  margin: 0 0 10px;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}
.footer a { color: var(--gold-soft); }
.footer-legal a {
  display: block;
  margin-bottom: 10px;
}
.footer-brand {
  align-self: start;
  justify-self: start;
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

@media (max-width: 920px) {
  .header { grid-template-columns: 1fr auto auto; }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(227, 184, 79, .28);
    background: rgba(3, 16, 31, .96);
    box-shadow: 0 28px 80px rgba(0,0,0,.32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav a {
    padding: 16px 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav a:last-child { border-bottom: 0; }
  .hero-proof, .trust, .signature, .service-grid, .price-grid, .fleet, .fleet-gallery, .experience, .booking, .form, .legal-grid, .footer { grid-template-columns: 1fr; }
  .footer { padding-top: 190px; }
  .signature div { min-height: auto; }
  .signature small { margin-bottom: 34px; }
  .fleet-copy { position: static; }
  .photo-card.large { min-height: 430px; }
}
@media (max-width: 620px) {
  .header { padding: 16px; }
  .header-cta { display: none; }
  .brand small { letter-spacing: .22em; }
  .brand strong { font-size: 21px; }
  .brand-mark { width: 40px; height: 40px; font-size: 24px; }
  .hero { padding: 116px 18px 38px; }
  .hero-inner { padding-left: 18px; }
  h1 { font-size: 43px; }
  h2 { font-size: 34px; }
  section { padding: 64px 18px; }
  .hero-proof div { border-right: 0; border-bottom: 1px solid var(--line); }
  .service-grid article, .price-grid article { min-height: auto; }
  .footer { display: grid; }
}

.footer .brand,
.footer-brand {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  width: auto;
  max-width: none;
}

.footer .brand > span:last-child {
  display: block;
  min-width: max-content;
}

.footer .brand strong {
  display: block;
  white-space: nowrap;
}

.footer .brand strong span {
  display: inline;
}

.footer .brand small {
  display: block;
  white-space: nowrap;
}
