:root {
  --ink: #09090a;
  --panel: #101012;
  --panel-2: #151516;
  --paper: #f2f0eb;
  --muted: #aba9a4;
  --line: rgba(255, 255, 255, 0.14);
  --orange: #ff4d00;
  --orange-dark: #bd3600;
  --shell: 1180px;
  --header: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header); }
body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 77, 0, 0.045), transparent 22rem),
    var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; padding: 12px 18px; background: var(--orange); color: white; }
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header);
  padding: 0 max(24px, calc((100vw - var(--shell)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(9, 9, 10, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-wordmark {
  color: #e5e3df;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: .075em;
  line-height: 1;
}
.brand-wordmark > span { color: var(--orange); }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a, .site-footer nav a {
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a:hover, .site-nav a:focus-visible, .site-footer nav a:hover { color: var(--orange); }
.menu-button { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: transparent; padding: 11px; }
.menu-button span { display: block; height: 2px; margin: 5px 0; background: var(--orange); transition: .2s ease; }

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header);
}
.hero-photo, .hero-shade { position: absolute; inset: 0; }
.hero-photo {
  background: url("assets/dekalb-hero.webp") center 45% / cover no-repeat;
  transform: scale(1.015);
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(5,5,6,.98) 0%, rgba(5,5,6,.8) 45%, rgba(5,5,6,.24) 100%),
    linear-gradient(0deg, rgba(9,9,10,.9) 0%, transparent 40%);
}
.hero-content { position: relative; z-index: 1; padding-block: 110px 80px; }
.hero-logo { width: clamp(210px, 22vw, 300px); height: auto; margin: 0 0 20px; filter: drop-shadow(0 8px 22px rgba(0,0,0,.55)); }
.eyebrow, .section-label {
  color: var(--orange);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow span { margin-inline: .45rem; }
h1, h2, h3, .orange-heading {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: .025em;
  line-height: .98;
  text-transform: uppercase;
}
h1 { max-width: 930px; font-size: clamp(4rem, 8.2vw, 7.6rem); text-shadow: 0 6px 32px rgba(0,0,0,.55); }
h2 { font-size: clamp(2.9rem, 5vw, 5.25rem); }
h3 { font-size: 2rem; }
.hero-copy { max-width: 700px; margin: 28px 0 32px; color: #dfddd8; font-size: clamp(1.05rem, 1.6vw, 1.3rem); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  min-height: 54px;
  padding: 15px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  color: white;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--orange); border-color: var(--orange); box-shadow: 0 12px 38px rgba(255,77,0,.18); }
.button-primary:hover { background: #ff651f; }
.button-outline { background: rgba(0,0,0,.28); border-color: var(--orange); color: var(--orange); }
.button-outline:hover { background: var(--orange); color: white; }

.section { position: relative; padding-block: 118px; border-top: 1px solid var(--line); }
.section-label { margin: 0 0 18px; }
.section-label::before, .section-label::after { content: ""; display: inline-block; width: 28px; height: 2px; margin: 0 12px 3px 0; background: var(--orange); }
.section-label::after { display: none; margin: 0 0 3px 12px; }
.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 80px; align-items: start; }
.about { background: linear-gradient(120deg, #0b0b0c, #121214); }
.prose { color: #c9c7c2; font-size: 1.09rem; }
.prose p:first-child { margin-top: 5px; }
.prose .emphasis { color: var(--paper); font-weight: 800; }

.pillars { background: #0d0d0e; }
.pillars h2 { max-width: 780px; margin-bottom: 52px; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.pillar-card { min-height: 440px; padding: 34px; display: flex; flex-direction: column; border-right: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.025), transparent 65%); }
.pillar-card:last-child { border-right: 0; }
.pillar-number { color: var(--orange); font-size: .8rem; font-weight: 900; letter-spacing: .16em; }
.pillar-card h3 { margin: 22px 0 18px; }
.pillar-card p { margin: 0 0 26px; color: #bdbbb6; }
.pillar-card a { margin-top: auto; color: var(--orange); font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.pillar-card a:hover { color: white; }

.media-section { display: grid; grid-template-columns: 1.1fr .9fr; align-items: stretch; min-height: 580px; }
.media-reverse { grid-template-columns: .92fr 1.08fr; }
.land-image, .motor-image { min-height: 520px; border: 1px solid var(--line); }
.land-image { background: linear-gradient(rgba(6,6,7,.2), rgba(6,6,7,.6)), url("assets/dekalb-hero.webp") center / cover no-repeat; }
.motor-image { order: 2; background: linear-gradient(rgba(6,6,7,.16), rgba(6,6,7,.58)), url("assets/motor-group.webp") center 52% / cover no-repeat; }
.section-copy { padding: 50px clamp(32px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; background: var(--panel); border: 1px solid var(--line); }
.section-copy p:not(.section-label):not(.orange-heading):not(.status-line) { color: #c6c4bf; }
.orange-heading { margin: 22px 0 12px; color: var(--orange); font-size: 1.55rem; }
.status-line { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--orange); font-size: .76rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.status-line span { display: inline-block; width: 8px; height: 8px; margin-right: 9px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 14px var(--orange); }

.journey { min-height: 600px; display: grid; align-items: center; overflow: hidden; text-align: center; background: linear-gradient(rgba(8,8,9,.82), rgba(8,8,9,.9)), url("assets/dekalb-hero.webp") center / cover no-repeat; }
.journey-glow { position: absolute; inset: auto 0 0 12%; width: 420px; height: 330px; background: radial-gradient(circle, rgba(255,77,0,.22), transparent 68%); filter: blur(25px); }
.journey-content { position: relative; max-width: 840px; }
.section-label.centered::after { display: inline-block; }
.journey h2 { margin-bottom: 25px; }
.journey p:not(.section-label) { max-width: 700px; margin: 0 auto 32px; color: #d0cec8; font-size: 1.08rem; }

.contact { background: linear-gradient(135deg, #111113, #09090a); }
.contact-grid { display: grid; grid-template-columns: 1fr .75fr; gap: 80px; align-items: center; }
.contact h2 { margin-bottom: 22px; }
.contact p { color: #c6c4bf; }
.email-link { color: var(--orange); font-size: 1.1rem; font-weight: 800; text-decoration: none; }
.contact-action { padding: 42px; border: 1px solid var(--line); background: rgba(255,255,255,.02); }
.contact-action .button { width: 100%; }
.contact-action p { margin: 18px 0 0; font-size: .79rem; }

.site-footer { padding-block: 55px 35px; border-top: 1px solid var(--line); background: #070708; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; }
.footer-brand .brand-wordmark { font-size: 1.65rem; }
.site-footer p { margin: 18px 0 0; color: #7f7e7b; font-size: .76rem; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 22px; }
.legal-note { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); }
.legal-note p { max-width: 900px; margin: 0; line-height: 1.55; }

:focus-visible { outline: 3px solid white; outline-offset: 3px; }

@media (max-width: 900px) {
  :root { --header: 68px; }
  .site-header { padding-inline: 20px; }
  .brand { width: 126px; }
  .menu-button { display: block; }
  .site-nav {
    position: fixed;
    inset: var(--header) 0 0;
    display: none;
    padding: 48px 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(8,8,9,.98);
  }
  .site-nav.open { display: flex; }
  .site-nav a { width: 100%; padding: 18px 4px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-card { min-height: auto; border: 0; border-bottom: 1px solid var(--line); }
  .pillar-card:last-child { border-bottom: 0; }
  .media-section, .media-reverse { grid-template-columns: 1fr; }
  .motor-image { order: 0; }
  .land-image, .motor-image { min-height: 450px; }
  .footer-grid { grid-template-columns: 1fr; align-items: start; }
  .site-footer nav { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 34px), var(--shell)); }
  .hero { min-height: 720px; align-items: end; }
  .hero-photo { background-position: 61% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(5,5,6,.99) 0%, rgba(5,5,6,.84) 61%, rgba(5,5,6,.45) 100%); }
  .hero-content { padding-block: 130px 70px; }
  .hero-logo { width: min(220px, 66vw); margin-bottom: 17px; }
  .eyebrow { max-width: 330px; line-height: 1.8; }
  .eyebrow span { margin-inline: .2rem; }
  h1 { font-size: clamp(3.25rem, 17vw, 5rem); }
  h2 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .button-row { flex-direction: column; }
  .button-row .button { width: 100%; }
  .section { padding-block: 82px; }
  .section-copy { padding: 38px 26px; }
  .land-image, .motor-image { min-height: 350px; }
  .pillar-card { padding: 30px 24px; }
  .contact-action { padding: 28px 22px; }
  .site-footer nav { flex-direction: column; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
