:root {
  --ink: #0b1018;
  --ink-2: #121a26;
  --panel: #172131;
  --line: rgba(246, 241, 232, 0.1);
  --paper: #f4efe6;
  --paper-2: #ebe4d6;
  --muted: #9aa5b5;
  --text: #e8e2d6;
  --amber: #f0b429;
  --amber-2: #d99a12;
  --orange: #e85d04;
  --white: #fffdf8;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius: 18px;
  --max: 1180px;
  --header: 84px;
  --font: "Figtree", "Segoe UI", sans-serif;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--ink);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--amber);
  color: var(--ink);
  padding: 8px 12px;
  z-index: 100;
}

.skip-link:focus {
  top: 12px;
}

.topbar {
  background: var(--amber);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar a {
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 16, 24, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: var(--header);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.logo-mark {
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 12px;
  object-fit: cover;
  background: var(--amber);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text strong {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-text span {
  color: var(--amber);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  color: var(--paper);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--amber);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-amber {
  background: var(--amber);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--line);
}

.btn-dark {
  background: var(--ink);
  color: var(--paper);
}

.btn-wa {
  background: #25d366;
  color: #06210e;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--paper);
  margin: 0 auto;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 130px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(11, 16, 24, 0.22) 0%, rgba(11, 16, 24, 0.78) 52%, #0b1018 100%),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1920&q=80") center/cover;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 24px 120px;
  width: 100%;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--amber);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 16px;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--amber);
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0 0 14px;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3.1rem, 8vw, 6.4rem);
  max-width: 11ch;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  text-transform: uppercase;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero p {
  max-width: 42rem;
  font-size: 1.15rem;
  color: var(--paper);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
  max-width: 720px;
}

.hero-meta div {
  border-top: 2px solid var(--amber);
  padding-top: 12px;
}

.hero-meta strong {
  display: block;
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--white);
}

.hero-meta span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 88px 24px;
  scroll-margin-top: 118px;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
  align-items: end;
}

.section-head p,
.lede {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
}

.stripes {
  height: 14px;
  background: repeating-linear-gradient(
    -28deg,
    var(--amber) 0 16px,
    #111 16px 32px
  );
}

.light {
  background: var(--paper);
  color: #243044;
}

.light h2,
.light h3,
.light .stat strong {
  color: var(--ink);
}

.light .lede,
.light p,
.light .muted {
  color: #5b6573;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.service-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 28px;
}

.group-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.group-card.alt {
  background: #1c2738;
}

.group-card h3 {
  margin-bottom: 10px;
}

.group-card p {
  color: var(--muted);
  margin: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 220px;
}

.light .card {
  background: var(--white);
  border-color: #ddd4c4;
  box-shadow: 0 10px 30px rgba(20, 24, 32, 0.06);
}

.icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--amber);
}

.card h3 {
  font-size: 1.25rem;
}

.card p,
.muted {
  color: var(--muted);
  margin: 0;
}

.light .card p {
  color: #5b6573;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: step;
}

.step {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--display);
  color: var(--amber);
  font-size: 2rem;
  margin-bottom: 10px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.fleet-photo {
  min-height: 420px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(11, 16, 24, 0.1), rgba(11, 16, 24, 0.72)),
    url("https://images.unsplash.com/photo-1581094794329-c8112a89af12?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.fleet-list {
  display: grid;
  gap: 12px;
}

.fleet-item {
  background: var(--panel);
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
}

.fleet-item strong {
  display: block;
  color: var(--white);
}

.map-panel {
  background: var(--ink-2);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--line);
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--paper);
  font-size: 0.92rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat {
  padding: 8px 0;
}

.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 2.6rem;
  color: var(--white);
  line-height: 1;
}

.about-photo {
  min-height: 460px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(11, 16, 24, 0.05), rgba(11, 16, 24, 0.55)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.contact-card,
form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.contact-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-line span {
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-line strong,
.contact-line a {
  font-size: 1.12rem;
  color: var(--white);
}

label {
  display: block;
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 0.92rem;
}

.field {
  margin-bottom: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #101826;
  color: var(--paper);
  border-radius: 12px;
  padding: 12px 14px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-status {
  margin: 12px 0 0;
  color: var(--amber);
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 42px 24px 110px;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}

.site-footer a {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--amber);
}

.legal-links,
.footer-col {
  display: grid;
  gap: 8px;
}

.wa-fab,
.call-bar {
  position: fixed;
  z-index: 50;
}

.wa-fab {
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #06210e;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.call-bar {
  display: none;
  left: 12px;
  right: 78px;
  bottom: 18px;
  background: var(--amber);
  color: var(--ink);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  justify-content: center;
  gap: 6px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: auto;
  bottom: 24px;
  z-index: 60;
  max-width: 380px;
  background: var(--white);
  color: var(--ink);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.92rem;
}

.cookie-banner[hidden] {
  display: none !important;
}

.page-hero {
  padding: 72px 24px 28px;
}

.legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 80px;
  color: var(--muted);
}

.legal h1 {
  font-size: 3rem;
}

@media (max-width: 980px) {
  .section-head,
  .split,
  .service-groups,
  .cards,
  .steps,
  .fleet-grid,
  .stats,
  .contact-grid,
  .footer-grid,
  .hero-meta {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--header) + 34px) 0 auto 0;
    background: #101826;
    display: none;
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-actions .btn-ghost {
    display: none;
  }

  .hero-inner {
    padding-bottom: 160px;
  }

  .call-bar {
    display: flex;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 86px;
    max-width: none;
  }

  h1 {
    max-width: none;
  }

  .about-photo,
  .fleet-photo {
    min-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover {
    transform: none;
  }
}
