:root {
  --navy: #071a2f;
  --blue: #0e3561;
  --blue-soft: #174f89;
  --gold: #c8a55b;
  --gold-soft: #f3dfab;
  --paper: #f6f8fb;
  --white: #ffffff;
  --ink: #142235;
  --muted: #5e6b7d;
  --line: rgba(20, 34, 53, 0.12);
  --shadow: 0 24px 70px rgba(7, 26, 47, 0.15);
  --radius: 26px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(200, 165, 91, 0.22), transparent 28%),
    linear-gradient(135deg, #071a2f 0%, #0e3561 58%, #102844 100%);
  color: var(--white);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto -120px -160px auto;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  pointer-events: none;
}

.navbar {
  position: relative;
  z-index: 10;
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .2px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}

.brand-text {
  font-size: 1.02rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 12px;
  color: rgba(255,255,255,.82);
  font-weight: 700;
  font-size: .92rem;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(255,255,255,.12);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 999px;
}

.hero {
  position: relative;
  z-index: 1;
  padding: 62px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 34px;
  align-items: center;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow,
.section-kicker,
.small-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--gold-soft);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 6.4rem);
  line-height: .94;
  letter-spacing: -.055em;
  margin-bottom: 24px;
}

.hero-subtitle {
  max-width: 710px;
  color: rgba(255,255,255,.86);
  font-size: clamp(1.1rem, 2.6vw, 1.6rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 16px 38px rgba(0,0,0,.22);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
}

.btn-dark {
  color: var(--white);
  background: var(--navy);
}

.hero-card {
  padding: 28px;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
}

.hero-card-top {
  padding-bottom: 22px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.hero-card-top strong {
  display: block;
  margin-top: 4px;
  font-size: 2rem;
  letter-spacing: -.04em;
}

.hero-card-row {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.hero-card-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hero-card-row span {
  display: block;
  color: rgba(255,255,255,.64);
  font-weight: 700;
  font-size: .86rem;
  margin-bottom: 4px;
}

.hero-card-row a,
.hero-card-row p {
  color: var(--white);
  overflow-wrap: anywhere;
}

.section {
  padding: 82px 0;
}

.intro-section {
  padding: 0;
  margin-top: -42px;
  position: relative;
  z-index: 4;
}

.intro-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro-card .section-kicker,
.section-title .section-kicker,
.contact-card .section-kicker {
  color: var(--blue-soft);
}

h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}

h3 {
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
}

.section-title {
  max-width: 760px;
  margin-bottom: 34px;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.center .section-kicker {
  justify-content: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 210px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 14px 45px rgba(7, 26, 47, 0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(7, 26, 47, 0.12);
}

.number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--navy);
  background: var(--gold-soft);
  border-radius: 14px;
  font-weight: 900;
}

.service-card p {
  margin-top: 10px;
}

.visual-section {
  background:
    linear-gradient(180deg, rgba(7,26,47,.97), rgba(14,53,97,.97)),
    var(--navy);
}

.light-title h2,
.light-title p {
  color: var(--white);
}

.light-title .section-kicker {
  color: var(--gold-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.image-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}

.image-card-large {
  grid-column: span 2;
}

.image-card figure,
.vehicle-card figure {
  height: 100%;
}

.image-card img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: #ffffff;
  padding: 8px;
}

.image-card-large img {
  height: 330px;
}

figcaption {
  padding: 18px 20px 20px;
  color: var(--white);
  font-weight: 900;
  letter-spacing: .04em;
  text-align: center;
}

.vehicles-section {
  background: #ffffff;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.vehicle-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(7, 26, 47, 0.10);
}

.vehicle-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  background: #ffffff;
  padding: 16px;
}

.vehicle-card figcaption {
  color: var(--navy);
  background: var(--white);
}

.cities-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(200,165,91,.16), transparent 34%),
    var(--paper);
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.city-card {
  min-height: 130px;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--navy);
  font-weight: 900;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(7, 26, 47, 0.08);
}

.contact-section {
  background: var(--white);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(200,165,91,.22), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.contact-card h2,
.contact-card p {
  color: var(--white);
}

.contact-card .section-kicker {
  color: var(--gold-soft);
}

.contact-info {
  display: grid;
  gap: 14px;
}

.contact-info a {
  display: block;
  padding: 18px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
}

.contact-info span {
  display: block;
  color: rgba(255,255,255,.66);
  font-size: .88rem;
  font-weight: 800;
}

.contact-info strong {
  display: block;
  margin-top: 3px;
  overflow-wrap: anywhere;
}

.contact-actions {
  grid-column: 1 / -1;
  margin-top: 0;
}

.footer {
  padding: 28px 0;
  background: #061326;
  color: var(--white);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
}

.footer p {
  color: rgba(255,255,255,.72);
}

.footer strong {
  color: var(--white);
}

.floating-button {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(0,0,0,.22);
  font-size: 1.45rem;
}

@media (max-width: 940px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: rgba(7, 26, 47, .98);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(0,0,0,.24);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 16px;
  }

  .hero-grid,
  .intro-card,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-card-large {
    grid-column: span 2;
  }

  .cities-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 26px, 1120px);
  }

  .navbar {
    width: min(100% - 22px, 1180px);
  }

  .brand-text {
    font-size: .96rem;
  }

  .hero {
    padding: 42px 0 74px;
  }

  .hero-card,
  .intro-card,
  .contact-card {
    padding: 22px;
    border-radius: 22px;
  }

  .section {
    padding: 62px 0;
  }

  .intro-section {
    padding: 0;
  }

  .services-grid,
  .gallery-grid,
  .vehicle-grid {
    grid-template-columns: 1fr;
  }

  .image-card-large {
    grid-column: span 1;
  }

  .image-card img,
  .image-card-large img,
  .vehicle-card img {
    height: 235px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .footer-grid {
    display: grid;
  }
}
