/* =========================================================
   Hawk Lane Freight LLC — styles.css
   Palette: black / gold / white (matched to logo)
   ========================================================= */

:root {
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #181818;
  --black-4: #222222;
  --line: #2a2a2a;
  --gold: #f5b700;
  --gold-2: #ffc933;
  --gold-soft: rgba(245, 183, 0, 0.12);
  --white: #ffffff;
  --gray-1: #f6f6f6;
  --gray-2: #d9d9d9;
  --gray-3: #8a8a8a;
  --gray-4: #4a4a4a;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.18);

  --container: 1200px;
  --header-h: 76px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }

ul { list-style: none; padding: 0; margin: 0; }

button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: 'Oswald', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin: 0;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); text-transform: uppercase; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); text-transform: uppercase; }
h3 { font-size: 1.25rem; text-transform: uppercase; letter-spacing: 0.02em; }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--gold); }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 14px;
  padding: 6px 12px;
  background: var(--gold-soft);
  border-radius: 999px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.88rem;
  border: 2px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 6px 18px rgba(245, 183, 0, 0.35);
}
.btn-primary:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(245, 183, 0, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
  color: var(--white);
}

/* On light sections, ghost flips to dark borders */
.section .btn-ghost {
  color: var(--black);
  border-color: var(--black);
}
.section .btn-ghost:hover {
  background: var(--black);
  color: var(--white);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.96);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.brand:hover { color: var(--white); }
.brand-logo {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: 'Oswald', sans-serif;
}
.brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
}
.brand-sub {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  position: relative;
  padding: 8px 0;
  transition: color 0.2s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}
.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }

.nav .nav-cta {
  padding: 10px 18px;
  font-size: 0.8rem;
}
.nav .nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  position: relative;
  padding: 0;
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease), top 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.nav-toggle.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 100px;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 500px at 80% 20%, rgba(245, 183, 0, 0.18), transparent 60%),
    radial-gradient(700px 400px at 10% 90%, rgba(245, 183, 0, 0.08), transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(transparent 95%, rgba(255, 255, 255, 0.04) 95%),
    linear-gradient(90deg, transparent 95%, rgba(255, 255, 255, 0.04) 95%);
  background-size: 40px 40px;
  opacity: 0.6;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-copy .eyebrow {
  background: rgba(245, 183, 0, 0.15);
  color: var(--gold);
}

.hero h1 {
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 600px;
}
.hero-stats li {
  display: flex;
  flex-direction: column;
}
.hero-stats strong {
  font-family: 'Oswald', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stats span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo {
  max-width: 100%;
  width: 480px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 40px rgba(245, 183, 0, 0.15));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--black-2);
  color: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 22px;
  padding-bottom: 22px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.trust-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-3);
}
.trust-value {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  font-weight: 600;
}
.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--line);
}

/* ---------- Sections ---------- */
.section {
  padding: 100px 0;
  position: relative;
}
.section-dark {
  background: var(--black);
  color: var(--white);
}
.section-dark .section-lead { color: rgba(255, 255, 255, 0.7); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.section-head h2 { margin-bottom: 16px; }
.section-lead {
  font-size: 1.05rem;
  color: var(--gray-4);
}
.section-dark .section-head .eyebrow {
  background: rgba(245, 183, 0, 0.15);
}

/* ---------- Grid utilities ---------- */
.grid {
  display: grid;
  gap: 24px;
}

/* ---------- Services ---------- */
.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--gold);
  border-radius: var(--radius);
  margin-bottom: 20px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.service-icon svg { width: 38px; height: auto; }
.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--black);
}

.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--gray-4); margin-bottom: 16px; }

.service-bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 0.92rem;
  color: var(--gray-4);
  margin-bottom: 6px;
}
.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* ---------- Why ---------- */
.why-grid {
  grid-template-columns: repeat(3, 1fr);
}
.why-card {
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: #161616;
}
.why-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
  opacity: 0.9;
}
.why-card h3 { margin-bottom: 10px; color: var(--white); }
.why-card p { color: rgba(255, 255, 255, 0.7); margin: 0; }

/* ---------- Fleet (Split) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-copy h2 { margin-bottom: 20px; }
.split-copy p { color: var(--gray-4); margin-bottom: 24px; font-size: 1.05rem; }

.check-list { margin-bottom: 32px; }
.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--black-2);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
}
.check-list li::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 9px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  transform: rotate(-45deg);
}

.split-visual {
  position: relative;
}
.fleet-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.fleet-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 100% 0%, rgba(245, 183, 0, 0.18), transparent 60%);
  pointer-events: none;
}
.fleet-stat {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fleet-stat:nth-child(2n) { border-right: none; }
.fleet-stat:nth-child(n+3) { border-bottom: none; }
.fleet-stat strong {
  font-family: 'Oswald', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.fleet-stat span {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.fleet-card--text {
  display: block;
  padding: 40px 32px;
}
.fleet-card--text p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
}

/* ---------- CTA / Contact ---------- */
.section-cta {
  background:
    linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 183, 0, 0.18), transparent 60%);
  pointer-events: none;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.cta-copy h2 { margin-bottom: 16px; }
.cta-copy p { color: rgba(255, 255, 255, 0.75); margin-bottom: 32px; font-size: 1.05rem; }

.contact-list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-list li:last-child { border-bottom: none; }
.contact-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-3);
}
.contact-list a { color: var(--white); font-weight: 500; }
.contact-list a:hover { color: var(--gold); }

/* ---------- Form ---------- */
.quote-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}
.quote-form label.full { display: block; margin-bottom: 16px; }
.quote-form label.full span { display: block; margin-bottom: 6px; }

.quote-form input,
.quote-form select,
.quote-form textarea {
  font: inherit;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.4);
  color: var(--white);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
  font-size: 0.95rem;
  letter-spacing: normal;
  text-transform: none;
  font-weight: 400;
}
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: rgba(255, 255, 255, 0.35); }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.6);
}
.quote-form select { color: var(--white); }
.quote-form select option { color: var(--black); }

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form-note {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}
.form-note a { color: var(--gold); }

/* Social profiles — hidden until live accounts exist */
.social-links,
.social-icons,
.footer-social {
  display: none !important;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #060606;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 70px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand p {
  margin: 16px 0 0;
  font-size: 0.92rem;
  max-width: 360px;
}
.footer-logo {
  width: 140px;
  height: auto;
}
.footer-col h4 {
  color: var(--white);
  margin-bottom: 18px;
  font-family: 'Oswald', sans-serif;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.92rem;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  font-size: 0.82rem;
  color: var(--gray-3);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { margin: 0; }
.footer-creds { color: var(--gold); letter-spacing: 0.06em; font-weight: 600; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-logo { width: 320px; }

  .services-grid,
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .split,
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    padding: 12px 24px 28px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  }
  .nav.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .nav a:last-child { border-bottom: none; }
  .nav .nav-cta { margin-top: 12px; align-self: flex-start; }

  .hero { padding-top: calc(var(--header-h) + 40px); padding-bottom: 70px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .section { padding: 70px 0; }
  .section-head { margin-bottom: 40px; }

  .services-grid,
  .why-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .footer-bottom-inner { justify-content: flex-start; }

  .trust-divider { display: none; }
  .trust-inner { gap: 18px 28px; }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
