/* Division 03 Supply — Everything But The Concrete */
:root {
  --navy: #0d2b4e;
  --navy-deep: #081d36;
  --orange: #f26a45;
  --orange-dark: #d9542f;
  --paper: #f7f5f1;
  --white: #ffffff;
  --ink: #1c2733;
  --gray: #5c6b7a;
  --line: #d8dde3;
}

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

body {
  font-family: 'Barlow', Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

h1, h2, h3, .display {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

img { max-width: 100%; display: block; }
a { color: var(--orange-dark); }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-deep);
  color: #cfd9e4;
  font-size: 0.85rem;
  padding: 6px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar a { color: var(--white); text-decoration: none; font-weight: 600; }

/* ---------- Header / Nav ---------- */
header {
  background: var(--white);
  border-bottom: 4px solid var(--navy);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.nav-logo img { height: 56px; width: auto; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 0;
  border-bottom: 3px solid transparent;
}
.nav-links a:hover, .nav-links a.active { border-bottom-color: var(--orange); }
.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--orange-dark); }
.menu-btn { display: none; background: none; border: 2px solid var(--navy); color: var(--navy); font-size: 1.3rem; padding: 4px 12px; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 340px; height: 340px;
  border: 14px solid var(--orange);
  opacity: 0.25;
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); color: var(--white); max-width: 780px; }
.hero h1 span { color: var(--orange); }
.hero p { font-size: 1.2rem; color: #c8d4e0; max-width: 620px; margin: 20px 0 32px; }
.btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn:hover { background: var(--orange-dark); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  margin-left: 14px;
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

/* ---------- Framed section (logo border motif) ---------- */
.framed {
  border: 6px solid var(--navy);
  padding: 40px;
  background: var(--white);
  position: relative;
}
.framed .frame-tag {
  position: absolute;
  bottom: -18px;
  right: 30px;
  background: var(--paper);
  color: var(--orange-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 12px;
  font-size: 1.1rem;
}

/* ---------- Sections ---------- */
section { padding: 70px 0; }
.eyebrow {
  color: var(--orange-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1rem;
  margin-bottom: 8px;
}
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--navy); margin-bottom: 18px; }
.lead { font-size: 1.1rem; color: var(--gray); max-width: 680px; }

/* ---------- Product grid ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 28px; margin-top: 44px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--orange);
  display: flex;
  flex-direction: column;
}
.card-photo {
  aspect-ratio: 4 / 3;
  background: repeating-linear-gradient(45deg, #e8ecf0, #e8ecf0 12px, #f0f3f6 12px, #f0f3f6 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.card-photo img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 22px; flex: 1; }
.card h3 { font-size: 1.35rem; color: var(--navy); margin-bottom: 8px; }
.card p { color: var(--gray); font-size: 0.95rem; }
.card .brand-tag {
  display: inline-block;
  margin-top: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange-dark);
  font-size: 0.95rem;
}

/* ---------- Split / info rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.info-strip {
  background: var(--navy);
  color: var(--white);
}
.info-strip .wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.info-strip h3 { color: var(--orange); font-size: 1.15rem; margin-bottom: 6px; }
.info-strip p, .info-strip a { color: #c8d4e0; text-decoration: none; }
.info-strip a:hover { color: var(--white); }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; margin-top: 40px; }
.contact-card { background: var(--white); border: 1px solid var(--line); padding: 32px; }
.contact-card h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 10px; }
.contact-card + .contact-card { margin-top: 24px; }
.big-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--navy);
  text-decoration: none;
}
.big-phone:hover { color: var(--orange-dark); }
.map-frame { border: 6px solid var(--navy); min-height: 380px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.hours-table td { padding: 8px 0; border-bottom: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--navy); }

/* ---------- Footer ---------- */
footer {
  background: var(--navy-deep);
  color: #9fb0c2;
  padding: 40px 0;
  font-size: 0.9rem;
}
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; align-items: center; }
footer a { color: #cfd9e4; text-decoration: none; }
footer .tagline { color: var(--orange); font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .split, .contact-grid { grid-template-columns: 1fr; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-bottom: 4px solid var(--navy);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; border-top: 1px solid var(--line); }
  .nav-links a { display: block; padding: 14px; }
  .menu-btn { display: block; }
  .btn-outline { margin-left: 0; margin-top: 12px; }
}
