:root {
  --ink: #0d0d0c;
  --ink-soft: #171714;
  --panel: #20201c;
  --paper: #f5efe4;
  --paper-strong: #fffaf0;
  --muted: #b9ad9a;
  --gold: #d69b3a;
  --gold-bright: #efc46d;
  --olive: #596348;
  --line: rgba(245, 239, 228, 0.16);
  --dark-line: rgba(13, 13, 12, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  --mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: rgba(13, 13, 12, 0.72);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(13, 13, 12, 0.92);
}

.main-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  width: min(100% - 48px, 1220px);
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 260px;
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-group-right {
  justify-content: flex-end;
}

.nav-group a {
  color: rgba(245, 239, 228, 0.78);
  transition: color 160ms ease;
}

.nav-group a:hover {
  color: var(--paper-strong);
}

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(214, 155, 58, 0.5);
  border-radius: 999px;
  color: var(--gold-bright) !important;
}

.nav-call svg,
.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
  justify-self: end;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(214, 155, 58, 0.52);
  border-radius: 999px;
  background: rgba(214, 155, 58, 0.08);
  color: var(--gold-bright);
  cursor: pointer;
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
  background: var(--ink);
}

.hero-media,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 900ms ease, transform 5000ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 13, 12, 0.92) 0%, rgba(13, 13, 12, 0.78) 38%, rgba(13, 13, 12, 0.18) 78%),
    linear-gradient(180deg, rgba(13, 13, 12, 0.34) 0%, rgba(13, 13, 12, 0.9) 100%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 82svh;
  width: min(100% - 48px, 1220px);
  margin: 0 auto;
  padding: 64px 0 80px;
}

.eyebrow,
.section-number {
  margin: 0 0 18px;
  color: var(--gold-bright);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.story-section h2,
.section-heading h2,
.dugun-content h2,
.contact-section h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: 84px;
}

.hero-copy {
  max-width: 580px;
  margin: 28px 0 0;
  color: rgba(245, 239, 228, 0.82);
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #16120b;
}

.button-secondary {
  border: 1px solid rgba(245, 239, 228, 0.42);
  background: rgba(245, 239, 228, 0.08);
  color: var(--paper);
}

.button-dark {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #12120f;
}

.strip-item {
  min-height: 176px;
  padding: 34px 42px;
  border-right: 1px solid var(--line);
}

.strip-item:last-child {
  border-right: 0;
}

.strip-item span {
  display: block;
  color: var(--gold-bright);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.strip-item strong {
  display: block;
  margin-top: 14px;
  color: var(--paper-strong);
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.08;
}

.strip-item p {
  max-width: 320px;
  margin: 12px 0 0;
  color: var(--muted);
}

.story-section,
.fleet-section,
.gallery-section {
  padding: 118px 0;
}

.story-section {
  background: var(--paper);
  color: var(--ink);
}

.section-inner {
  width: min(100% - 48px, 1220px);
  margin: 0 auto;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 80px;
  align-items: start;
}

.story-section .section-number,
.fleet-section .section-number,
.gallery-section .section-number {
  color: #8a642c;
}

.story-section h2 {
  max-width: 700px;
  font-size: 56px;
  color: var(--ink);
}

.story-copy {
  padding-top: 42px;
  color: rgba(13, 13, 12, 0.78);
  font-size: 18px;
}

.story-copy p {
  margin: 0;
}

.story-copy p + p {
  margin-top: 24px;
}

.fleet-section {
  background: #eef0eb;
  color: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.55fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 46px;
}

.section-heading h2 {
  font-size: 58px;
}

.section-heading p:last-child {
  margin: 0;
  color: rgba(13, 13, 12, 0.72);
  font-size: 18px;
}

.brand-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 34px;
  overflow: hidden;
  border: 1px solid rgba(13, 13, 12, 0.16);
  border-radius: 6px;
  background: rgba(13, 13, 12, 0.16);
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 66px;
  padding: 14px 16px;
  background: #fbfaf6;
  color: rgba(13, 13, 12, 0.86);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-pill img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  object-fit: contain;
}

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

.vehicle-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(13, 13, 12, 0.14);
  border-radius: 6px;
  background: #fbfaf6;
  box-shadow: 0 18px 48px rgba(13, 13, 12, 0.1);
  flex-direction: column;
}

.vehicle-photo-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #d9ded6;
}

.vehicle-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.vehicle-card:hover .vehicle-photo {
  transform: scale(1.04);
}

.vehicle-card-body {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 94px;
  padding: 18px 20px 12px;
}

.vehicle-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
}

.vehicle-logo-wide {
  width: 68px;
  height: auto;
}

.vehicle-card span {
  color: #8a642c;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.vehicle-card h3 {
  margin: 4px 0 0;
  font-family: var(--display);
  font-size: 31px;
  line-height: 1;
  letter-spacing: 0;
}

.vehicle-card strong {
  display: inline-flex;
  align-self: flex-start;
  min-height: 34px;
  align-items: center;
  margin: 0 20px 20px;
  padding: 0 12px;
  border: 1px solid rgba(13, 13, 12, 0.18);
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.dugun-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
  min-height: 720px;
  background: var(--olive);
  color: var(--paper);
}

.dugun-media {
  position: relative;
  min-height: 720px;
}

.dugun-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dugun-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}

.dugun-content h2 {
  font-size: 58px;
}

.dugun-content p:not(.section-number) {
  margin: 28px 0 0;
  color: rgba(245, 239, 228, 0.82);
  font-size: 18px;
}

.dugun-content .button {
  align-self: flex-start;
  margin-top: 34px;
}

.gallery-section {
  background: var(--paper);
  color: var(--ink);
}

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

.gallery-item {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #d7c8b3;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 520ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 3;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(245, 239, 228, 0.24);
  border-radius: 999px;
  background: rgba(13, 13, 12, 0.76);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.proof-section {
  padding: 118px 0;
  background: #151512;
  color: var(--paper);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 0.9fr);
  gap: 72px;
  align-items: center;
}

.proof-copy h2 {
  max-width: 580px;
  margin: 0;
  font-family: var(--display);
  font-size: 52px;
  line-height: 1;
  letter-spacing: 0;
}

.proof-copy p:not(.section-number) {
  max-width: 540px;
  margin: 26px 0 0;
  color: rgba(245, 239, 228, 0.78);
  font-size: 18px;
}

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

.location-media figure,
.map-embed {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0f0f0d;
  box-shadow: var(--shadow);
  height: 460px;
}

.location-media img,
.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.location-media figcaption,
.map-link {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(13, 13, 12, 0.78);
  color: var(--gold-bright);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.map-link {
  transition: background 160ms ease, color 160ms ease;
}

.map-link:hover {
  background: rgba(214, 155, 58, 0.96);
  color: var(--ink);
}

.contact-section {
  padding: 118px 0;
  background:
    linear-gradient(135deg, rgba(214, 155, 58, 0.12), rgba(89, 99, 72, 0.24)),
    var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 78px;
  align-items: start;
}

.contact-section h2 {
  max-width: 680px;
  font-size: 58px;
}

.contact-lead {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(245, 239, 228, 0.78);
  font-size: 18px;
}

.contact-panel {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(245, 239, 228, 0.06);
  box-shadow: var(--shadow);
}

.contact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.contact-row span {
  color: var(--gold-bright);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-row strong {
  color: var(--paper-strong);
  font-size: 18px;
  line-height: 1.35;
}

.contact-actions {
  padding: 24px;
  margin-top: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 116px;
  width: min(100% - 48px, 1220px);
  margin: 0 auto;
  color: rgba(245, 239, 228, 0.64);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer img {
  width: 230px;
}

@media (max-width: 1040px) {
  .main-nav {
    grid-template-columns: auto 1fr auto;
  }

  .brand {
    grid-column: 1;
    justify-content: flex-start;
    width: 220px;
  }

  .nav-group {
    display: none;
  }

  .menu-toggle {
    grid-column: 3;
    display: inline-flex;
  }

  .mobile-menu {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    display: grid;
    gap: 1px;
    padding: 1px 24px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(13, 13, 12, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    min-height: 54px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .hero h1 {
    font-size: 66px;
  }

  .story-section h2,
  .section-heading h2,
  .dugun-content h2,
  .contact-section h2 {
    font-size: 46px;
  }

  .story-grid,
  .section-heading,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .story-copy {
    padding-top: 0;
  }

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

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

  .dugun-section {
    grid-template-columns: 1fr;
  }

  .dugun-media {
    min-height: 520px;
  }

  .dugun-content {
    padding: 70px 48px;
  }

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

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .main-nav,
  .section-inner,
  .hero-inner,
  .site-footer {
    width: min(100% - 32px, 1220px);
  }

  .main-nav {
    min-height: 70px;
  }

  .brand {
    width: 184px;
  }

  .mobile-menu {
    top: 70px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero,
  .hero-inner {
    min-height: 76svh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(13, 13, 12, 0.78) 0%, rgba(13, 13, 12, 0.5) 42%, rgba(13, 13, 12, 0.94) 100%),
      linear-gradient(90deg, rgba(13, 13, 12, 0.68), rgba(13, 13, 12, 0.12));
  }

  .hero-inner {
    justify-content: flex-end;
    padding: 80px 0 52px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 16px;
    max-width: 330px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-strip {
    grid-template-columns: 1fr;
  }

  .strip-item {
    min-height: 150px;
    padding: 28px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story-section,
  .fleet-section,
  .gallery-section,
  .contact-section {
    padding: 78px 0;
  }

  .story-section h2,
  .section-heading h2,
  .dugun-content h2,
  .proof-copy h2,
  .contact-section h2 {
    font-size: 36px;
  }

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

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

  .brand-pill {
    min-height: 60px;
    padding: 12px;
    font-size: 10px;
  }

  .vehicle-card h3 {
    font-size: 28px;
  }

  .dugun-media {
    min-height: 360px;
  }

  .dugun-content {
    padding: 58px 24px;
  }

  .gallery-wide {
    grid-column: auto;
  }

  .gallery-item,
  .gallery-item img {
    min-height: 320px;
  }

  .proof-section {
    padding: 78px 0;
  }

  .location-media {
    grid-template-columns: 1fr;
  }

  .location-media figure,
  .map-embed {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .map-embed {
    aspect-ratio: 4 / 3;
  }

  .location-media img,
  .map-embed iframe {
    min-height: 0;
  }

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

  .contact-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 20px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 26px 0;
  }

  .site-footer img {
    width: 210px;
  }
}
