:root {
  --red: #d83228;
  --red-dark: #a9211a;
  --ink: #111416;
  --charcoal: #24282b;
  --steel: #5d656a;
  --line: #d8dcde;
  --paper: #f5f5f3;
  --white: #ffffff;
  --max: 1240px;
  --shadow: 0 20px 50px rgba(0,0,0,.16);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; }
.section-title {
  margin: 0;
  max-width: 820px;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: .96;
  text-transform: uppercase;
}
.section-copy { max-width: 720px; margin: 24px 0 0; color: #4a5155; font-size: 1.04rem; }
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: .2s ease;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #2a2e31; }
.btn-outline { border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--ink); }
.btn-light-outline { border-color: #aab0b3; color: var(--ink); }
.btn-light-outline:hover { border-color: var(--ink); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17,20,22,.96);
  color: var(--white);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner { height: 84px; display: flex; align-items: center; gap: 36px; }
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 132px; height:auto; max-height: 68px; object-fit: contain; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.site-nav a { position: relative; text-decoration: none; color: #e6e8e9; font-size: .88rem; font-weight: 700; }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -10px; height: 2px; background: var(--red); transition: .2s ease; }
.site-nav a:not(.nav-cta):hover::after, .site-nav a.active:not(.nav-cta)::after { right: 0; }
.site-nav .nav-cta { padding: 12px 17px; background: var(--red); color: #fff; white-space: nowrap; }
.site-nav .nav-call::before { content: "☎"; margin-right: 7px; font-size: .84em; }
.menu-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.18); background: transparent; color: white; font-size: 1.4rem; }
.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #16191b;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.82) contrast(1.03); transform: scale(1.015); }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,13,14,.91) 0%, rgba(11,13,14,.66) 42%, rgba(11,13,14,.14) 72%, rgba(11,13,14,.34) 100%),
    linear-gradient(0deg, rgba(11,13,14,.72) 0%, rgba(11,13,14,0) 48%);
}
.hero-gridline { position: absolute; z-index: 1; inset: 0; pointer-events: none; background: linear-gradient(90deg, transparent 0 74%, rgba(255,255,255,.08) 74% 74.08%, transparent 74.08%); }
.hero-content { position: relative; z-index: 2; padding: 110px 0 84px; max-width: 850px; }
.hero .eyebrow { color: #f06b62; }
.hero h1 {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(4.2rem, 9.3vw, 8.4rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: .82;
  text-transform: uppercase;
}
.hero h1 span { color: #ef473d; }
.hero p { max-width: 700px; margin: 28px 0 0; color: #e1e3e4; font-size: clamp(1rem, 1.6vw, 1.2rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-stats {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255,255,255,.16);
  background: rgba(13,15,16,.52);
}
.hero-stats .container { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat { padding: 22px 28px 24px 0; border-right: 1px solid rgba(255,255,255,.14); }
.stat + .stat { padding-left: 28px; }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-family: "Barlow Condensed", Arial, sans-serif; font-size: 2.25rem; line-height: 1; }
.stat span { display: block; margin-top: 8px; color: #bfc4c7; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: none; }
.section { padding: 108px 0; }
.section-dark { background: var(--ink); color: white; }
.section-dark .section-copy { color: #b9bfc2; }
.section-paper { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 78px; align-items: center; }
.intro-media { position: relative; min-height: 520px; }
.intro-media::before { content: ""; position: absolute; top: -18px; left: -18px; width: 44%; height: 42%; border-top: 5px solid var(--red); border-left: 5px solid var(--red); }
.intro-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; box-shadow: var(--shadow); }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 42px; background: #cfd3d5; border: 1px solid #cfd3d5; }
.value { padding: 24px; background: white; }
.value strong { display: block; font-family: "Barlow Condensed", Arial, sans-serif; font-size: 1.5rem; text-transform: uppercase; }
.value span { color: #6b7174; font-size: .9rem; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 52px; }
.product-button {
  padding: 34px 30px 30px;
  min-height: 270px;
  background: #2c3235;
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.13);
  border-top: 4px solid var(--red);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  display: grid;
  grid-template-rows: 28px 104px 28px;
  align-content: center;
  gap: 8px;
  transition: .2s ease;
}
.product-button:hover { transform: translateY(-3px); background: #373e42; border-color: rgba(255,255,255,.23); }
.product-button small { color: #f37a72; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.product-button h3 { margin: 0; display: flex; align-items: flex-end; font-family: "Barlow Condensed", Arial, sans-serif; font-size: 2.2rem; line-height: .98; text-transform: uppercase; }
.product-button span { display: inline-block; margin-top: 8px; color:#f2f4f5; font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.project-mosaic { display: grid; grid-template-columns: 1.05fr .95fr; grid-template-rows: 300px 300px; gap: 16px; margin-top: 50px; }
.project-shot { position: relative; overflow: hidden; background: #222; }
.project-shot:first-child { grid-row: 1 / 3; }
.project-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.project-shot:hover img { transform: scale(1.02); }
.project-shot::after { content: ""; position: absolute; inset: auto 0 0; height: 35%; background: linear-gradient(0deg, rgba(0,0,0,.5), transparent); }
.project-strip { margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.location-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
.location { padding: 30px; background: #fff; border: 1px solid #dedfdf; }
.location.primary { border-top: 5px solid var(--red); }
.location h3 { margin: 0 0 14px; font-family: "Barlow Condensed", Arial, sans-serif; font-size: 1.7rem; text-transform: uppercase; }
.location p { margin: 0; color: #5a6164; }
.location a { display: inline-block; margin-top: 18px; color: var(--red); font-weight: 800; text-decoration: none; }
.cta-band { position: relative; overflow: hidden; background: var(--red); color: white; }
.cta-band::after { content: "BIG"; position: absolute; right: -10px; top: -55px; font-family: "Barlow Condensed", Arial, sans-serif; font-size: 14rem; font-weight: 800; line-height: 1; color: rgba(255,255,255,.08); }
.cta-inner { position: relative; z-index: 2; min-height: 250px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-inner h2 { max-width: 760px; margin: 0; font-family: "Barlow Condensed", Arial, sans-serif; font-size: clamp(2.4rem, 5vw, 4.7rem); line-height: .95; text-transform: uppercase; }
.page-hero { padding: 112px 0 76px; background: var(--ink); color: white; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -6%; top: -80%; width: 46%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.08); transform: rotate(35deg); }
.page-hero .eyebrow { color: #f06b62; }
.page-hero h1 { margin: 0; max-width: 980px; font-family: "Barlow Condensed", Arial, sans-serif; font-size: clamp(4rem, 9vw, 7.8rem); line-height: .86; text-transform: uppercase; }
.page-hero p { max-width: 720px; margin: 24px 0 0; color: #c4c9cc; font-size: 1.08rem; }
.about-feature { display: grid; grid-template-columns: 1.05fr .95fr; gap: 58px; align-items: center; }
.about-feature img { width: 100%; min-height: 500px; object-fit: cover; }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.promise { padding: 30px; border-top: 4px solid var(--red); background: white; box-shadow: 0 12px 30px rgba(0,0,0,.06); }
.promise h3 { margin: 0 0 10px; font-family: "Barlow Condensed", Arial, sans-serif; font-size: 1.7rem; text-transform: uppercase; }
.promise p { margin: 0; color: #5b6265; }
.product-row { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; padding: 54px 0; border-bottom: 1px solid #d8dcde; }
.product-row:nth-child(even) .product-image { order: 2; }
.product-image { height: 410px; overflow: hidden; background: #ddd; }
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-detail h2 { margin: 0; font-family: "Barlow Condensed", Arial, sans-serif; font-size: clamp(2.8rem, 5vw, 4.6rem); line-height: .93; text-transform: uppercase; }
.product-detail p { max-width: 620px; color: #555d61; }
.downloads { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 23px; }
.download-link { display: inline-flex; align-items: center; min-height: 44px; padding: 0 15px; border: 1px solid #b9bec0; text-decoration: none; font-weight: 800; font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; }
.download-link:hover { border-color: var(--red); color: var(--red); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
.gallery-item { aspect-ratio: 1 / 1; overflow: hidden; background: #222; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.02); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.contact-photo { height: 420px; margin-bottom: 26px; }
.contact-photo img { width: 100%; height: 100%; object-fit: cover; }
.form-card { padding: 38px; background: var(--paper); border-top: 5px solid var(--red); }
.form-card h2 { margin: 0 0 8px; font-family: "Barlow Condensed", Arial, sans-serif; font-size: 2.5rem; text-transform: uppercase; }
.form-note { margin: 0 0 28px; color: #61686c; font-size: .9rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field.full { grid-column: 1 / -1; }
label { display: block; margin-bottom: 6px; font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
input, textarea, select { width: 100%; min-height: 48px; padding: 12px 13px; border: 1px solid #c6cacc; background: white; border-radius: 0; font: inherit; }
textarea { min-height: 145px; resize: vertical; }
.form-status { display: none; margin-top: 16px; padding: 12px 14px; background: #fff3f2; color: #7e231e; border-left: 3px solid var(--red); }
.site-footer { background: #101315; color: white; }
.footer-top { padding: 66px 0 44px; display: grid; grid-template-columns: 1.4fr .8fr 1fr 1fr 1fr; gap: 36px; align-items: start; }
.footer-brand img { display:block; width: 150px; height:auto; max-height:110px; object-fit:contain; object-position:left center; }
.footer-brand p { max-width: 390px; color: #aeb4b7; }
.footer-col h3 { margin: 0 0 16px; font-family: "Barlow Condensed", Arial, sans-serif; text-transform: uppercase; letter-spacing: .04em; }
.footer-col a { display: block; margin: 8px 0; color: #c6cbce; text-decoration: none; }
.footer-col a:hover { color: white; }
.footer-col span { display: block; color: #c6cbce; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; color: #8f9699; font-size: .8rem; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 980px) {
  .header-inner { height: 74px; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .site-nav { display: none; position: absolute; left: 0; right: 0; top: 74px; margin: 0; padding: 18px 20px 24px; background: #111416; flex-direction: column; align-items: stretch; gap: 0; border-top: 1px solid rgba(255,255,255,.08); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 4px; }
  .site-nav .nav-cta { margin-top: 8px; text-align: center; }
  .site-nav .nav-call { display:flex; align-items:center; justify-content:center; }
  .hero { min-height: 650px; }
  .intro-grid, .about-feature, .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .intro-media { min-height: 450px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-grid { grid-template-columns: 1fr; }
  .product-row { grid-template-columns: 1fr; }
  .product-row:nth-child(even) .product-image { order: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .brand img { width: 108px; }
  .hero { min-height: 720px; }
  .hero-content { padding: 78px 0 54px; }
  .hero h1 { font-size: clamp(4rem, 20vw, 6.2rem); }
  .hero::after { background: linear-gradient(90deg, rgba(11,13,14,.9), rgba(11,13,14,.48)), linear-gradient(0deg, rgba(11,13,14,.72), transparent 48%); }
  .hero-stats .container { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); padding: 17px 0; }
  .stat + .stat { padding-left: 0; }
  .stat:last-child { border-bottom: 0; }
  .section { padding: 78px 0; }
  .product-grid, .location-grid, .gallery-grid { grid-template-columns: 1fr; }
  .project-mosaic { grid-template-columns: 1fr; grid-template-rows: none; }
  .project-shot, .project-shot:first-child { grid-row: auto; min-height: 360px; }
  .project-strip { grid-template-columns: 1fr; }
  .cta-inner { min-height: 300px; align-items: flex-start; justify-content: center; flex-direction: column; }
  .page-hero { padding: 82px 0 58px; }
  .page-hero h1 { font-size: clamp(3.6rem, 18vw, 6rem); }
  .product-image { height: 330px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form-card { padding: 26px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

.footer-email:hover { color:#f06b62; }
.hp-field { position:absolute !important; left:-10000px !important; width:1px !important; height:1px !important; overflow:hidden !important; }
.quote-help { margin: 0 0 28px; color:#61686c; font-size:.92rem; }
.quote-help a { color:var(--red); font-weight:800; text-decoration:none; }
@media (max-width: 720px) { .product-button { min-height:220px; grid-template-rows:24px 84px 28px; padding:28px 24px; } }

/* V7 mobile viewport hardening */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

main,
.site-footer,
.section,
.page-hero,
.hero,
.cta-band {
  max-width: 100%;
  overflow-x: clip;
}

.container,
.intro-grid > *,
.about-feature > *,
.contact-grid > *,
.product-row > *,
.project-strip > *,
.project-mosaic > *,
.footer-top > *,
.values > *,
.promise-grid > *,
.product-grid > *,
.gallery-grid > * {
  min-width: 0;
}

img,
video {
  max-width: 100%;
}

@media (max-width: 720px) {
  .container {
    width: calc(100% - 32px);
    max-width: 100%;
  }

  /* Keep the decorative corner inside the phone viewport. */
  .intro-media {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .intro-media::before {
    top: -10px;
    left: 0;
    width: 42%;
    height: 36%;
  }
  .intro-media img {
    max-width: 100%;
  }

  /* These three cards caused the horizontal page overflow on small screens. */
  .values {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .value {
    width: 100%;
    min-width: 0;
    padding: 22px;
  }
  .value strong,
  .value span {
    overflow-wrap: anywhere;
  }

  /* All stacked mobile grids must stay inside their parent track. */
  .intro-grid,
  .about-feature,
  .contact-grid,
  .product-row,
  .project-mosaic,
  .project-strip,
  .product-grid,
  .gallery-grid,
  .location-grid,
  .form-grid,
  .footer-top {
    width: 100%;
    max-width: 100%;
  }

  .about-feature img,
  .contact-photo img,
  .product-image img,
  .project-shot img,
  .gallery-item img {
    width: 100%;
    max-width: 100%;
  }

  /* Slightly smaller mobile headlines avoid awkward edge collisions. */
  .section-title {
    max-width: 100%;
    font-size: clamp(2.55rem, 13vw, 3.8rem);
    overflow-wrap: normal;
  }
  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(3.35rem, 16vw, 5.25rem);
  }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.55rem, 17vw, 5.35rem);
  }

  /* Mobile-only crop: preserve the desktop video, center-crop landscape footage on phones. */
  .hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    transform: none;
  }

  .hero-media img {
    object-position: 50% 50%;
  }

  .hero-actions .btn {
    max-width: 100%;
  }

  .project-shot,
  .project-shot:first-child {
    width: 100%;
  }

  .footer-brand img {
    width: 132px;
    max-width: 100%;
    height: auto;
  }
}


/* V8 mobile navigation fix */
.site-header {
  overflow: visible;
}

@media (max-width: 980px) {
  .site-header {
    overflow: visible !important;
  }
  .header-inner {
    position: relative;
  }
  .menu-toggle {
    position: relative;
    z-index: 1003;
    cursor: pointer;
    touch-action: manipulation;
  }
  .site-nav {
    position: fixed;
    z-index: 1002;
    top: 74px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    max-height: calc(100dvh - 74px);
    overflow-y: auto;
    background: #111416;
    box-shadow: 0 18px 35px rgba(0,0,0,.28);
  }
  .site-nav.open {
    display: flex;
  }
  body.menu-open {
    overflow: hidden;
  }
}


/* September 2026 Launch Final */
.page-hero h1 .accent-word { color:#ef473d; }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; gap:20px; }
.footer-bottom a { color:#aeb4b7; text-decoration:none; }
.footer-bottom a:hover { color:#fff; }
.location-detail-link { margin-top:12px !important; color:#f06b62 !important; font-size:.78rem; font-weight:800; letter-spacing:.06em; text-transform:uppercase; }
.legal-copy { max-width:900px; }
.legal-copy h3 { margin:34px 0 10px; font-family:"Barlow Condensed",Arial,sans-serif; font-size:1.8rem; line-height:1; text-transform:uppercase; }
.legal-copy p { margin:0 0 18px; color:#50575b; }
.legal-copy a { color:var(--red); font-weight:700; }
@media (max-width:720px) { .footer-bottom { align-items:flex-start; flex-direction:column; gap:8px; } }


/* September 2026 contact/footer alignment refinements */
.location .location-detail-link {
  display: block;
  width: fit-content;
  margin-top: 12px !important;
}
@media (min-width: 1101px) {
  .footer-location {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-location > span {
    min-height: 86px;
  }
  .footer-location > a[href^="tel:"] {
    margin-top: 8px;
  }
  .footer-location > .location-detail-link {
    margin-top: 12px !important;
  }
}
