:root {
  --bg: #050607;
  --bg-soft: #0c0e10;
  --panel: #111316;
  --panel-2: #171a1e;
  --gold: #d7a83f;
  --gold-light: #ffd76d;
  --gold-dark: #8b671e;
  --text: #f7f3e8;
  --muted: #b8b2a4;
  --border: rgba(215, 168, 63, 0.32);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 8%, rgba(215, 168, 63, 0.16), transparent 28rem),
    linear-gradient(180deg, #060707 0%, #0a0b0c 52%, #050607 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.admin-bar .site-header {
  top: 32px;
}

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

img,
iframe {
  max-width: 100%;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(215, 168, 63, 0.24);
  background: rgba(5, 6, 7, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #070707;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand small {
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.primary-nav {
  margin-left: auto;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.primary-nav a {
  color: rgba(247, 243, 232, 0.86);
  font-size: 13px;
  font-weight: 700;
  transition: color 160ms ease;
}

.primary-nav a:hover {
  color: var(--gold-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 800;
}

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary,
.btn-small {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #080808;
  border-color: rgba(255, 215, 109, 0.72);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--gold-light);
}

.btn-small {
  min-height: 40px;
  padding-inline: 18px;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--gold-light);
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  padding: 72px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(215, 168, 63, 0.22);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.92), rgba(5, 6, 7, 0.62) 48%, rgba(5, 6, 7, 0.92)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1800&q=80") center/cover;
  opacity: 0.78;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  right: 7vw;
  bottom: 5vh;
  width: min(46vw, 620px);
  aspect-ratio: 2.1;
  background:
    linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, 0.34)),
    url("https://images.unsplash.com/photo-1542362567-b07e54358753?auto=format&fit=crop&w=1100&q=80") center/cover;
  border: 1px solid rgba(215, 168, 63, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  gap: 42px;
  align-items: center;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.04;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  max-width: 760px;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 800;
}

h2 {
  font-size: clamp(32px, 4vw, 54px);
}

h3 {
  font-size: 20px;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-copy p {
  max-width: 560px;
  font-size: 19px;
}

.hero-actions,
.cta-inner > div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 42px;
  max-width: 650px;
}

.trust-row span {
  min-height: 70px;
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(17, 19, 22, 0.7);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 800;
  white-space: normal;
}

.hero-panel,
.content-panel,
.lux-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(23, 26, 30, 0.94), rgba(10, 12, 14, 0.94));
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 26px;
}

.hero-panel h2 {
  margin-bottom: 18px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 26px;
}

.lux-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(215, 168, 63, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  padding: 12px 14px;
  font: 500 14px/1.3 Inter, system-ui, sans-serif;
  outline: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(215, 168, 63, 0.16);
}

.lux-form .btn {
  width: 100%;
  margin-top: 16px;
}

.form-success {
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(75, 209, 122, 0.46);
  border-radius: var(--radius);
  background: rgba(75, 209, 122, 0.12);
  color: #c8ffd9;
  font-weight: 700;
}

.section {
  padding: 92px 0;
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0)),
    var(--bg-soft);
  border-block: 1px solid rgba(215, 168, 63, 0.18);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.5fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 740px;
  margin: 0 auto 36px;
  text-align: center;
}

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

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

.lux-card {
  padding: 24px;
  min-height: 100%;
}

.lux-card h3 {
  margin: 16px 0 10px;
}

.icon-dot {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
}

.icon-dot::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #080808;
}

.vehicle-art {
  height: 86px;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 50% 90%, rgba(215, 168, 63, 0.28), transparent 48%),
    linear-gradient(180deg, #30343a, #0b0d0f);
  position: relative;
}

.vehicle-art::before {
  content: "";
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 22px;
  height: 28px;
  border-radius: 38px 38px 10px 10px;
  background: linear-gradient(180deg, #e7e8e7, #767b80);
  box-shadow: 0 15px 0 -8px #050607;
}

.vehicle-art::after {
  content: "";
  position: absolute;
  left: 24%;
  right: 24%;
  bottom: 49px;
  height: 22px;
  border-radius: 28px 28px 4px 4px;
  background: linear-gradient(180deg, #f5f1e9, #a7a7a7);
}

.fleet-card strong,
.price {
  color: var(--gold-light);
  font-size: 21px;
  font-weight: 900;
}

.price-card {
  display: flex;
  flex-direction: column;
}

.price-card .btn {
  margin-top: auto;
}

.testimonial-band,
.cta-inner,
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 30px;
  align-items: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stats span {
  display: grid;
  min-height: 104px;
  place-items: center;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--panel);
}

.stats strong {
  display: block;
  color: var(--gold-light);
  font-size: 30px;
}

.cta-band {
  padding: 54px 0;
  border-block: 1px solid rgba(215, 168, 63, 0.22);
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.96), rgba(5, 6, 7, 0.7)),
    url("https://images.unsplash.com/photo-1494976388531-d1058494cdd8?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.cta-inner {
  grid-template-columns: minmax(0, 1fr) auto;
}

.page-hero {
  padding: 86px 0 60px;
  border-bottom: 1px solid rgba(215, 168, 63, 0.18);
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.94), rgba(5, 6, 7, 0.78)),
    url("https://images.unsplash.com/photo-1516733968668-dbdce39c4651?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.page-hero p {
  max-width: 720px;
  font-size: 18px;
}

.content-area {
  max-width: 920px;
}

.content-panel {
  padding: 34px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  color: var(--gold-light);
  font-weight: 900;
}

.map-frame {
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  min-height: 360px;
  display: block;
  border: 0;
}

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

.site-footer {
  border-top: 1px solid rgba(215, 168, 63, 0.26);
  background: #050607;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 1fr 0.8fr;
  gap: 34px;
  padding: 58px 0;
}

.footer-grid h3 {
  margin-bottom: 14px;
  color: var(--gold-light);
  font-size: 15px;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin: 10px 0;
  color: var(--muted);
}

.footer-grid .btn {
  color: #080808;
  margin-top: 0;
}

.footer-grid .btn-ghost {
  color: var(--gold-light);
}

.footer-bottom {
  padding: 20px;
  border-top: 1px solid rgba(215, 168, 63, 0.16);
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #20c45a;
  color: #06100a;
  font-weight: 900;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}

.post-card img,
.single-image {
  width: 100%;
  border-radius: var(--radius);
}

.read-more {
  color: var(--gold-light);
  font-weight: 900;
}

@media (max-width: 1120px) {
  .header-actions,
  .phone-link {
    display: none;
  }

  .primary-nav ul {
    gap: 14px;
  }

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

@media (max-width: 900px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(5, 6, 7, 0.98);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav ul {
    display: grid;
    gap: 14px;
  }

  .hero {
    min-height: auto;
    padding: 58px 0;
  }

  .hero::after {
    display: none;
  }

  .hero-grid,
  .split,
  .testimonial-band,
  .booking-layout,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    padding: 20px;
  }

  .card-grid,
  .posts-grid,
  .pricing-grid,
  .fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .header-inner {
    min-height: 72px;
  }

  .brand strong {
    max-width: 160px;
    font-size: 12px;
  }

  .brand small {
    font-size: 10px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  h1 {
    font-size: 46px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .trust-row,
  .form-grid,
  .card-grid,
  .posts-grid,
  .pricing-grid,
  .fleet-grid,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .hero-actions .btn,
  .cta-inner .btn {
    width: 100%;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }
}
