:root {
  --cream: #e5e5e5;
  --gold: #a38560;
  --forest: #16302b;
  --gold-light: #c4a882;
  --forest-deep: #0d1f1c;
  --off-white: #f0efed;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--forest-deep);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(229,229,229,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(163,133,96,0.15);
  transition: background 0.4s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.nav-logo-img {
  flex-shrink: 0;
  height: clamp(72px, 12vw, 104px);
  width: auto;
  max-width: min(400px, 50vw);
  object-fit: contain;
  object-position: left center;
  display: block;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  line-height: 1.15;
  min-width: 0;
}

.nav-logo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
}

.nav-logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: clamp(8px, 1.1vw, 10px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 400;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--forest);
  color: var(--gold) !important;
  padding: 10px 24px !important;
  border: 1px solid var(--forest) !important;
  border-radius: 0 !important;
  font-weight: 400 !important;
  transition: background 0.3s, color 0.3s !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--forest) !important; border-color: var(--gold) !important; }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  background: var(--forest);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 99px,
      rgba(163,133,96,0.07) 99px,
      rgba(163,133,96,0.07) 100px
    );
  pointer-events: none;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 70px 100px 80px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 6vw, 86px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 32px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(229,229,229,0.6);
  max-width: 400px;
  margin-bottom: 52px;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--forest);
  padding: 16px 38px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  border: 1px solid var(--gold);
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-ghost {
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}

.btn-ghost::after {
  content: '→';
  font-size: 16px;
  transition: transform 0.3s;
}

.btn-ghost:hover { color: var(--gold); }
.btn-ghost:hover::after { transform: translateX(5px); }

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  overflow: hidden;
  min-height: 360px;
}

.hero-right-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  width: 100%;
  height: 100%;
}

.hero-logo-center {
  max-width: min(620px, 94vw);
  width: 100%;
  margin-bottom: 24px;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.28));
}

.hero-logo-center img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.hero-stats {
  position: absolute;
  bottom: 60px;
  right: 60px;
  display: flex;
  gap: 48px;
  z-index: 3;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(229,229,229,0.4);
  margin-top: 6px;
  display: block;
  font-weight: 400;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(229,229,229,0.35);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  z-index: 3;
}

.scroll-line {
  width: 60px; height: 1px;
  background: rgba(229,229,229,0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ─── MARQUEE ─── */
.marquee-band {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  gap: 0;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 500;
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.marquee-item::after {
  content: '◆';
  font-size: 6px;
  opacity: 0.5;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SECTIONS ─── */
section {
  padding: 120px 80px;
}

.section-label {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-label::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--forest);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ─── ABOUT ─── */
#about {
  background: var(--off-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-text p {
  font-size: 15px;
  line-height: 2;
  color: #3a3a3a;
  margin-bottom: 24px;
  font-weight: 300;
}

.about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid rgba(163,133,96,0.25);
}

/* ─── About carousel ("Built on Excellence, Driven by Purpose") ─── */
.about-carousel {
  position: absolute;
  inset: 0;
  background: #1a1a1a;
}

.about-carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.about-carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.75s ease, visibility 0.75s ease;
  z-index: 0;
}

.about-carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.about-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-carousel-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 36px 20px 20px;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 400;
  background: linear-gradient(transparent, rgba(13, 31, 28, 0.88));
  z-index: 2;
}

.about-carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
}

.about-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.about-carousel-dot:hover,
.about-carousel-dot:focus-visible {
  background: rgba(255, 255, 255, 0.45);
  outline: none;
}

.about-carousel-dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .about-carousel-label {
    padding: 28px 16px 48px;
    font-size: 9px;
    letter-spacing: 0.22em;
  }
  .about-carousel-dots {
    bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-carousel-slide,
  .services-carousel-slide {
    transition-duration: 0.01ms;
  }
}

.about-card {
  background: var(--forest);
  padding: 56px;
  position: relative;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -12px; right: -12px;
  bottom: 12px; left: 12px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.about-card-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 28px;
}

.about-card-author {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

/* ─── SERVICES ─── */
#services {
  background: var(--cream);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}

.services-intro {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  font-weight: 300;
  max-width: 400px;
}

.services-showcase {
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(163,133,96,0.2);
}

.services-carousel {
  position: relative;
  width: 100%;
  min-height: min(48vw, 480px);
  background: #2a2a2a;
}

.services-carousel-slides {
  position: relative;
  width: 100%;
  min-height: min(48vw, 480px);
  margin: 0;
  padding: 0;
}

.services-carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.75s ease, visibility 0.75s ease;
  z-index: 0;
}

.services-carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.services-carousel-slide img {
  max-width: 100%;
  max-height: min(75vh, 600px);
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

.services-carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
  align-items: center;
}

.services-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.services-carousel-dot:hover,
.services-carousel-dot:focus-visible {
  background: rgba(255, 255, 255, 0.4);
  outline: none;
}

.services-carousel-dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.15);
}

.services-showcase::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22,48,43,0.55) 0%, transparent 55%);
  pointer-events: none;
  z-index: 2;
}

.services-showcase-caption {
  position: absolute;
  left: 40px;
  bottom: 36px;
  z-index: 3;
  max-width: 380px;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .services-carousel-slide {
    transition-duration: 0.01ms;
  }
}

.services-showcase-caption span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.services-showcase-caption p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.25;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--off-white);
  padding: 48px 40px;
  border-top: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  background: var(--forest);
  border-top-color: var(--gold);
  transform: translateY(-4px);
}

.service-card:hover .service-title { color: var(--cream); }
.service-card:hover .service-desc { color: rgba(229,229,229,0.55); }
.service-card:hover .service-icon-wrap { border-color: rgba(163,133,96,0.3); }
.service-card:hover .service-num { color: rgba(196, 168, 130, 0.55); }
.service-card:hover::after { transform: scaleX(1); }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 600;
  color: rgba(122, 95, 62, 0.55);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.3s;
  letter-spacing: -0.02em;
}

.service-icon-wrap {
  width: 52px; height: 52px;
  border: 1px solid rgba(163,133,96,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: border-color 0.3s;
}

.service-icon-wrap svg {
  width: 22px; height: 22px;
  fill: var(--gold);
}

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 14px;
  line-height: 1.2;
  transition: color 0.3s;
}

.service-desc {
  font-size: 13px;
  line-height: 1.85;
  color: #666;
  font-weight: 300;
  transition: color 0.3s;
}

/* ─── FLEET ─── */
#fleet {
  background: var(--forest);
  color: var(--cream);
}

#fleet .section-title { color: var(--cream); }

.fleet-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 72px;
}

.fleet-desc {
  max-width: 360px;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(229,229,229,0.55);
  font-weight: 300;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.fleet-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(163,133,96,0.12);
  padding: 0;
  transition: background 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.fleet-card:hover {
  background: rgba(163,133,96,0.07);
  border-color: rgba(163,133,96,0.3);
}

.fleet-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
}

.fleet-card-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-card-image img {
  transform: scale(1.03);
}

.fleet-card-body {
  padding: 40px 36px 48px;
}

.fleet-card-tag {
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 22px;
  display: block;
}

.fleet-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 18px;
  line-height: 1.15;
}

.fleet-card-desc {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(229,229,229,0.5);
  font-weight: 300;
  margin-bottom: 30px;
}

.fleet-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fleet-features li {
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(229,229,229,0.45);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fleet-features li::before {
  content: '';
  display: block;
  width: 18px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── WHY US ─── */
#why {
  background: var(--off-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 72px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-item {
  padding: 32px 0;
  border-bottom: 1px solid rgba(163,133,96,0.15);
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: padding-left 0.3s;
  cursor: default;
}

.why-item:hover { padding-left: 8px; }
.why-item:first-child { border-top: 1px solid rgba(163,133,96,0.15); }

.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 8px;
}

.why-text {
  font-size: 13px;
  line-height: 1.85;
  color: #666;
  font-weight: 300;
}

.why-visual {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-photo {
  aspect-ratio: 16/10;
  overflow: hidden;
  border: 1px solid rgba(163,133,96,0.2);
}

.why-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-visual-box {
  background: var(--forest);
  padding: 64px 56px;
  position: relative;
}

.why-visual-box::after {
  content: '';
  position: absolute;
  top: 12px; right: -12px;
  bottom: -12px; left: 0;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  pointer-events: none;
}

.why-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 40px;
}

.why-contact-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(229,229,229,0.4);
  margin-bottom: 6px;
  display: block;
}

.why-contact-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
  text-decoration: none;
}

.why-cta-wrap {
  margin-top: 32px;
}

/* ─── PROCESS ─── */
#process {
  background: var(--cream);
}

.process-banner {
  margin-top: 48px;
  margin-bottom: 48px;
  position: relative;
  min-height: min(36vw, 360px);
  overflow: hidden;
  border: 1px solid rgba(163,133,96,0.2);
}

.process-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: min(36vw, 360px);
  display: block;
}

.process-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(22,48,43,0.65) 0%, transparent 50%);
  pointer-events: none;
}

.process-banner-text {
  position: absolute;
  left: 40px;
  bottom: 32px;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  color: var(--cream);
  max-width: 480px;
  line-height: 1.35;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 0;
}

.process-step {
  background: var(--off-white);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--gold);
  transition: height 0.5s ease;
}

.process-step:hover::before { height: 100%; }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 600;
  color: rgba(122, 95, 62, 0.55);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 13px;
  line-height: 1.85;
  color: #666;
  font-weight: 300;
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
}

#testimonials .section-label { justify-content: center; }
#testimonials .section-label::before { display: none; }
#testimonials .section-title { color: var(--cream); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 72px;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(163,133,96,0.1);
  padding: 48px 40px;
  text-align: left;
  transition: background 0.3s;
}

.testimonial-card:hover { background: rgba(163,133,96,0.06); }

.testimonial-stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 4px;
  margin-bottom: 24px;
  display: block;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: rgba(229,229,229,0.8);
  line-height: 1.7;
  margin-bottom: 28px;
}

.testimonial-author {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

/* ─── CONTACT ─── */
#contact {
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
  margin-top: 72px;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-image-panel {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid rgba(163,133,96,0.2);
}

.contact-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-info-block {
  margin-bottom: 32px;
}

.contact-info-block:last-child {
  margin-bottom: 0;
}

.contact-info-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.contact-info-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--forest);
  display: block;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-val:hover { color: var(--gold); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 500;
  opacity: 0.6;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--off-white);
  border: 1px solid rgba(163,133,96,0.2);
  border-radius: 0;
  padding: 14px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--forest);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  background: var(--forest);
  color: var(--gold);
  padding: 18px 48px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
  border: 1px solid var(--forest);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--gold);
  color: var(--forest);
  border-color: var(--gold);
}

/* ─── FOOTER ─── */
footer {
  background: var(--forest-deep);
  padding: 72px 80px 40px;
}

.footer-logo-wrap {
  display: inline-block;
  background: transparent;
  padding: 0;
  margin-bottom: 24px;
  border: none;
}

.footer-logo {
  height: auto;
  width: auto;
  max-width: min(400px, 92vw);
  max-height: clamp(140px, 18vw, 200px);
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 6px 28px rgba(0, 0, 0, 0.4));
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(163,133,96,0.1);
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-brand-sub {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(229,229,229,0.35);
  font-weight: 300;
  max-width: 280px;
}

.footer-col-title {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 12px;
  color: rgba(229,229,229,0.4);
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
}

.footer-copy {
  font-size: 11px;
  color: rgba(229,229,229,0.2);
  font-weight: 300;
  letter-spacing: 0.5px;
}

.footer-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-style: italic;
  color: rgba(163,133,96,0.5);
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ─── MOBILE MENU ─── */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--forest);
  transition: transform 0.3s, opacity 0.3s;
}

nav.nav-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
nav.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
nav.nav-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  #hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(320px, 42vh);
  }
  .hero-left { padding: 140px 50px 80px; }
  .hero-stats {
    bottom: 24px;
    right: 24px;
    gap: 28px;
  }
  .stat-num { font-size: 32px; }
  #about { grid-template-columns: 1fr; gap: 60px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-layout { gap: 60px; }
}

@media (max-width: 900px) {
  .fleet-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 14px 20px; flex-wrap: wrap; }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    order: 3;
    gap: 0;
    padding: 16px 0 8px;
    border-top: 1px solid rgba(163,133,96,0.15);
    margin-top: 12px;
  }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .nav-links a {
    display: block;
    padding: 14px 4px;
  }
  .nav-links a.nav-cta {
    margin-top: 8px;
    text-align: center;
  }
  nav.nav-open .nav-links {
    display: flex;
  }
  .menu-toggle { display: flex; margin-left: auto; }
  section { padding: 80px 24px; }
  .hero-left { padding: 120px 24px 48px; }
  .hero-scroll { left: 24px; bottom: 24px; }
  .hero-stats {
    position: relative;
    bottom: auto;
    right: auto;
    justify-content: center;
    padding: 24px 16px 32px;
    gap: 32px;
    flex-wrap: wrap;
  }
  .hero-right-inner { padding: 32px 20px 0; }
  .services-header { grid-template-columns: 1fr; gap: 30px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-showcase-caption { left: 24px; bottom: 24px; }
  .services-carousel-dots { bottom: 14px; }
  .fleet-header { flex-direction: column; gap: 20px; align-items: flex-start; }
  .why-grid { grid-template-columns: 1fr; gap: 50px; }
  .why-visual { position: relative; top: 0; }
  .process-steps { grid-template-columns: 1fr; }
  .process-banner-text { left: 24px; bottom: 24px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 60px 24px 30px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .nav-logo { gap: 12px; }
  .nav-logo-img {
    max-width: min(200px, 42vw);
    height: clamp(52px, 14vw, 72px);
  }
  .nav-logo-title { font-size: 13px; letter-spacing: 0.16em; }
  .nav-logo-sub { font-size: 8px; letter-spacing: 0.26em; }
  .hero-logo-center { max-width: min(480px, 92vw); }
  .footer-logo { max-height: min(160px, 28vw); max-width: min(340px, 88vw); }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(40px, 11vw, 52px); }
  .marquee-item { padding: 0 24px; font-size: 9px; }
}
