:root {
  --black: #0a0a0a;
  --deep: #111214;
  --carbon: #1a1c1f;
  --steel: #2c2f35;
  --mid: #4a4f58;
  --muted: #bcc6d1;
  --silver: #d7dde4;
  --light: #e1e6ec;
  --white: #f5f5f0;
  --accent: #b8c4cc;
  --gold: #c9a96e;
  --gold-light: #e8c98a;
}

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

html {
  scroll-behavior: smooth;
  font-size: 17px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
}

.logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo .sub {
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--silver);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-dropdown-toggle::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.25s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 120px;
  padding: 10px 0;
  margin-top: 10px;
  list-style: none;
  background: rgba(17, 18, 20, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 200;
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 18px;
  color: var(--silver);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(225deg) translateY(-1px);
}

.nav-cta,
.btn-primary,
.btn-outline {
  display: inline-block;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}

.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 10px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-cta:hover {
  background: var(--gold-light);
}

/* ===== HERO ===== */
.about-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(44, 47, 53, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201, 169, 110, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.94) 82%, var(--black) 100%);
  z-index: 1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(80px);
  }
}

.hero-car {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: 58%;
  z-index: 0;
  opacity: 0;
  animation: carReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-car svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 80px rgba(201, 169, 110, 0.08));
}

@keyframes carReveal {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.85fr;
  gap: 48px;
  align-items: end;
  padding: 48px 72px 140px;
  min-height: calc(100vh - 72px);
}

/* ===== SECTIONS ===== */
.section-shell {
  padding: 120px 72px;
}

.two-col {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: start;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 300;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 720px;
}

.centered-title {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(58px, 6.3vw, 96px);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--silver);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 14px 36px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 14px 36px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stat-stack {
  display: grid;
  gap: 14px;
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 24px;
}

.hero-stat-label {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  line-height: 1;
}

/* ===== IDENTITY SECTION ===== */
.identity-section {
  background: var(--deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-text-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.identity-section .section-text-block p {
  font-size: clamp(16px, 1.05vw, 20px);
  color: var(--silver);
  line-height: 1.9;
}

/* ===== DIFFERENCE SECTION ===== */
.difference-section {
  background: var(--carbon);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-top: 56px;
}

.difference-card {
  background: var(--carbon);
  padding: 38px 32px;
  min-height: 250px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.difference-card:hover {
  background: var(--steel);
  transform: translateY(-3px);
}

.difference-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  color: rgba(232, 201, 138, 0.58);
  line-height: 1;
  margin-bottom: 20px;
}

.difference-card h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.difference-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.services-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.services-list {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.service-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 24px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-item:last-child {
  border-bottom: none;
}

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--gold);
}

.service-item h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}

.service-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-top: 48px;
}

.stats-card {
  background: var(--carbon);
  padding: 34px 28px;
  text-align: center;
}

.stats-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  line-height: 1;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.stats-label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.brands-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.brand-logo-tile {
  width: 120px;
  height: 62px;
  padding: 8px 10px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.brand-logo-tile img {
  width: 102px;
  height: 36px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}

.brand-logo-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--black);
  text-transform: uppercase;
}

/* ===== REACH SECTION ===== */
.reach-section {
  background: var(--carbon);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.reach-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 52px;
  align-items: center;
}

.reach-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px;
}

.reach-title {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.reach-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.reach-list span {
  background: var(--deep);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px 14px;
  font-size: 13px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.reach-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}

/* ===== VALUES SECTION ===== */
.values-section {
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-top: 48px;
}

.value-card {
  background: var(--carbon);
  padding: 42px 30px;
  transition: background 0.3s ease;
}

.value-card:hover {
  background: var(--steel);
}

.value-card h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.value-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}

/* ===== CTA SECTION ===== */
.about-cta {
  background: var(--deep);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

/* ===== FOOTER ===== */
footer {
  background: var(--deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 80px 72px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand .brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.18em;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.footer-brand .tagline-footer {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.8;
  max-width: 320px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-text,
.contact-text a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.25s;
}

.contact-text a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.25s;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .about-hero-inner,
  .two-col,
  .services-layout,
  .reach-layout,
  .cta-layout {
    grid-template-columns: 1fr;
  }

  .hero-car {
    width: 62%;
    opacity: 0.35;
    right: -12%;
  }

  .difference-grid,
  .stats-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cta-layout {
    align-items: start;
  }
}

@media (max-width: 1024px) {
  nav,
  .section-shell,
  footer,
  .about-hero-inner {
    padding-left: 28px;
    padding-right: 28px;
  }

  .nav-links {
    display: none;
  }

  .hero-title {
    font-size: 56px;
  }

  .section-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .about-hero-inner {
    padding-bottom: 96px;
  }

  .hero-car {
    width: 95%;
    right: -40%;
    top: 58%;
  }

  .difference-grid,
  .stats-grid,
  .values-grid,
  .reach-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-shell {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .services-list {
    margin-top: 12px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
