/*
Theme Name: Dominate Logistics
Theme URI: https://dominatelogisticsllc.com
Author: Dominate Logistics, LLC
Description: A custom one-page WordPress theme for Dominate Logistics, LLC.
Version: 1.0.0
Text Domain: dominate-logistics
*/

:root {
  --bg: #070807;
  --panel: #11130f;
  --panel-2: #171a14;
  --text: #f4f4f1;
  --muted: #b8bcb2;
  --accent: #8fa51c;
  --accent-light: #b8cf39;
  --line: rgba(255,255,255,.13);
  --silver: #d5d7d5;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7,8,7,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; font-weight: 800; letter-spacing: .04em; }
.brand img { width: 54px; height: 54px; object-fit: cover; border-radius: 50%; border: 1px solid var(--line); }
.brand span small { display: block; color: var(--accent-light); font-size: .68rem; letter-spacing: .18em; font-weight: 700; }
.nav { display: flex; gap: 24px; align-items: center; font-size: .94rem; }
.nav a:hover { color: var(--accent-light); }
.nav .nav-cta { padding: 10px 16px; background: var(--accent); color: #0a0b08; font-weight: 800; border-radius: 4px; }

.hero {
  min-height: 720px;
  display: grid;
  place-items: center;
  position: relative;
  background:
    linear-gradient(90deg, rgba(4,5,4,.95) 0%, rgba(4,5,4,.70) 48%, rgba(4,5,4,.45) 100%),
    url('assets/images/banner.jpg') center/cover no-repeat;
  border-bottom: 1px solid var(--line);
}
.hero-content { max-width: 720px; padding: 110px 0; }
.eyebrow { color: var(--accent-light); font-weight: 800; letter-spacing: .18em; text-transform: uppercase; font-size: .78rem; }
h1 { font-size: clamp(3rem, 7vw, 6.6rem); line-height: .95; margin: 18px 0 24px; letter-spacing: -.045em; text-transform: uppercase; }
.hero p { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--silver); max-width: 650px; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 4px; font-weight: 800; border: 1px solid var(--accent); }
.btn-primary { background: var(--accent); color: #090a07; }
.btn-secondary { background: rgba(0,0,0,.32); color: var(--text); }
.btn:hover { transform: translateY(-1px); }

.section { padding: 92px 0; }
.section-dark { background: var(--panel); }
.section-header { max-width: 720px; margin-bottom: 44px; }
h2 { font-size: clamp(2.1rem, 4vw, 3.5rem); margin: 10px 0 16px; line-height: 1.05; text-transform: uppercase; }
.lead { color: var(--muted); font-size: 1.08rem; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: linear-gradient(145deg, var(--panel-2), #0e100c); border: 1px solid var(--line); padding: 30px; min-height: 270px; }
.card-number { color: var(--accent-light); font-weight: 800; letter-spacing: .15em; }
.card h3 { font-size: 1.45rem; margin: 18px 0 10px; text-transform: uppercase; }
.card p { color: var(--muted); }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.logo-panel { background: #050605; padding: 24px; border: 1px solid var(--line); }
.checks { list-style: none; padding: 0; margin: 28px 0 0; }
.checks li { margin: 12px 0; color: var(--silver); }
.checks li::before { content: '✓'; color: var(--accent-light); font-weight: 900; margin-right: 12px; }

.band { padding: 34px 0; background: var(--accent); color: #090a07; }
.band-inner { display: flex; gap: 30px; justify-content: space-between; align-items: center; }
.band strong { font-size: clamp(1.35rem, 3vw, 2.15rem); text-transform: uppercase; }
.band a { background: #090a07; color: #fff; padding: 13px 19px; border-radius: 4px; font-weight: 800; white-space: nowrap; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-card { padding: 28px; border: 1px solid var(--line); background: var(--panel-2); }
.contact-card span { color: var(--accent-light); font-size: .76rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 800; }
.contact-card a { display: block; font-size: clamp(1.15rem, 2.5vw, 1.65rem); margin-top: 8px; overflow-wrap: anywhere; }
.contact-note { margin-top: 28px; color: var(--muted); }

.site-footer { padding: 32px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

@media (max-width: 850px) {
  .nav a:not(.nav-cta) { display: none; }
  .hero { min-height: 630px; background-position: 58% center; }
  .cards, .split, .contact-grid { grid-template-columns: 1fr; }
  .split { gap: 34px; }
  .band-inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 520px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .brand span { font-size: .86rem; }
  .brand img { width: 46px; height: 46px; }
  .hero-content { padding: 84px 0; }
  .section { padding: 70px 0; }
}
