/* ================================================
   CONCRETE ON TAP — Production Stylesheet v2
   Fonts: Montserrat (headings) + Inter (body)
   ================================================ */

/* GLOBAL OVERFLOW FIX — PREVENTS MOBILE CUTOFF */
html {
  width: 100%;
  /* NOTE: overflow-x must NOT be set on html — it breaks position:sticky */
}
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

* {
  max-width: 100vw;    /* Forces every element to stay within the screen width */
  box-sizing: border-box; /* Includes padding/borders in the width calculation */
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');



/* ── Variables ───────────────────────────────── */
:root {
  --navy:       #2C2C2C;  
  --navy-dark:  #1A1A1A;  
  --navy-mid:   #242424;  
  --orange:     #E85D04;  
  --orange-h:   #cf5203; 
  --gray:       #6B7280;  
  --gray-light: #F3F3F3;  
  --gray-mid:   #E0E0E0;  
  --white:      #ffffff;  
  --dark:       #0D0D0D;  
  --body-text:  #3D3D3D;  
  --border:     #D4D4D4;  

  --font-h: 'Montserrat', sans-serif;
  --font-b: 'Inter', sans-serif;

  --max: 1240px;
  --pad: 0 40px;
  --r:   6px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:    0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.15);
  --trans: .22s ease;
}

/* ── Reset ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b); color: var(--body-text); background: #fff;
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Container ───────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: var(--pad); }

/* ── Typography ──────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-h); line-height: 1.15; color: var(--navy); }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p  { color: var(--body-text); line-height: 1.75; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-h);
  font-size: .9em;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-intro { max-width: 680px; margin: 0 auto 24px; text-align: center; }
.section-intro h2 { margin-bottom: 14px; }
.section-intro p  { color: var(--gray); font-size: 1.05rem; }

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-h); font-weight: 700; font-size: .82rem;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 13px 26px; border-radius: var(--r);
  border: 2px solid transparent;
  transition: all var(--trans);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-orange { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-orange:hover { background: var(--orange-h); border-color: var(--orange-h); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,93,4,.3); }

.btn-white { background: #fff; color: var(--navy); border-color: #fff; }
.btn-white:hover { background: transparent; color: #fff; transform: translateY(-2px); }

.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }

.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

.btn-lg { padding: 16px 34px; font-size: .9rem; }
.btn-sm { padding: 9px 18px; font-size: .75rem; }

/* ── SITE HEADER (Sticky Wrapper) ──────────────── */
#site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2000; 
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column; /* Keeps Ticker above Nav */
}

/* ── Individual Header Components ──────────────── */
.top-bar-hgtv,
.main-nav {
  width: 100%;
}

/* .sticky-header is a passthrough wrapper inside #site-header — no extra sticky needed */
.sticky-header {
  width: 100%;
  display: contents; /* Makes it invisible to layout — children behave as direct children of #site-header */
}



/* ── TOP BAR ──────────────────────────────────── */
.top-bar {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 8px 0;
}
.top-bar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.top-bar-left { display: flex; align-items: center; gap: 24px; }
.top-bar-left a {
  display: flex; align-items: center; gap: 6px;
  font-size: .78rem; color: rgba(255,255,255,.7);
  transition: color var(--trans);
}
.top-bar-left a:hover { color: var(--orange); }
.top-bar-left a svg  { width: 13px; height: 13px; }
.top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-bar-right a {
  font-size: .78rem; font-family: var(--font-h); font-weight: 600;
  color: rgba(255,255,255,.7); transition: color var(--trans);
}
.top-bar-right a:hover { color: var(--orange); }
.top-bar-phone {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-h); font-weight: 800; font-size: .9rem;
  color: #fff !important;
  background: var(--orange); padding: 5px 14px; border-radius: 4px;
}
.top-bar-phone svg { width: 14px; height: 14px; color: #fff; }

/* ── MAIN NAV ─────────────────────────────────── */
.main-nav {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.main-nav .wrap {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo-icon {
  width: 44px; height: 44px;
  background: var(--orange); border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 24px; height: 24px; color: #fff; }
.nav-logo-name {
  font-family: var(--font-h); font-weight: 900; font-size: 1.05rem;
  color: #fff; line-height: 1.1;
}
.nav-logo-tag {
  font-family: var(--font-h); font-weight: 600; font-size: .58rem;
  letter-spacing: .15em; text-transform: uppercase; color: var(--orange);
  display: block; margin-top: 2px;
}

/* Nav links */
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-item  { position: relative; }

.nav-link {
  display: flex; 
  align-items: center; 
  justify-content: center; /* Keeps text centered in the "rectangle" */
  gap: 5px;
  font-family: var(--font-h); 
  font-weight: 600; 
  font-size: .78rem;
  letter-spacing: .04em; 
  text-transform: uppercase;
  color: rgba(255,255,255,.82); 
  
  /* SURGICAL FIX */
  padding: 10px 12px;       /* Reduced padding to save horizontal space */
  min-width: 105px;         /* Reduced from 130px to fit standard laptop screens */
  width: max-content;       /* Allows longer links like "Concrete Mixes" to expand slightly */
  
  border-radius: 4px; 
  transition: all var(--trans);
}

/* Ensure any active or special buttons (like Locations) respect the size */
.nav-link.active, 
.nav-item:hover .nav-link { 
  color: #fff; 
  background: rgba(255,255,255,.1); 
}
.nav-link svg { width: 12px; height: 12px; transition: transform var(--trans); }
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,.1); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 4px); left: 0;
  background: #fff; min-width: 220px;
  border-radius: var(--r); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all var(--trans);
  z-index: 1000;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 18px;
  font-family: var(--font-h); font-weight: 600; font-size: .78rem;
  letter-spacing: .03em; text-transform: uppercase;
  color: var(--navy); border-bottom: 1px solid var(--gray-light);
  transition: all var(--trans);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--gray-light); color: var(--orange); padding-left: 22px; }
.dropdown a::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}
.dropdown a:hover::before { width: 6px; height: 6px; }

/* Nav CTA */
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* ADD THIS TO style.css */

/* Desktop: maintain your 16:9 or custom look while keeping things clean */
.two-col img, 
.sector-block img, 
.mission-visual-inner img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}

/* Mobile: ensures fixed heights never break the viewport */
@media (max-width: 768px) {
  .two-col img, 
  .sector-block img, 
  .mission-visual-inner img,
  .hero-visual img {
    height: auto !important; /* Overrides the inline style heights you have now */
    aspect-ratio: 16 / 9;
    width: 100%;
  }
}


/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all var(--trans); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-nav {
  display: block; background: var(--navy-dark);
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
}
.mobile-nav.open { max-height: 600px; }
.mobile-nav a {
  display: block; padding: 13px 24px;
  font-family: var(--font-h); font-weight: 600; font-size: .8rem;
  letter-spacing: .05em; text-transform: uppercase;
  color: rgba(255,255,255,.8); border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--trans);
}
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav a.sub { padding-left: 40px; font-size: .74rem; color: rgba(255,255,255,.55); }

/* ── HERO ───────────────────────────────────────── */
.hero-section {
  width: 100%;
  background: #1a1a1a;
}

/* Outer wrap — full bleed, content padded inside */
.hero-outer {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* Full-width image container with copy overlaid */
.hero-image-wrap {
  position: relative;
  width: 100%;
  min-height: 520px;
  background-size: 110%;
  background-position: 30% 65%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 0;
}

/* Left-side dark gradient so text is readable */
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,.88) 0%,
    rgba(10,10,10,.72) 30%,
    rgba(10,10,10,.25) 58%,
    rgba(10,10,10,.00) 75%
  );
  z-index: 1;
}

/* Copy — left-aligned, no extra centering */
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 56px 0 52px 0;
  max-width: 460px;
  margin-left: 20%;
  margin-right: auto;
}

.hero-pre-head {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,.65);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hero-h1 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.06;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.hero-orange {
  color: var(--orange);
  font-style: normal;
}
.hero-lead {
  color: rgba(255,255,255,.78);
  font-size: .92rem;
  line-height: 1.65;
  margin-bottom: 24px;
}
.hero-call-btn {
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .05em;
  padding: 14px 26px;
  gap: 10px;
}

/* Check items bar — constrained, dark, tight */
.hero-checks-bar {
  background: #222;
  padding: 16px 0;
  border-radius: 0;
}
.hero-checks-inner {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding: 0 40px 0 20%;
  gap: 40px;
}
.hero-check-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #fff;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: .83rem;
  line-height: 1.35;
  flex: 1;
}
.hero-check-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--orange);
  margin-top: 2px;
}

/* Orange trust bar — constrained width, centered */
.hero-trust-bar {
  background: var(--orange);
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .87rem;
  color: #fff;
  letter-spacing: .02em;
}
.hero-trust-stars {
  color: #FFD700;
  font-size: 1rem;
  letter-spacing: 3px;
}

/* ── HGTV TOP BAR (replaces ticker) ───────────── */
.top-bar-hgtv {
  background: #1a1a1a;
  height: 36px;
  display: flex;
  align-items: center;
  width: 100%;
}
.top-bar-hgtv-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.top-bar-hgtv .top-bar-left {
  display: flex;
  align-items: center;
  gap: 0;
  color: rgba(255,255,255,.70);
  font-family: var(--font-h);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .02em;
}
.top-bar-hgtv .top-bar-left strong {
  color: #fff;
  font-weight: 900;
  font-size: .95rem;
  letter-spacing: .06em;
  margin: 0 4px;
}
.top-bar-hgtv .top-bar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-size: .8rem;
}
.top-bar-hgtv .top-bar-right strong {
  color: #fff;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .78rem;
}
.top-bar-hgtv .top-bar-right a {
  color: var(--orange);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .02em;
  text-decoration: none;
  transition: color .2s;
}
.top-bar-hgtv .top-bar-right a:hover { color: #ff7a2f; }

/* ── TRUST LOGOS ───────────────────────────────── */
.trust-strip {
  background: #222; border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 26px 0;
}
.trust-strip .wrap {
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.trust-label {
  font-family: var(--font-h); font-weight: 700; font-size: .68rem;
  letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.45);
  flex-shrink: 0;
}
.trust-logos { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.logo-ph {
  height: 34px; min-width: 90px; padding: 0 14px;
  background: rgba(255,255,255,.06); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: .64rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.45);
  border: 1px dashed rgba(255,255,255,.15);
}
.trust-google {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
  padding: 8px 16px; background: rgba(255,255,255,.06); border-radius: 6px;
}
.trust-stars { color: #f5a623; font-size: 1rem; letter-spacing: 2px; }
.trust-g-text { font-family: var(--font-h); font-weight: 700; font-size: .8rem; color: #fff; }
.trust-g-sub  { font-size: .68rem; color: rgba(255,255,255,.45); margin-top: 1px; }

/* ── SECTION BASE ──────────────────────────────── */
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-xs { padding: 36px 0; }
.bg-white    { background: #fff; }
.bg-light    { background: var(--gray-light); }
.bg-navy     { background: var(--navy); }
.bg-dark     { background: var(--navy-dark); }
.bg-orange   { background: var(--orange); }

/* ── TWO COLUMN ────────────────────────────────── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.two-col.gap-sm { gap: 48px; }
.two-col.flip   { direction: rtl; }
.two-col.flip > * { direction: ltr; }

/* ── IMAGE PLACEHOLDER ─────────────────────────── */
.img-ph {
  width: 100%; border-radius: 8px;
  background: linear-gradient(135deg, #dde3ea, #c9d1db);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  border: 2px dashed #b0bcc8;
  color: var(--gray); font-family: var(--font-h); font-size: .72rem;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.img-ph svg { width: 36px; height: 36px; opacity: .35; }

/* ── CHECK LIST ────────────────────────────────── */
.check-list { margin-top: 28px; }
.check-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 13px 0; border-bottom: 1px solid var(--border);
}
.check-item:last-child { border-bottom: none; }
.check-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--orange); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.check-icon svg { width: 11px; height: 11px; color: #fff; }
.check-item p { margin: 0; font-size: .93rem; }

/* ── STAT ROW ──────────────────────────────────── */
.stat-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0; margin-top: 40px; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden;
}
.stat-box {
  padding: 24px 20px; text-align: center;
  border-right: 1px solid var(--border);
  background: #fff;
}
.stat-box:last-child { border-right: none; }
.stat-n { font-family: var(--font-h); font-weight: 900; font-size: 2rem; color: var(--navy); line-height: 1; }
.stat-n span { color: var(--orange); }
.stat-l { font-size: .75rem; color: var(--gray); font-weight: 500; margin-top: 6px; }

/* ── SERVE GRID ────────────────────────────────── */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px; margin-top: 48px;
}
.serve-card {
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  padding: 32px 28px; position: relative; overflow: hidden;
  transition: all var(--trans);
}
.serve-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform var(--trans);
}
.serve-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: rgba(232,93,4,.2); }
.serve-card:hover::after { transform: scaleX(1); }
.serve-card-icon {
  width: 50px; height: 50px; border-radius: 8px;
  background: rgba(232,93,4,.08);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.serve-card-icon svg { width: 24px; height: 24px; color: var(--orange); }
.serve-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.serve-card p  { font-size: .9rem; color: var(--gray); line-height: 1.7; }
.serve-card-tag {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px;
  font-family: var(--font-h); font-weight: 700; font-size: .68rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--orange);
}
.serve-card-tag svg { width: 12px; height: 12px; }

/* ── HOW STEPS ─────────────────────────────────── */
.steps-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0; margin-top: 56px;
  border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
}
.step-item {
  padding: 36px 28px; background: #fff;
  border-right: 1px solid var(--border); position: relative;
}
.step-item:last-child { border-right: none; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-family: var(--font-h); font-weight: 900; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.step-item:hover .step-num { background: var(--orange); }
.step-item h3 { font-size: 1rem; margin-bottom: 10px; }
.step-item p  { font-size: .88rem; color: var(--gray); }

/* ── WHY CARDS ─────────────────────────────────── */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px; margin-top: 48px;
}
.why-card {
  padding: 28px 24px; border-radius: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  transition: all var(--trans);
}
.why-card:hover { background: rgba(255,255,255,.1); border-color: rgba(232,93,4,.3); }
.why-card-icon {
  width: 44px; height: 44px; border-radius: 8px;
  background: rgba(232,93,4,.15);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.why-card-icon svg { width: 22px; height: 22px; color: var(--orange); }
.why-card h4 { color: #fff; font-size: .95rem; margin-bottom: 8px; }
.why-card p  { color: rgba(255,255,255,.6); font-size: .85rem; line-height: 1.65; }

/* ── MIX CARDS ─────────────────────────────────── */
.mix-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; margin-top: 48px;
}
.mix-card {
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  overflow: hidden; transition: all var(--trans);
}
.mix-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.mix-card-img { height: 190px; }
.mix-card-body { padding: 24px; }
.mix-card-cat {
  display: inline-block;
  background: rgba(232,93,4,.1); color: var(--orange);
  font-family: var(--font-h); font-weight: 700; font-size: .63rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 99px; margin-bottom: 10px;
}
.mix-card-body h3 { font-size: 1rem; margin-bottom: 8px; }
.mix-card-body p  { font-size: .87rem; color: var(--gray); line-height: 1.65; }

/* ── LOCATION CARDS ────────────────────────────── */
.location-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.location-card {
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  padding: 24px; display: flex; gap: 16px; align-items: flex-start;
  transition: all var(--trans);
}
.location-card:hover { box-shadow: var(--shadow); border-color: rgba(232,93,4,.25); }
.loc-icon {
  width: 42px; height: 42px; border-radius: 8px;
  background: rgba(232,93,4,.1); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.loc-icon svg { width: 20px; height: 20px; color: var(--orange); }
.loc-card-name { font-size: .95rem; font-family: var(--font-h); font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.loc-card-addr { font-size: .82rem; color: var(--gray); line-height: 1.5; }
.loc-status {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 8px; font-family: var(--font-h); font-weight: 700;
  font-size: .65rem; letter-spacing: .06em; text-transform: uppercase;
}
.status-active { color: #22c55e; }
.status-soon   { color: var(--gray); }
.status-dot    { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ── PAGE HERO ─────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  /* charcoal: #1A1A1A → #2C2C2C */
  padding: 72px 0 64px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1   { color: #fff; margin-bottom: 14px; }
.page-hero p    { color: rgba(255,255,255,.68); font-size: 1.08rem; max-width: 600px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-bottom: 20px;
  font-family: var(--font-h); font-weight: 600; font-size: .68rem;
  letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45);
}
.breadcrumb a { color: var(--orange); }
.breadcrumb svg { width: 10px; height: 10px; }

/* ── COMPARISON TABLE ──────────────────────────── */

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,.04);
}

/* Header */
.compare-table th {
  background: var(--navy);
  color: #fff;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 18px 22px;
  text-align: left;
  border-bottom: 2px solid var(--border);
}

.compare-table th:first-child { border-radius: 10px 0 0 0; }
.compare-table th:last-child  { border-radius: 0 10px 0 0; }

/* Body cells */
.compare-table td {
  padding: 18px 22px;
  font-size: .9rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.6;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

/* Alternating rows */
.compare-table tbody tr:nth-child(even) td {
  background: var(--gray-light);
}

/* Drum column (neutral / slightly muted) */
.compare-table .check-r {
  color: #8b8f96;
}

/* Concrete On Tap column highlight */
.compare-table .col-us,
.compare-table .check-g {
  color: var(--navy);
  font-weight: 600;
}

/* Subtle highlight behind COT column */
.compare-table .col-us {
  background: rgba(232,93,4,.05);
}

/* Hover effect */
.compare-table tbody tr {
  transition: all var(--trans);
}

.compare-table tbody tr:hover td {
  background: rgba(232,93,4,.06);
}

.compare-table tbody tr:hover td:first-child {
  box-shadow: inset 3px 0 0 var(--orange);
}



/* ── CTA STRIP ─────────────────────────────────── */
.cta-strip { background: var(--orange); padding: 44px 0; }
.cta-strip .wrap {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cta-strip h2 { color: #fff; font-size: clamp(1.3rem, 2.5vw, 1.9rem); margin-bottom: 6px; }
.cta-strip p  { color: rgba(255,255,255,.82); font-size: .95rem; margin: 0; }

/* ── FOOTER ────────────────────────────────────── */
.site-footer { background: var(--navy-dark); padding: 72px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px; margin-bottom: 56px;
}
.footer-brand p {
  font-size: .88rem; color: rgba(255,255,255,.5);
  line-height: 1.8; margin: 16px 0 24px;
}
.footer-col h5 {
  font-family: var(--font-h); font-weight: 700; font-size: .68rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: .87rem; color: rgba(255,255,255,.55);
  padding: 5px 0; transition: color var(--trans);
}
.footer-col a:hover { color: #fff; }
.footer-socials { display: flex; gap: 10px; margin-top: 4px; }
.soc-btn {
  width: 36px; height: 36px; border-radius: 6px;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--trans); cursor: pointer;
}
.soc-btn:hover { background: var(--orange); }
.soc-btn svg { width: 15px; height: 15px; color: #fff; }
.footer-assocs { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.assoc-badge {
  padding: 5px 12px; border-radius: 4px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  font-family: var(--font-h); font-weight: 700; font-size: .62rem;
  letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 22px 0; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .78rem; color: rgba(255,255,255,.35); transition: color var(--trans); }
.footer-bottom-links a:hover { color: #fff; }

/* ── SECTOR PAGE ───────────────────────────────── */
.sector-nav {
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 0; position: sticky; top: 108px; z-index: 100;
}
.sector-nav .wrap { display: flex; overflow-x: auto; gap: 0;
-webkit-overflow-scrolling: touch; /* Smooth scroll on mobile */
  scrollbar-width: none; /* Hides scrollbar on Firefox */
}
.sector-nav .wrap::-webkit-scrollbar {
  display: none; /* Hides scrollbar on Chrome/Safari/Pixel */
}
.sector-nav a {
  padding: 16px 20px; white-space: nowrap;
  font-family: var(--font-h); font-weight: 700; font-size: .73rem;
  letter-spacing: .05em; text-transform: uppercase; color: var(--gray);
  border-bottom: 3px solid transparent;
  transition: all var(--trans); flex-shrink: 0;
}
.sector-nav a:hover, .sector-nav a.active { color: var(--navy); border-color: var(--orange); }

.sector-block {
  padding: 80px 0; border-bottom: 1px solid var(--border);
}
.sector-block:nth-child(even) { background: var(--gray-light); }
.sector-block:last-child { border-bottom: none; }

/* ── UTILITIES ─────────────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }
.text-center { text-align: center; }
.text-white  { color: #fff !important; }
.text-orange { color: var(--orange) !important; }
.text-gray   { color: var(--gray) !important; }

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --pad: 0 24px; }
  .hero-image-wrap  { min-height: 440px; background-size: 120%; }
  .hero-copy        { max-width: 460px; padding: 44px 0; }
  .two-col       { grid-template-columns: 1fr; gap: 40px; }
  .two-col.flip  { direction: ltr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  /* Location grid — 2 cols on tablet */
  .location-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section    { padding: 60px 0; }
  .section-sm { padding: 40px 0; }
  .hero       { padding: 56px 0; }
  .sector-block {
    padding: 40px 0; /* Tighter padding for mobile */
  }
  .sector-block .two-col {
    display: flex;
    flex-direction: column-reverse; /* Puts image below text for better flow */
  }
  .sector-block .two-col.flip {
    flex-direction: column-reverse; /* Keeps image below text even for flipped rows */
  }

  /* Nav */
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .main-nav .wrap { height: 60px; }
  .top-bar-left a:not(:first-child) { display: none; }

  /* HGTV top bar — stack on mobile */
  .top-bar-hgtv { height: auto; padding: 6px 0; }
  .top-bar-hgtv-inner { flex-direction: column; gap: 3px; text-align: center; }

  /* Hero — mobile */
  .hero-image-wrap    { min-height: 340px; background-size: 180%; background-position: 60% 60%; }
  .hero-image-overlay {
    background: linear-gradient(
      to right,
      rgba(10,10,10,.90) 0%,
      rgba(10,10,10,.70) 50%,
      rgba(10,10,10,.30) 100%
    );
  }
  .hero-copy          { max-width: 100%; padding: 36px 24px 28px; margin-left: 0; }
  .hero-call-btn      { width: 100%; justify-content: center; }
  .hero-checks-inner  { flex-direction: column; gap: 12px; padding: 0 24px; }

  /* Steps */
  .steps-row { grid-template-columns: 1fr; }
  .step-item { border-right: none; border-bottom: 1px solid var(--border); }

  /* Tables */
  .compare-table { font-size: .78rem; }
  .compare-table th, .compare-table td { padding: 10px 8px; }

  /* Grids */
  .serve-grid     { grid-template-columns: 1fr; }
  .location-grid  { grid-template-columns: 1fr; }
  .mix-grid       { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  /* CTA & Trust */
  .cta-strip .wrap  { flex-direction: column; text-align: center; }
  .cta-strip .btn   { width: 100%; justify-content: center; }
  .trust-strip .wrap { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Page hero */
  .page-hero { padding: 48px 0 40px; }
  .page-hero h1 { font-size: 2rem; }
}
@media (max-width: 480px) {
  :root { --pad: 0 16px; }
  h1 { font-size: 1.75rem; }

  /* Steps */
  .steps-row { grid-template-columns: 1fr; }

  /* Nav logo — smaller on tiny screens */
  .nav-logo img { height: 60px !important; }

  /* Section intro */
  .section-intro { padding: 0 8px; }

  /* Tables — allow horizontal scroll, remove min-width constraint */
  .compare-table th, .compare-table td { padding: 8px 6px; font-size: .74rem; }
}

/* SURGICAL MOBILE OVERRIDE */
@media (max-width: 480px) {
  /* This targets the logo specifically and overrides the HTML height="90" */
  .nav-logo img {
    height: 60px !important; 
    width: auto !important;
  }

  /* Shrinks the text next to the logo so it doesn't push off-screen */
  .nav-logo-name {
    font-size: 0.9rem !important;
  }
  
  .nav-logo-tag {
    font-size: 0.5rem !important;
  }
}

/* Restores the fixed sidebar width on desktop while allowing mobile stacking */
.audience-card-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 220px;
  width: 100%;
  overflow: hidden;
  align-items: stretch;
}

/* Restores the fixed sidebar width on desktop while allowing mobile stacking */
.audience-card-grid {
  display: grid;
  /* minmax(0, 1fr) is the "Guru" fix to prevent text overflow bugs */
  grid-template-columns: 280px minmax(0, 1fr); 
  min-height: 220px;
  width: 100%;
  overflow: hidden;
  align-items: stretch;
}

/* Prevents the white text area from spreading too wide on massive screens */
.audience-card-grid > div:last-child {
  max-width: 800px; 
}

@media (max-width: 900px) {
  .audience-card-grid {
    grid-template-columns: 1fr; /* Stacks vertically on mobile/tablet */
  }
  .audience-card-grid > div:last-child {
    max-width: 100%; /* Resets width for mobile */
  }
}

@media (max-width: 480px) {
  .stat-row {
    grid-template-columns: 1fr !important; /* Forces vertical stacking */
  }
  
  /* Adding these ensures the dividers look correct in a vertical list */
  .stat-box {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }
  
  .stat-box:last-child {
    border-bottom: none;
  }
/* ── PARTNER LOGO ───────────────────────────── */
/* Force proper horizontal alignment */
.tm-partner-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* LOGO SIZE  */
.tm-partner-logo {
  height: 26px;     /* key: match text size */
  width: auto;
  object-fit: contain;
  margin-bottom: 2px;
}

/* Make text same visual weight */
.tm-partner-name {
  font-size: 1rem;  /* slightly reduced for balance */
}

/* Keep badge tight and aligned */
.tm-partner-badge {
  align-items: center;
}

/* Optional: adjust on mobile */
@media (max-width: 768px) {
  .tm-partner-logo {
    height: 34px;
  }
}




}