:root {
  --green-900: #0f2a18;
  --green-800: #143620;
  --green-700: #1c4a2a;
  --green-600: #266038;
  --green-100: #d8e6dc;
  --green-50:  #eef4ef;
  --gold:      #f5b91c;
  --gold-700:  #c79111;
  --barn-red:  #b03a2a;
  --barn-red-dk:#8e2d1f;
  --ink-900:   #0f1311;
  --ink-700:   #2c322e;
  --ink-500:   #5a635c;
  --ink-300:   #b1b8b3;
  --ink-100:   #e6e8e6;
  --cream:     #faf7f0;
  --shadow-md: 0 4px 14px rgba(15,19,17,.08);
  --shadow-lg: 0 18px 50px rgba(15,19,17,.18);
  --radius:    4px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink-900);
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--green-700); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: .01em;
  margin: 0 0 .4em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--ink-900);
}
h1 { font-size: clamp(3rem, 6vw, 5.2rem); letter-spacing: -.005em; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: 1.4rem; letter-spacing: .02em; }
h4 { font-size: .95rem; letter-spacing: .14em; }
p  { margin: 0 0 1em; }

.kicker {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gold-700);
  margin: 0 0 .8em;
}

.btn {
  display: inline-block;
  padding: .9em 1.6em;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .95rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: transform .08s ease, background .15s ease, border-color .15s ease, color .15s ease;
  cursor: pointer;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--green-700); color: #fff; border-color: var(--green-700); }
.btn-primary:hover { background: var(--green-900); border-color: var(--green-900); }
.btn-accent { background: var(--gold); color: var(--green-900); border-color: var(--gold); }
.btn-accent:hover { background: var(--gold-700); border-color: var(--gold-700); color: #fff; }
.btn-outline { background: transparent; color: var(--ink-900); border-color: var(--ink-900); }
.btn-outline:hover { background: var(--ink-900); color: #fff; }
.btn-on-dark { color: #fff; border-color: #fff; }
.btn-on-dark:hover { background: #fff; color: var(--green-900); }

/* Util bar */
.utilbar {
  background: var(--green-900);
  color: rgba(255,255,255,.85);
  font-size: .85rem;
}
.utilbar-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 24px;
}
.utilbar a { color: rgba(255,255,255,.85); margin-left: 18px; }
.utilbar a:hover { color: var(--gold); text-decoration: none; }

/* Header */
.site-header {
  background: #fff;
  border-bottom: 4px solid var(--green-700);
  position: sticky; top: 0; z-index: 30;
  box-shadow: var(--shadow-md);
}
.header-row {
  display: flex; align-items: center; gap: 28px;
  padding: 14px 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: .04em;
  color: var(--green-900);
}
.brand-text em {
  font-style: normal;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .25em;
  color: var(--gold-700);
  margin-top: 2px;
}
.primary-nav {
  display: flex; gap: 26px; margin-left: auto; margin-right: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: .1em;
}
.primary-nav a { color: var(--ink-900); padding: 6px 0; border-bottom: 2px solid transparent; transition: border-color .15s ease, color .15s ease; }
.primary-nav a:hover { color: var(--green-700); border-bottom-color: var(--gold); text-decoration: none; }
.header-cta { white-space: nowrap; padding: .65em 1.2em; }

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  overflow: hidden;
  min-height: 560px;
  display: flex; align-items: center;
}
.hero-img {
  position: absolute; inset: 0; z-index: -2;
  background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=2000&q=75');
  background-size: cover; background-position: center 60%;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(15,42,24,.82) 0%, rgba(15,42,24,.55) 55%, rgba(15,42,24,.25) 100%);
}
.hero-content {
  padding: 96px 24px 96px;
  max-width: 1200px;
  width: 100%;
}
.hero .kicker { color: var(--gold); }
.hero h1 { color: #fff; max-width: 14ch; }
.hero .lede { font-size: 1.2rem; color: rgba(255,255,255,.94); max-width: 540px; margin-top: 8px; }
.hero-cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero .btn-outline { color: #fff; border-color: rgba(255,255,255,.85); }
.hero .btn-outline:hover { background: #fff; color: var(--green-900); }

/* Business unit grid */
.units {
  background: #fff;
  padding: 0;
  margin-top: -56px;
  position: relative;
  z-index: 5;
}
.units-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  box-shadow: var(--shadow-lg);
  border-radius: 4px;
  overflow: hidden;
}
.unit {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: 300px;
  color: #fff;
  overflow: hidden;
}
.unit::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transition: transform .4s ease;
}
.unit:hover::before { transform: scale(1.06); }
.unit-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(15,42,24,.25) 0%, rgba(15,42,24,.85) 70%, rgba(15,42,24,.92) 100%);
}
.unit-body {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
}
.unit-body h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 6px;
}
.unit-body p {
  font-size: .92rem;
  margin: 0 0 14px;
  color: rgba(255,255,255,.88);
  line-height: 1.4;
}
.unit-link {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 700;
  font-size: .85rem;
  color: var(--gold);
  border-top: 1px solid rgba(255,255,255,.3);
  padding-top: 12px;
}
.unit:hover { text-decoration: none; }
.unit:hover .unit-link { color: #fff; }
@media (max-width: 1024px) {
  .units-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .units-grid { grid-template-columns: 1fr; }
}

/* About */
.about {
  background: var(--cream);
  padding: 110px 0;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-photo {
  background-size: cover;
  background-position: center;
  height: 460px;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-photo::after {
  content: "";
  position: absolute;
  bottom: -16px; right: -16px;
  width: 120px; height: 120px;
  background: var(--gold);
  z-index: -1;
  border-radius: 4px;
}
.about-text strong { color: var(--green-800); }
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .about-photo { height: 320px; }
}

/* Bids band (dark green) */
.bids {
  background: var(--green-800);
  color: #fff;
  padding: 96px 0;
}
.bids h2, .bids .kicker { color: #fff; }
.bids .kicker { color: var(--gold); }
.bids p { color: rgba(255,255,255,.85); }
.bids-card {
  background: #fff;
  color: var(--ink-900);
  padding: 28px;
  border-radius: 4px;
  border-top: 6px solid var(--gold);
  box-shadow: var(--shadow-lg);
}
.bids-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .8rem;
  color: var(--ink-500);
  margin-bottom: 12px;
}
.bid-table { width: 100%; border-collapse: collapse; }
.bid-table th, .bid-table td { padding: 12px 8px; text-align: left; border-bottom: 1px solid var(--ink-100); font-size: 1rem; }
.bid-table th { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; color: var(--ink-500); font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; }
.bid-table tbody tr:last-child td { border-bottom: 0; }
.bid-table td:first-child { font-weight: 600; color: var(--green-800); }
.fine-print { color: var(--ink-500); font-size: .8rem; margin: 14px 0 0; }

/* Services band (light) */
.services-band {
  background: #fff;
  padding: 110px 0;
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
  margin-top: 48px;
}
.svc-grid-3 { grid-template-columns: repeat(3, 1fr); }
.svc {
  border-top: 3px solid var(--gold);
  padding-top: 18px;
}
.svc h3 { color: var(--green-800); margin-bottom: 8px; }
.svc p { margin: 0; color: var(--ink-700); }
@media (max-width: 800px) { .svc-grid, .svc-grid-3 { grid-template-columns: 1fr; gap: 24px; } }

/* Split bands (image bg + side panel) */
.split-band {
  position: relative;
  isolation: isolate;
  background: var(--ink-900);
  color: #fff;
  min-height: 460px;
  display: flex; align-items: center;
  overflow: hidden;
}
.split-band::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
}
.split-band::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
}
.split-feed::before { background-image: url('https://images.unsplash.com/photo-1627920768491-e1b11d5fc42f?w=2000&q=70'); }
.split-feed::after { background: linear-gradient(95deg, rgba(15,42,24,.92) 0%, rgba(15,42,24,.85) 45%, rgba(15,42,24,.2) 100%); }
.split-logistics::before { background-image: url('https://images.unsplash.com/photo-1570316376196-461ab6c2c998?w=2000&q=70'); }
.split-logistics::after { background: linear-gradient(265deg, rgba(15,42,24,.92) 0%, rgba(15,42,24,.85) 45%, rgba(15,42,24,.2) 100%); }
.split-row { width: 100%; padding: 88px 24px; }
.split-row .split-text { max-width: 520px; }
.split-row-right { display: flex; justify-content: flex-end; }
.split-row-right .split-text { margin-left: auto; }
.split-band h2, .split-band .kicker { color: #fff; }
.split-band .kicker { color: var(--gold); }
.split-band p { color: rgba(255,255,255,.92); }
.split-band .check-list li { color: rgba(255,255,255,.92); }
.split-band .check-list li::before { border-color: var(--gold); }

.check-list { list-style: none; padding: 0; margin: 18px 0 0; }
.check-list li { padding-left: 28px; position: relative; margin-bottom: 10px; }
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--green-700);
  border-bottom: 2px solid var(--green-700);
  transform: rotate(-45deg);
}

/* Locations */
.locations {
  background: var(--cream);
  padding: 110px 0;
}
.loc-lede { color: var(--ink-700); margin-bottom: 32px; max-width: 640px; }
.loc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.loc {
  background: #fff;
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow-md);
}
.loc strong {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--green-900);
  font-size: 1.15rem;
  font-weight: 700;
}
.loc span { color: var(--ink-500); font-size: .85rem; }
@media (max-width: 900px) { .loc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .loc-grid { grid-template-columns: 1fr; } }

/* CTA band */
.cta-band {
  position: relative;
  isolation: isolate;
  color: #fff;
  padding: 110px 0;
  overflow: hidden;
}
.cta-img {
  position: absolute; inset: 0; z-index: -2;
  background-image: url('https://images.unsplash.com/photo-1624745726502-019e7fd68150?w=2000&q=70');
  background-size: cover; background-position: center;
}
.cta-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, rgba(15,42,24,.9) 0%, rgba(15,42,24,.7) 100%);
}
.cta-content { text-align: center; max-width: 720px; margin: 0 auto; }
.cta-content h2 { color: #fff; }
.cta-content p { color: rgba(255,255,255,.92); font-size: 1.1rem; margin-bottom: 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-outline { color: #fff; border-color: rgba(255,255,255,.8); }
.cta-band .btn-outline:hover { background: #fff; color: var(--green-900); }

/* Footer */
.site-footer {
  background: var(--ink-900);
  color: var(--ink-300);
  padding: 64px 0 24px;
  border-top: 4px solid var(--gold);
}
.brand-footer .brand-text strong { color: #fff; }
.brand-footer .brand-text em { color: var(--gold); }
.footer-tag { color: var(--ink-300); margin-top: 12px; font-size: .9rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 { color: #fff; margin: 6px 0 14px; letter-spacing: .14em; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: var(--ink-300); }
.footer-grid a:hover { color: var(--gold); text-decoration: none; }
.footer-fine { display: flex; justify-content: space-between; padding-top: 18px; font-size: .85rem; }
.footer-fine a { color: var(--ink-300); margin-left: 8px; }

/* Responsive niceties */
@media (max-width: 800px) {
  .utilbar-row { font-size: .75rem; }
  .primary-nav { display: none; }
  .header-cta { margin-left: auto; padding: .55em 1em; font-size: .85rem; }
  .hero { min-height: 480px; }
  .hero-content { padding: 72px 24px; }
  .units { margin-top: -32px; }
  .about, .bids, .services-band, .locations, .cta-band { padding: 72px 0; }
}
