/* ==========================================================================
   Longhorn Roofing — styles.css (v3)
   Body/subheadings: Manrope. Navigation: Montserrat.
   H1 display face: Podium Sharp 1.9 (licensed, embedded below).
   CTA/button face: Nexa Bold (licensed, embedded below).
   ========================================================================== */

/* Manrope + Montserrat are loaded via <link> tags in each HTML <head>
   instead of @import here — @import blocks on this stylesheet being
   fully fetched and parsed before the browser even discovers the
   Google Fonts request, adding a serial round-trip. See the <head>
   of index.html etc. for the preconnect + stylesheet link. */

@font-face {
  font-family: 'Podium Sharp';
  src: url('assets/fonts/podium-sharp.woff') format('woff'),
       url('assets/fonts/podium-sharp.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Carmen Sans';
  src: url('assets/fonts/carmen-sans-regular.woff') format('woff'),
       url('assets/fonts/carmen-sans-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nexa Bold';
  src: url('assets/fonts/nexa-bold.woff') format('woff'),
       url('assets/fonts/nexa-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('assets/fonts/gotham-light.woff') format('woff'),
       url('assets/fonts/gotham-light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('assets/fonts/gotham-medium.woff') format('woff'),
       url('assets/fonts/gotham-medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('assets/fonts/gotham-book.woff') format('woff'),
       url('assets/fonts/gotham-book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('assets/fonts/gotham-bold.woff') format('woff'),
       url('assets/fonts/gotham-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Gotham SemiBold — file not yet provided. Drop gotham-semibold.woff/.ttf into
   assets/fonts/ and this will pick it up automatically (falls back to Bold until then). */
@font-face {
  font-family: 'Gotham SemiBold';
  src: url('assets/fonts/gotham-semibold.woff') format('woff'),
       url('assets/fonts/gotham-semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-orange: #ff7300;
  --color-orange-dark: #e56600;
  --color-black: #000000;
  --color-near-black: #0e0e0e;
  --color-charcoal: #282828;
  --color-charcoal-2: #2b2b2b;
  --color-gray-100: #f1f1f1;
  --color-gray-200: #e6e6e6;
  --color-gray-500: #7a7a7a;
  --color-white: #ffffff;

  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-cta: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-btn: 'Nexa Bold', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-gotham: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-gotham-semibold: 'Gotham SemiBold', 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-carmen: 'Carmen Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Podium Sharp', 'Anton', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1240px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --header-h: 136px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 180ms;
  --dur-med: 420ms;
  --dur-slow: 700ms;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-near-black);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, p { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.reveal {
  opacity: 1;
  transform: none;
}
html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
html.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

.ph {
  background: repeating-linear-gradient(135deg, #e2e2e2, #e2e2e2 10px, #ececec 10px, #ececec 20px);
  display: flex; align-items: center; justify-content: center;
  color: #9a9a9a; font-size: 11px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; text-align: center; overflow: hidden; position: relative;
}
.ph[data-placeholder]::before { content: attr(data-placeholder); padding: 10px; }

/* ---------------------------- Buttons (real skew transform — not clip-path, so borders/glow render correctly) ---------------------------- */
.btn {
  display: inline-block;
  transform: skewX(-16deg);
  transition: box-shadow var(--dur-med) var(--ease), background var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease), filter var(--dur-med) var(--ease);
}
.btn span {
  display: block;
  transform: skewX(16deg);
  font-family: var(--font-btn);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 8px 34px;
}
.btn-primary {
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: 0 10px 22px -12px rgba(0,0,0,.7);
}
.btn-primary:hover {
  background: var(--color-orange-dark);
  box-shadow: 0 0 22px 3px rgba(255,115,0,.65), 0 14px 26px -10px rgba(0,0,0,.75);
}
.btn-primary:active { filter: brightness(.92); }

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 3px solid var(--color-white);
  box-shadow: 0 10px 22px -14px rgba(0,0,0,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 20px 2px rgba(255,255,255,.45), 0 14px 26px -10px rgba(0,0,0,.7);
}
.btn-outline.dark { color: var(--color-near-black); border-color: var(--color-near-black); }
.btn-outline.dark:hover { background: rgba(0,0,0,.06); box-shadow: 0 0 18px 2px rgba(0,0,0,.2); }
.btn-small span { padding: 5px 26px; font-size: 12px; }

/* ---------------------------- Top bar ---------------------------- */
.topbar { background: var(--color-black); color: #fff; font-size: 13.5px; font-family: var(--font-cta); font-weight: 500; }
.topbar .container { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 56px; gap: 20px; }
.topbar-left { justify-self: start; display: flex; align-items: center; gap: 8px; margin-left: 74px; }
.topbar-center { justify-self: center; display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.topbar-right { justify-self: end; display: flex; align-items: center; gap: 20px; }
.topbar-item { display: flex; align-items: center; gap: 8px; opacity: .95; transition: opacity var(--dur-fast), color var(--dur-fast); }
.topbar-item:hover { opacity: 1; color: var(--color-orange); }
.icon-plain { display: inline-flex; align-items: center; justify-content: center; transition: transform var(--dur-fast); }
.icon-plain img { width: 18px; height: 18px; }
.topbar-item:hover .icon-plain { transform: scale(1.12); }
.topbar-phone { font-weight: 700; }
.topbar-phone img { width: 16px; height: 16px; }
.topbar .btn span { padding: 8px 24px; font-size: 11.5px; }
.pin-img { width: 14px; height: 19px; }

/* ---------------------------- Header ---------------------------- */
header.site-header {
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  margin-bottom: calc(-1 * var(--header-h));
  transition: background var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
header.site-header.is-scrolled { background: var(--color-black); box-shadow: 0 12px 30px -18px rgba(0,0,0,.7); }
header.site-header.is-scrolled .nav-row { min-height: 78px; padding-top: 10px; }
header.site-header.is-scrolled .logo img { height: 60px; }
header.site-header.is-scrolled .main-nav { padding-top: 20px; }
.nav-row { display: flex; align-items: flex-start; justify-content: space-between; min-height: var(--header-h); gap: 24px; padding-top: 18px; transition: min-height var(--dur-med) var(--ease), padding-top var(--dur-med) var(--ease); }
.logo { display: flex; align-items: center; }
.logo img { height: 100px; width: auto; transition: transform var(--dur-med) var(--ease), height var(--dur-med) var(--ease); }
.logo:hover img { transform: scale(1.04); }

.main-nav { padding-top: 30px; transition: padding-top var(--dur-med) var(--ease); }

.main-nav > ul { display: flex; gap: 34px; align-items: center; }
.main-nav a {
  color: #fff;
  font-family: var(--font-cta);
  font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 8px 0; transition: color var(--dur-fast);
}
.main-nav a:hover, .main-nav a.active { color: var(--color-orange); }
.has-dropdown { display: flex; align-items: center; gap: 7px; }
.caret { width: 9px; height: auto; transition: transform var(--dur-fast); }
.has-dropdown:hover .caret { transform: rotate(180deg); }

.dropdown-wrap { position: relative; }
.dropdown {
  display: block;
  position: absolute; top: 100%; left: 0; transform: translateY(8px);
  background: rgba(0,0,0,.5);
  min-width: 230px;
  padding: 8px 0;
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}
.dropdown-wrap:hover .dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown li { display: block; margin: 0 16px; }
.dropdown li:not(:last-child) { border-bottom: 2px solid rgba(255,115,0,.6); }
.dropdown a {
  display: block; padding: 9px 2px; font-size: 11.5px; font-weight: 700; letter-spacing: .04em;
  color: rgba(255,255,255,.85);
}
.dropdown a:hover { color: var(--color-orange); }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 30px; height: 22px; }
.nav-toggle span { height: 2px; width: 100%; background: #fff; border-radius: 2px; transition: transform var(--dur-med) var(--ease), opacity var(--dur-med) var(--ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ---------------------------- Hero ---------------------------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero-bg-photo {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.45) 48%, rgba(0,0,0,.08) 100%),
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 22%),
    url('assets/hero_image.jpg');
  background-size: cover;
  background-position: center;
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; padding: 206px 0 60px; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.8rem, 9vw, 6.4rem);
  line-height: .94;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin-bottom: 10px;
}
.hero h1 span { display: block; }
.hero h1 span:not(.accent) { font-size: calc(1em + 14px); }
.hero h1 .accent { color: var(--color-orange); font-size: 0.82em; }
.hero p.lead {
  font-family: var(--font-body); font-size: 17px; font-weight: 500; line-height: 1.4; letter-spacing: .01em;
  text-transform: uppercase; color: #fff; max-width: 540px; margin: 6px 0 22px;
}
.hero-ctas { display: flex; justify-content: flex-start; max-width: 540px; gap: 20px; flex-wrap: wrap; }
.hero-ctas .btn { transform: skewX(-16deg) scale(.90); transform-origin: left center; }
.hero-ctas .btn span { padding: 8px 26px; font-size: 12.5px; }
.hero-ctas .btn-outline { border-width: 2px; }

/* Trust banner (orange, 3-up, full-bleed, white outline icons) */
.trust-banner { position: relative; z-index: 1; background: var(--color-orange); color: #fff; }
.trust-banner .container { max-width: none; padding: 0; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { position: relative; display: flex; align-items: center; justify-content: center; gap: 16px; padding: 30px 40px; }
.trust-item::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 75%;
  background: rgba(255,255,255,1);
}
.trust-item:first-child::before { display: none; }
.trust-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.trust-icon img { width: 100%; height: 100%; object-fit: contain; }
.trust-item:hover .trust-icon { animation: trust-icon-bounce 1s ease-out infinite; }
@keyframes trust-icon-bounce {
  0%   { transform: translateY(0); }
  18%  { transform: translateY(-7px); }
  36%  { transform: translateY(0); }
  50%  { transform: translateY(-3.5px); }
  64%  { transform: translateY(0); }
  75%  { transform: translateY(-1.5px); }
  86%  { transform: translateY(0); }
  100% { transform: translateY(0); }
}
.trust-item h4 { font-family: var(--font-cta); font-size: 14.5px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; margin-bottom: 4px; }
.trust-item p { font-family: var(--font-cta); font-weight: 500; font-size: 12.5px; letter-spacing: .02em; text-transform: uppercase; color: rgba(255,255,255,.9); line-height: 1.4; }

/* ---------------------------- Section shells ---------------------------- */
.section { padding: 100px 0; }
.section-tight { padding: 60px 0; }
.section-dark { background: var(--color-near-black); color: #fff; }
.section-gray { background: var(--color-gray-100); }
.eyebrow { color: var(--color-orange); font-weight: 800; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 12px; display: block; }
#about .eyebrow { margin-bottom: 1px; }
#about .section-title + .body-copy { margin-top: 40px; margin-bottom: 40px; }
#about .btn-primary { margin-top: 20px; }
.section-title {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 300;
  line-height: 1.3;
  color: #444;
}
.section-title strong { font-weight: 800; color: var(--color-near-black); }
.section-title .accent { color: var(--color-orange); }
.section-title.solid { font-weight: 800; color: var(--color-near-black); }
.section-head { text-align: center; margin-bottom: 20px; }
.section-head .section-title { margin: 0 auto; }
.hr-thin { border: none; border-top: 1px solid var(--color-gray-200); max-width: 140px; margin: 28px auto 56px; }

/* ---------------------------- Services heading ---------------------------- */
.services-eyebrow {
  font-family: var(--font-gotham);
  font-weight: 300;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  color: #555;
  margin: 0;
}
.services-heading {
  font-family: var(--font-gotham);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  color: var(--color-near-black);
  margin: 6px 0 0;
}
.services-heading strong { font-weight: 500; }
.lens-divider { display: block; width: 720px; max-width: 94%; height: 2px; margin: 30px auto 50px; }
.lens-divider-orange { height: 3px; }

/* ---------------------------- Services cards ---------------------------- */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px 24px; }
.card {
  position: relative;
  border: 1px solid var(--color-gray-200);
  overflow: hidden;
  display: block;
}

.card-photo {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform var(--dur-slow) var(--ease);
}
.card-photo-1 { background-image: url('assets/card_commercial_residential.jpg'); }
.card-photo-2 { background-image: url('assets/card_metal_roofing.jpg'); }
.card-photo-3 { background-image: url('assets/card_seamless_gutters.jpg'); background-position: 72% center; }
.card-photo-4 { background-image: url('assets/card_metal_carports.jpg'); }
.card-photo-5 { background-image: url('assets/card_sprayfoam.jpg'); }
.card-photo-6 { background-image: url('assets/card_fencing.jpg'); }
.card-photo-7 { background-image: url('assets/card_remodeling.jpg'); }
.card-photo-8 { background-image: url('assets/card_home_improvement.jpg'); }
.card-media-wrap { position: relative; }
.card-media { aspect-ratio: 4/4.6; overflow: hidden; }
.card:hover .card-media .card-photo { transform: scale(1.06); }

.card-icon-wrap {
  position: absolute; left: 50%; bottom: -53px; transform: translateX(-50%);
  z-index: 2;
}
.hexagon {
  width: 92px; height: 106px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--color-orange);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  transition: transform var(--dur-med) var(--ease);
}
.card:hover .hexagon { transform: translateX(-50%) scale(1.1); }
.hexagon.on-white { background: #fff; color: var(--color-orange); }
.icon-img {
  width: 64px; height: 64px;
  object-fit: contain;
}
/* Per-icon size tuning */
.icon-img[src*="commercial_residential"] { width: 77px; height: 77px; }
.icon-img[src*="metal_roofing"] { width: 77px; height: 77px; }
.icon-img[src*="metal_carports"] { width: 77px; height: 77px; }
.icon-img[src*="seamless_gutters"] { width: 50px; height: 50px; }
.icon-img[src*="sprayfoam"] { width: 58px; height: 58px; }
.icon-img[src*="remodeling"] { width: 61px; height: 61px; transform: translateY(-4px); }
.icon-img[src*="home_improvement"] { width: 61px; height: 61px; transform: translateY(-4px); }

.card-body { padding: 70px 20px 26px; text-align: center; }
.card h3 { font-family: var(--font-body); font-weight: 700; font-size: 17px; line-height: 1.35; letter-spacing: 0; margin-bottom: 10px; color: var(--color-near-black); }
.card p { font-family: var(--font-body); font-weight: 500; font-size: 13.5px; color: var(--color-gray-500); line-height: 1.6; }

/* Hover takeover layer — full card becomes the orange-tinted photo with centered white content */
.card-hover-layer {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 28px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-med) var(--ease);
  overflow: hidden;
}
.card:hover .card-hover-layer { opacity: 1; pointer-events: auto; }
.card-hover-layer .hover-photo {
  position: absolute; inset: 0;
  background-color: var(--color-orange);
  background-blend-mode: multiply;
  transform: none;
}
.hover-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.hover-content .hexagon { position: static; transform: none; margin-bottom: 18px; }
.card:hover .hover-content .hexagon { transform: none; }
.hover-content h3 { color: #fff; margin-bottom: 8px; }
.hover-content p { color: rgba(255,255,255,.9); }
/* Page-fold corner indicator, revealed on hover */
.card-fold {
  position: absolute; right: 0; bottom: 0; z-index: 2;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 46px 46px;
  border-color: transparent transparent #282828 transparent;
  box-shadow: -2px -2px 6px -2px rgba(0,0,0,.3);
  opacity: 0;
  transform: translate(10px, 10px);
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}
.card:hover .card-hover-layer .card-fold { opacity: 1; transform: translate(0, 0); }

.card-hover-layer .card-arrow {
  position: absolute; right: 12px; bottom: 16px; z-index: 3;
  width: 38px; height: 10px;
  opacity: 0; transform: translateX(-8px);
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}
.card-hover-layer .card-arrow img { width: 100%; height: 100%; display: block; }
.card:hover .card-hover-layer .card-arrow { opacity: 1; transform: translateX(0); }

/* ---------------------------- Logos ticker ---------------------------- */
.logos-strip {
  background: #282828;
  height: 220px;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 42s linear infinite;
}
.ticker-set { display: flex; align-items: center; flex-shrink: 0; }
.ticker-item {
  display: flex; align-items: center; justify-content: center;
  height: 220px;
  padding: 0 64px;
  flex-shrink: 0;
}
.ticker-item img { max-height: 110px; max-width: 280px; width: auto; height: auto; object-fit: contain; }
.ticker-divider { width: 1.8px; height: 62%; flex-shrink: 0; }
.stats-grid .ticker-divider { height: 136px; align-self: center; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ---------------------------- About / story split ---------------------------- */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
#story .split-grid { align-items: flex-start; }
.split-media { aspect-ratio: 4/3; position: relative; }
.about-media-photo {
  background-image: url('assets/card_metal_roofing.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.about-media-photo img, .story-media-photo img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.story-media-photo {
  background-image: url('assets/card_remodeling.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.split-media .logo-watermark {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .02em;
  display: flex; align-items: center; gap: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.split-media .logo-watermark .accent { color: var(--color-orange); font-style: italic; }
.about-copy p.body-copy { font-size: 15px; line-height: 1.6; color: #444; margin: 10px 0 12px; }
#about .body-copy { line-height: 1.48; }

/* ---------------------------- Built on values (dark banner) ---------------------------- */
.values-banner { background: #141414; color: #fff; text-align: center; }
.values-banner .values-heading {
  font-family: var(--font-gotham); font-weight: 500;
  text-transform: uppercase; color: #fff;
}
.values-banner .values-heading .accent { color: var(--color-orange); font-weight: 500; }
.values-divider { max-width: 1400px; width: 92%; border-top-width: 1px; border-color: #fff; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.value-item { text-align: center; padding: 0 20px; border-left: 1px solid #fff; }
.value-item:first-child { border-left: none; }
.value-icon {
  width: 64px; height: 64px; margin: 0 auto 18px;
  display: block;
}
.value-item:hover .value-icon { animation: icon-glow-pulse 1.3s ease-in-out infinite; }
@keyframes icon-glow-pulse {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(255,115,0,0)); }
  50% { filter: drop-shadow(0 0 12px rgba(255,115,0,.9)); }
}
.value-item h4 {
  font-family: var(--font-gotham); font-weight: 500;
  font-size: 14px; letter-spacing: .03em; text-transform: uppercase; margin-bottom: 8px;
}
.value-item p {
  font-family: var(--font-gotham); font-weight: 300;
  font-size: 12.5px; letter-spacing: .02em; text-transform: uppercase;
  color: #fff; line-height: 1.55;
}

/* ---------------------------- Mission / vision (orange banner) ---------------------------- */
.mv-banner { position: relative; background: var(--color-orange); color: #fff; overflow: hidden; }
.mv-banner .section-tight { padding: 32px 0; }
.mv-watermark {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  height: 100%; width: auto;
  opacity: .35; pointer-events: none; user-select: none;
}
.mv-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto 1fr; gap: 28px; align-items: center; }
.mv-left { display: flex; align-items: center; gap: 34px; }
.mv-badge {
  width: 86px; height: 86px;
  display: block; flex-shrink: 0;
  animation: mv-badge-spin 12s linear infinite;
}
@keyframes mv-badge-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
.mv-col-right { padding-left: 20px; }
.mv-col h4 {
  font-family: var(--font-gotham); font-weight: 500;
  font-size: 15px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px;
}
.mv-col p {
  font-family: var(--font-gotham); font-weight: 300;
  font-size: 11px; letter-spacing: .02em; line-height: 1.5;
  text-transform: uppercase;
  color: rgba(255,255,255,.92); max-width: 460px;
}
.mv-divider { width: 1px; height: 78px; align-self: center; background: #fff; justify-self: center; margin-right: 25px; }

/* ---------------------------- Why choose Longhorn Roofing ---------------------------- */
.why-choose { padding: 46px 0; }
.why-grid { display: grid; grid-template-columns: .8fr 1.5fr; gap: 60px; align-items: center; }
.why-eyebrow {
  display: block; color: var(--color-orange);
  font-family: var(--font-body); font-weight: 800;
  font-size: 14px; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 26px;
}
.checklist { display: flex; flex-direction: column; gap: 15px; }
.checklist li {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 12px;
  color: var(--color-near-black);
}
.checklist img { width: 19px; height: 19px; flex-shrink: 0; }

.why-card {
  position: relative;
  background: #f0f1f0;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1.7fr 1.1fr;
  align-items: stretch;
  overflow: hidden;
  min-height: 230px;
}
.why-card-content { padding: 36px 34px 36px 22px; display: flex; align-items: center; gap: 26px; }
.why-phone-icon { display: inline-flex; flex-shrink: 0; transform: translateY(-10px); }
.why-phone-icon img { width: 70px; height: 70px; animation: phone-buzz 2s ease-in-out infinite; }
@keyframes phone-buzz {
  0%, 30%, 100% { transform: rotate(0deg); }
  3% { transform: rotate(-12deg); }
  6% { transform: rotate(10deg); }
  9% { transform: rotate(-9deg); }
  12% { transform: rotate(7deg); }
  15% { transform: rotate(-5deg); }
  18% { transform: rotate(4deg); }
  21% { transform: rotate(-3deg); }
  24% { transform: rotate(2deg); }
  27% { transform: rotate(-1deg); }
}
.why-card-text { display: flex; flex-direction: column; align-items: flex-start; }
.why-card-text h3 {
  font-family: var(--font-gotham); font-weight: 500;
  font-size: 1.063rem; line-height: 1.3; letter-spacing: -.02em;
  text-transform: uppercase; color: var(--color-near-black);
  margin-bottom: 10px;
  white-space: nowrap;
}
.why-card-text p {
  font-family: var(--font-body); font-weight: 600;
  font-size: 13.5px; line-height: 1.5; color: #4a4a4a;
  margin-bottom: 20px;
}
.why-card-text .btn span { padding: 9px 20px; font-size: 11.5px; }
.why-card-media {
  background-image: url('assets/why_choose_house.jpg');
  background-size: cover;
  background-position: 5% center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.why-card-media img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------------------------- Tagline CTA bar (black) ---------------------------- */
.tagline-bar { position: relative; background: var(--color-near-black); color: #fff; overflow: hidden; }
.tagline-bar .container {
  display: flex; align-items: center; justify-content: flex-start; gap: 4px; flex-wrap: wrap;
  padding: 18px 220px 18px 24px;
}
.tagline-cta { flex-shrink: 0; }
.tagline-copy { flex: 1; min-width: 0; }
.tagline-bar h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); line-height: 1; text-transform: uppercase; white-space: nowrap; }
.tagline-bar h2 .accent { color: var(--color-orange); }
.tagline-bar p { color: #fff; opacity: 1; font-size: 9.5px; margin-top: 3px; text-transform: uppercase; letter-spacing: .03em; }
.tagline-cta span { padding: 7px 22px; font-size: 11.5px; }
.tagline-watermark {
  position: absolute; right: -10px; top: 50%; transform: translateY(-50%);
  height: 100%; width: auto;
  opacity: .3; pointer-events: none; user-select: none;
  z-index: 0;
}

/* ---------------------------- Owens Corning feature ---------------------------- */
.feature-banner { position: relative; color: #fff; overflow: hidden; padding: 90px 0; }
.feature-photo { position: absolute; inset: 0; background-size: cover; background-position: center; }
.feature-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.15) 45%, rgba(0,0,0,.05) 100%);
}
.feature-oc-logo {
  position: absolute; top: 90px; right: 40px; z-index: 2;
  width: 420px; max-width: 38vw; height: auto;
}
.feature-content { position: relative; z-index: 1; }

.feature-panel {
  position: relative;
  background: rgba(30, 31, 35, 0.85);
  max-width: 600px;
  padding: 54px 44px 22px 44px;
}
.feature-panel::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 48px 48px 0;
  border-color: transparent var(--color-orange) transparent transparent;
}
.feature-panel h3 {
  font-family: var(--font-gotham); font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem); line-height: 1.3;
  margin-bottom: 18px; color: #fff;
}
.feature-panel p {
  font-family: var(--font-carmen); font-weight: 400;
  font-size: 14.5px; line-height: 1.75; color: rgba(255,255,255,.82);
}

.feature-note {
  display: flex; align-items: flex-start;
  margin: 53px 0 0;
  max-width: 560px;
}
.feature-note-icon {
  flex-shrink: 0; width: 88px; height: 84px;
  margin-top: 14px;
  background: var(--color-orange);
  transform: skewX(-16deg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 20px -8px rgba(0,0,0,.5);
  position: relative; z-index: 2;
}
.feature-note-icon img {
  width: 51px; height: 51px;
  transform: skewX(16deg) translateY(-4px);
  transition: transform var(--dur-med) var(--ease);
}
.feature-note-icon:hover img { transform: skewX(16deg) translateY(-4px) rotate(-14deg); }
.feature-note-text {
  flex: 1;
  background: radial-gradient(circle at 30% 30%, #414141, #262626);
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
  padding: 20px 34px 10px 67px;
  margin-left: -43px;
  display: flex; align-items: center;
  position: relative; z-index: 1;
}
.feature-note-text p {
  font-family: var(--font-carmen); font-weight: 400;
  font-size: 12.5px; line-height: 1.55; color: #fff; margin: 0;
}

/* ---------------------------- Longhorn radial diagram ---------------------------- */
.longhorn-section {
  background: var(--color-black);
  color: #fff;
  position: relative;
  clip-path: polygon(0% 12%, 66% 0%, 100% 15%, 100% 100%, 0% 100%);
  margin-top: -95px;
  padding-top: 130px;
}
.longhorn-heading {
  font-family: var(--font-gotham); font-weight: 400;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  letter-spacing: -.02em;
  color: #fff;
}
.longhorn-heading strong { font-weight: 700; color: #fff; }
.longhorn-subheading {
  font-family: var(--font-gotham); font-weight: 400;
  font-size: 1.5rem; letter-spacing: .04em; color: #fff;
  margin-top: 0;
}
.lens-divider-white { margin-top: 16px; }

.longhorn-diagram { position: relative; max-width: 1000px; min-height: 460px; margin: 16px auto 0; }
.longhorn-logo-img { position: absolute; left: 50%; top: 38%; transform: translate(-50%, -50%); width: 75%; height: auto; }

.trait-node { position: absolute; width: 155px; text-align: center; transform: scale(.85); }
.trait-hex {
  position: relative; z-index: 2;
  width: 48px; height: 55px; margin: 0 auto 14px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--color-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  animation: hex-heartbeat 2.4s ease-in-out infinite;
}
.trait-hex-text {
  font-family: var(--font-gotham); font-weight: 700;
  font-size: 9.5px; line-height: 1.15; letter-spacing: .01em;
  color: #fff; text-transform: uppercase; text-align: center; }
.trait-icon-img { width: 31px; height: auto; display: block; }
.node-r3 .trait-icon-img { width: 24px; }
.node-l3 .trait-icon-img { width: 35.6px; }
.node-l2 .trait-icon-img { width: 32.6px; }
.node-r4 .trait-icon-img { width: 29.5px; margin-top: -1px; }
.node-r1 .trait-icon-img { margin-top: -2px; }
@keyframes hex-heartbeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.06); }
  28% { transform: scale(1); }
  42% { transform: scale(1.06); }
  56% { transform: scale(1); }
}
.trait-node h5 { font-family: var(--font-gotham); font-weight: 700; font-size: 12.8px; letter-spacing: .02em; margin-bottom: 4px; margin-top: -1px; text-transform: uppercase; }
.trait-node p { font-family: var(--font-body); font-weight: 500; font-size: 10px; color: #fff; line-height: 1.4; }
.node-r1 h5, .node-l1 h5 {
  white-space: nowrap;
  position: absolute; top: 67.7px; left: 50%; transform: translateX(-50%);
  width: max-content;
}
.node-r1 p, .node-l1 p { margin-top: 30px; }

/* Connector: small vertical tick at the hex, then line running behind/into the radar circle */
.trait-connector { position: absolute; top: 20px; display: flex; align-items: center; z-index: 1; }
.conn-right { left: 70%; flex-direction: row; }
.conn-left { right: 70%; flex-direction: row-reverse; }
.conn-up { bottom: 100%; left: 50%; top: auto; flex-direction: column-reverse; transform: translateX(-50%); height: 100px; }
.conn-tick { flex-shrink: 0; background: rgba(255,255,255); }
.conn-right .conn-tick, .conn-left .conn-tick { width: 1px; height: 12px; }
.conn-up .conn-tick { width: 8px; height: 1px; display: none; }
.conn-right .trait-line, .conn-left .trait-line { width: 90px; height: 1px; background: rgba(255,255,255); margin-right: -6px; }
.conn-left .trait-line { margin-right: 0; margin-left: -6px; width: 90px; }
.conn-up .trait-line { width: 1px; height: 40px; background: rgba(255,255,255); margin-bottom: 7px; margin-top: -4px; }

.trait-radar { position: relative; width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 2; }
.radar-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; position: relative; z-index: 1; }
.radar-ring {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.6);
  animation: radar-pulse 2.4s ease-out infinite;
}
@keyframes radar-pulse {
  0% { transform: scale(1); opacity: .7; }
  75% { transform: scale(3.6); opacity: 0; }
  100% { transform: scale(3.6); opacity: 0; }
}

/* Node positions — left column: uniform horizontal alignment, nudged in close to the logo, tighter vertical rhythm */
.node-l1 { top: 22%;  left: 10%;  text-align: center; }
.node-l2 { top: 45%;  left: 10%;  text-align: center; }
.node-l3 { top: 67%;  left: 16.5%;  text-align: center; }
.node-l4 { top: 84%;  left: 33%; text-align: center; }


/* Node positions — right column (mirrored) */
.node-r1 { top: 22%;  right: 10%;  text-align: center; }
.node-r2 { top: 45%;  right: 10%;  text-align: center; }
.node-r3 { top: 67%;  right: 16.5%;  text-align: center; }
.node-r4 { top: 84%;  right: 33%; text-align: center; }


/* Orange divider between the two bottom (mouth) nodes */
.longhorn-diagram::after {
  content: '';
  position: absolute; left: 50%; top: 88%;
  width: 1px; height: 47px;
  background: var(--color-orange);
  transform: translate(-50%, -8px);
}

.satisfaction-band {
  background: radial-gradient(circle at center, #3c3c3c 0%, #282828 100%);
  color: #fff; text-align: center; padding: 70px 0;
}
.satisfaction-band h3 {
  font-family: var(--font-gotham); font-weight: 500;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 1.4;
  max-width: 760px; margin: 0 auto 32px;
}
.satisfaction-band h3 strong { font-weight: 700; }

/* ---------------------------- Process (accordion list) ---------------------------- */
.process-list { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: repeat(4, auto); grid-auto-flow: column; gap: 0 60px; max-width: 980px; margin: 0 auto; }
.process-item { border-bottom: 1px solid var(--color-gray-200); padding: 22px 0; }
.process-item .proc-head { display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.process-item h4 { font-family: var(--font-body); font-size: 18px; font-weight: 700; }
.process-item .chev { display: inline-flex; transition: transform var(--dur-med) var(--ease); }
.process-item .chev img { width: 11px; height: auto; display: block; filter: brightness(0) saturate(100%); transition: filter var(--dur-med) var(--ease); }
.process-item.is-open .chev { transform: rotate(180deg); }
.process-item.is-open .chev img { filter: none; }
.process-body { max-height: 0; overflow: hidden; transition: max-height var(--dur-med) var(--ease); }
.process-body p { font-size: 13.5px; color: var(--color-gray-500); line-height: 1.6; padding-top: 12px; max-width: 420px; }

/* ---------------------------- Stats banner ---------------------------- */
.stats-banner { background: var(--color-orange); color: #fff; }
.stats-grid { display: flex; align-items: center; text-align: center; }
.stat-item { flex: 1; padding: 40px 20px; }
.stat-icon {
  width: 60px; height: 69px; margin: 0 auto 16px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: #2a2a2a;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.stat-icon img { width: 26px; height: auto; }
.stat-icon img[src*="stat_roofing_estimates"] { width: 29px; }
.stat-icon img[src*="stat_completed_projects"] { width: 34px; }
.stat-icon img[src*="stat_trained_professionals"] { width: 34px; }
.stat-icon img[src*="stat_satisfied_customers"] { width: 32px; }
.stat-num { font-family: var(--font-gotham-semibold); font-size: clamp(1.53rem, 2.55vw, 2.04rem); font-weight: 600; font-variant-numeric: tabular-nums; }
.stat-label { font-family: var(--font-gotham); font-weight: 500; font-size: 11px; text-transform: uppercase; letter-spacing: .03em; margin-top: 4px; }

/* ---------------------------- Testimonials ---------------------------- */
.stars { color: var(--color-orange); font-size: 18px; letter-spacing: 3px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.testimonial-card {
  background: #fff; border: 1px solid var(--color-gray-200);
  padding: 26px; position: relative; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med);
}
.testimonial-card::after {
  content: ''; position: absolute; left: 50%; bottom: -12px; transform: translateX(-50%);
  width: 22px; height: 22px; background: #fff; border-right: 1px solid var(--color-gray-200); border-bottom: 1px solid var(--color-gray-200);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 18px 36px -20px rgba(0,0,0,.18); }
.testimonial-card p { font-size: 13.5px; color: #444; line-height: 1.7; margin-bottom: 20px; }
.reviews-heading {
  font-family: var(--font-gotham); font-weight: 300;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem); line-height: 1.3;
  color: var(--color-near-black);
}
.reviews-heading strong { font-weight: 500; }
.gallery-heading {
  font-family: var(--font-gotham); font-weight: 300;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem); line-height: 1.1; letter-spacing: -.02em;
  color: var(--color-near-black);
}
.gallery-heading strong { font-weight: 700; }

.stars-sequence { display: inline-flex; }
.stars-sequence .star-i {
  display: inline-block; color: var(--color-orange); font-size: 18px;
  opacity: 0; transform: scale(0);
}
.reveal.is-visible .stars-sequence .star-i { animation: star-pop .4s var(--ease) forwards; }
.stars-sequence .star-i:nth-child(1) { animation-delay: .1s; }
.stars-sequence .star-i:nth-child(2) { animation-delay: .25s; }
.stars-sequence .star-i:nth-child(3) { animation-delay: .4s; }
.stars-sequence .star-i:nth-child(4) { animation-delay: .55s; }
.stars-sequence .star-i:nth-child(5) { animation-delay: .7s; }
@keyframes star-pop { to { opacity: 1; transform: scale(1); } }
.star-final { position: relative; }
.star-final::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  width: 16px; height: 16px; border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255,115,0,.7);
  transform: translate(-50%, -50%) scale(.2); opacity: 0;
}
.reveal.is-visible .star-final::after { animation: star-burst 1.8s ease-out .8s infinite; }
@keyframes star-burst {
  0% { transform: translate(-50%, -50%) scale(.2); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.4); opacity: 0; }
}

.testimonial-avatar {
  position: relative;
  width: 54px; height: 62px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--color-orange);
  margin: 0 auto 10px;
  overflow: hidden;
}
.testimonial-avatar-photo {
  position: absolute; inset: 3px; z-index: 1;
  width: calc(100% - 6px); height: calc(100% - 6px);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  object-fit: cover;
}
.testimonial-avatar.ph::before {
  position: relative; z-index: 2;
  color: var(--color-orange); font-weight: 800;
}
.testimonial-card h5 { font-size: 14px; font-weight: 800; margin-bottom: 4px; margin-top: auto; }

.trust-logos { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-top: 50px; }
.trust-logo {
  width: 1.15in; height: 0.51in; background: #fff;
  border: 1px solid var(--color-gray-200); padding: 6px 9px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--dur-fast), transform var(--dur-fast);
  animation: trust-logo-pulse 2.2s ease-out infinite;
}
@keyframes trust-logo-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,115,0,.6); }
  70% { box-shadow: 0 0 0 8px rgba(255,115,0,0); }
  100% { box-shadow: 0 0 0 8px rgba(255,115,0,0); }
}
.trust-logo img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.trust-logo:hover { border-color: var(--color-orange); transform: translateY(-3px); }

/* ---------------------------- Gallery carousel ---------------------------- */
.carousel { position: relative; max-width: 940px; margin: 0 auto; }
.carousel-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding: 30px 0; }
.carousel-slide {
  display: block; position: relative;
  aspect-ratio: 366/592; overflow: hidden;
  transition: transform .32s cubic-bezier(.22,.61,.36,1);
}
.carousel-slide:nth-child(odd) { transform: translateY(-18px); }
.carousel-slide:nth-child(even) { transform: translateY(18px); }
/* Active/hover state always lifts the tile UP from its own resting spot —
   never down — so no two tiles are ever animating in opposite directions
   at once (that opposite motion was what made adjacent tiles look "joined"). */
.carousel-slide.is-active:nth-child(odd) { transform: translateY(-30px); z-index: 2; }
.carousel-slide.is-active:nth-child(even) { transform: translateY(6px); z-index: 2; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel-hover-zone { position: absolute; inset: 16% 10%; z-index: 3; }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px;
  background: transparent; border: none; padding: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 4; cursor: pointer;
  transition: transform var(--dur-fast), opacity var(--dur-fast);
}
.carousel-arrow img { width: 100%; height: auto; display: block; }
.carousel-arrow:hover { opacity: .65; transform: translateY(-50%) scale(1.08); }
.carousel-arrow.prev { left: -40px; }
.carousel-arrow.prev img { transform: scaleX(-1); }
.carousel-arrow.next { right: -40px; }
.carousel-progress { display: flex; gap: 0; margin-top: 24px; }
.carousel-progress span { flex: 1; height: 2px; background: var(--color-gray-200); transition: background var(--dur-fast); }
.carousel-progress span.active { background: #ff7101; }

/* ---------------------------- Video block ---------------------------- */
.video-block { background: var(--color-black); }
.video-frame { position: relative; aspect-ratio: 21/10; background-color: #111; max-width: 700px; margin: 0 auto; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

/* ---------------------------- FAQ ---------------------------- */
#faq .eyebrow { font-weight: 500; }
.faq-grid { display: flex; justify-content: center; align-items: flex-start; gap: 40px; }
.faq-list { max-width: 465px; width: 100%; }
.faq-item {
  position: relative;
  border: 1px solid var(--color-near-black); border-radius: 4px;
  padding: 0 24px 0 66px; margin-bottom: 10px;
  transition: background .7s var(--ease), border-color .7s var(--ease);
}
.faq-item:hover { background: linear-gradient(to right, #000000, #3d3d3d); border-color: var(--color-near-black); }
.faq-q { width: 100%; display: flex; align-items: center; padding: 13px 0; text-align: left; }
.faq-q span.label { font-size: 15px; font-weight: 700; transition: color .7s var(--ease); }
.faq-item:hover .faq-q span.label { color: #fff; }
.faq-plus {
  position: absolute; top: -1px; left: -1px;
  width: 48px; height: calc(100% + 2px);
  background: var(--color-near-black); color: #fff;
  display: flex; align-items: center; justify-content: center;
  border-radius: 3px 0 0 3px;
  transition: background .7s var(--ease), height .7s var(--ease), width .7s var(--ease), border-radius .7s var(--ease);
}
.faq-plus::before, .faq-plus::after { content: ''; position: absolute; background: #fff; transition: transform .7s var(--ease); }
.faq-plus::before { width: 14px; height: 2px; }
.faq-plus::after { width: 2px; height: 14px; }
.faq-item:hover .faq-plus {
  background: var(--color-orange);
  width: 48px; height: 54px; border-radius: 0;
}
.faq-item:hover .faq-plus::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .7s var(--ease); }
.faq-item:hover .faq-a { max-height: 228px; }
.faq-a p { padding: 0 0 16px 0; font-size: 13.5px; color: var(--color-gray-500); line-height: 1.7; transition: color .7s var(--ease); }
.faq-item:hover .faq-a p { color: rgba(255,255,255,.75); }
.faq-a p.faq-a-intro { padding-bottom: 4px; }
.faq-a ul { padding: 0 0 16px 0; margin: 0; list-style: none; }
.faq-a ul li {
  font-size: 13.5px; color: var(--color-gray-500); line-height: 1.55;
  transition: color .7s var(--ease); position: relative; padding-left: 14px;
}
.faq-a ul li::before { content: '—'; position: absolute; left: 0; }
.faq-item:hover .faq-a ul li { color: rgba(255,255,255,.75); }

.faq-feature { position: relative; max-width: 390px; width: 100%; }
.faq-feature-media { position: relative; }
.faq-feature-media img { width: 100%; height: auto; display: block; }
.faq-feature-cta {
  position: absolute; left: 14%; right: 5%; top: 60%; bottom: 24%;
  z-index: 2;
}

/* ---------------------------- Footer ---------------------------- */
.footer-locations-band { background: #000; color: #fff; padding: 40px 0 16px; }
.footer-locations-band .eyebrow { margin-bottom: 56px; font-family: var(--font-gotham); font-weight: 700; }
.locations-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; }
.locations-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px 34px; }
.loc-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: #fff; white-space: nowrap; transition: color var(--dur-fast); }
.loc-item:hover { color: var(--color-orange); }
.pin-dot { width: 13px; height: auto; flex-shrink: 0; }
.state-map { aspect-ratio: 486.4/457.2; width: 100%; max-width: 206px; height: auto; margin-left: auto; display: block; }

footer.site-footer { background: radial-gradient(circle at center, #3d3b3c 0%, #292929 100%); color: rgba(255,255,255); }
.footer-mid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 40px 0; gap: 20px; }
.footer-mid-item:first-of-type { justify-self: start; margin-left: 150px; }
.footer-mid-item:last-of-type { justify-self: end; margin-right: 150px; }
.footer-logo-big { justify-self: center; }
.footer-mid-item {
  display: flex; align-items: center; gap: 12px; font-size: 12px;
}
.footer-mid-text { line-height: 1.3; }
.footer-mid-text strong { font-size: 18px; font-weight: 700; font-family: var(--font-gotham); }
.footer-mid-item .icon-circ {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-mid-item .icon-circ img { width: 44px; height: auto; display: block; }
.footer-logo-big img { height: 95px; width: auto; display: block; }

.footer-nav { position: relative; padding: 26px 0; display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.footer-nav::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 1px; background: rgba(255,255,255,.08);
}
.footer-nav a { font-family: var(--font-cta); font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #fff; transition: color var(--dur-fast); }
.footer-nav a:hover { color: var(--color-orange); }
.footer-nav .sq { width: 6px; height: 6px; background: var(--color-orange); }

.footer-social { display: flex; align-items: center; justify-content: center; gap: 12px; padding-bottom: 24px; }
.footer-social a {
  width: 38px; height: 38px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: #3d3d3d;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.footer-social a img { max-width: 22px; max-height: 22px; width: auto; height: auto; display: block; }
.footer-social a:hover { background: var(--color-orange); transform: translateY(-3px); }

.footer-divider { width: 1000px; max-width: 90%; height: 1px; background: rgba(255,255,255,.08); margin: 0 auto 18px; }

.footer-bottom { padding: 18px 0; text-align: center; font-size: 12.5px; color: #fff; }

/* ---------------------------- Under-development page ---------------------------- */
.under-dev {
  min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: #000; color: #fff; padding: 80px 24px;
}
.under-dev-inner { max-width: 520px; }
.under-dev h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(3rem, 7vw, 4.6rem);
  text-transform: uppercase; letter-spacing: .02em;
  margin-bottom: 18px;
}
.under-dev h1 .word-under { color: #fff; }
.under-dev h1 .word-dev { color: #ff7000; }
.under-dev p { color: rgba(255,255,255,.65); font-size: 13px; text-transform: uppercase; letter-spacing: .03em; line-height: 1.7; margin-bottom: 32px; }
.under-dev .btn-outline.dark { color: #fff; border-color: #fff; }
.under-dev .btn-outline.dark:hover { background: rgba(255,255,255,.08); box-shadow: 0 0 18px 2px rgba(255,255,255,.3); }

/* ---------------------------- Back to top ---------------------------- */
.back-to-top {
  position: fixed; right: 24px; bottom: 24px; width: 48px; height: 48px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--color-orange); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
  z-index: 90; box-shadow: 0 10px 24px -8px rgba(0,0,0,.4);
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px) scale(1.06); }

/* ---------------------------- Responsive ---------------------------- */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid, .logos-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .value-item:nth-child(3) { border-left: none; }
  .testimonial-grid, .locations-grid, .split-grid, .process-list, .why-grid { grid-template-columns: 1fr; }
  .faq-grid { flex-direction: column; align-items: center; }
  .feature-panel { max-width: 100%; }
  .feature-note { margin: 30px 0 0; max-width: 100%; flex-direction: column; }
  .feature-note-text { clip-path: none; padding: 16px 20px; margin-left: 0; }
  .feature-note-icon { width: 100%; transform: none; padding: 16px; }
  .feature-note-icon img { transform: none; width: 34px; height: 34px; }
  .feature-oc-logo { width: 220px; max-width: 50vw; }
  .why-card { grid-template-columns: 1fr; }
  .why-card-media { min-height: 240px; }
  .mv-grid { grid-template-columns: 1fr; text-align: center; }
  .mv-left { flex-direction: column; gap: 14px; }
  .mv-col-right { padding-left: 0; }
  .mv-divider { display: none; }
  .carousel-track { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .logo img { height: 54px; }
  .stats-grid { flex-wrap: wrap; }
  .stats-grid .ticker-divider { display: none; }
  .stat-item { flex: 1 1 50%; }
  .nav-row { padding-top: 14px; }
  .hero-inner { padding-top: 130px; }
  .topbar .container { grid-template-columns: auto 1fr auto; }
  .topbar-center span, .topbar-center { font-size: 11.5px; }
  .topbar-center { white-space: normal; text-align: center; }
  .topbar .btn { display: none; }
  .main-nav, .nav-cta .btn-outline, .topbar-item.hide-mobile { display: none; }
  .nav-toggle { display: flex; }
  .trust-grid, .footer-mid { grid-template-columns: 1fr; }
  .footer-mid-item:first-of-type, .footer-mid-item:last-of-type, .footer-logo-big { justify-self: center; }
  .trust-item::before { display: none; }
  .trust-item { border-top: 1px solid rgba(255,255,255,.35); padding: 26px 24px; }
  .trust-item:first-child { border-top: none; }
  .cards-grid, .locations-list { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .longhorn-diagram { display: none; }
  .longhorn-mobile-list { display: grid !important; }
  .footer-mid { text-align: center; justify-items: center; }
  .carousel-track { grid-template-columns: repeat(2, 1fr); }
}
.longhorn-mobile-list { display: none; grid-template-columns: repeat(2,1fr); gap: 28px 20px; margin-top: 40px; }
.longhorn-mobile-list .trait-callout { text-align: center; }
.longhorn-mobile-list .trait-icon {
  width: 62px; height: 71px; margin: 0 auto 10px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--color-orange);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.longhorn-mobile-list h5 { font-family: var(--font-gotham); font-weight: 700; font-size: 13px; text-transform: uppercase; margin-bottom: 4px; }
.longhorn-mobile-list p { font-family: var(--font-body); font-weight: 500; font-size: 11.5px; color: rgba(255,255,255,.55); line-height: 1.45; }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; background: var(--color-black);
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
  z-index: 99; padding: 30px 24px; overflow-y: auto;
}
.mobile-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-nav ul li { margin-bottom: 6px; }
.mobile-nav a { display: block; padding: 14px 4px; font-size: 18px; font-weight: 700; color: #fff; border-bottom: 1px solid rgba(255,255,255,.08); font-family: var(--font-cta); text-transform: uppercase; }
.mobile-nav .btn { margin-top: 24px; width: 100%; }

/* ---------------------------- Gallery page (dark theme) ---------------------------- */
.gallery-dark-section { background: var(--color-black); padding: 70px 0; }
.gallery-dark-section:first-of-type { padding-top: 221px; }
.gallery-heading-wrap { display: inline-block; text-align: left; margin: 0 0 30px; max-width: 100%; }
.gallery-section-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(3.15rem, 5.7vw, 4.5rem); line-height: 1.1;
  color: var(--color-orange); text-transform: uppercase; letter-spacing: .01em;
  white-space: nowrap;
}
.gallery-divider-fit { display: block; width: 100%; height: 1px; margin-top: 14px; }
.gallery-copy { max-width: 1090px; margin: 0 0 60px 46px; text-align: left; font-size: 18.5px; line-height: 1.7; color: rgba(255,255,255); }
.gallery-heading-block { text-align: left; padding-left: 46px; }

/* Per-section paginated carousel: shows 4 cards per "page"; arrows page through the full set */
.section-carousel { position: relative; max-width: 1100px; margin: 0 auto 40px; }
.section-carousel-viewport { overflow: hidden; }
.section-carousel-track { display: flex; gap: 14px; transition: transform .5s cubic-bezier(.22,.61,.36,1); }
.section-carousel-card { position: relative; flex: 0 0 calc((100% - 3 * 14px) / 4); }
.section-carousel-photo { position: relative; z-index: 2; aspect-ratio: 3/4.6; overflow: hidden; display: block; background: var(--color-near-black); }
.section-carousel-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--dur-med) var(--ease); }
.section-carousel-card:hover .section-carousel-photo img { transform: scale(1.05); }
.view-fullscreen-link {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: -1.5px;
  width: 100%; box-sizing: border-box;
  color: #fff; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  background: none; border: 1.5px solid #fff; padding: 9px 14px; cursor: pointer; font-family: var(--font-cta);
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.view-fullscreen-link span.label { text-decoration: underline; text-underline-offset: 3px; }
.view-fullscreen-link:hover { border-color: var(--color-orange); color: var(--color-orange); }
.view-fullscreen-link .arrow { transition: transform var(--dur-fast); }
.view-fullscreen-link:hover .arrow { transform: translateX(3px); }

.section-carousel-arrow {
  position: absolute; top: calc(50% - 15px); transform: translateY(-50%);
  width: 13px; height: 13px;
  background: transparent; border: none; padding: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 4; cursor: pointer;
  transition: transform var(--dur-fast), opacity var(--dur-fast);
}
.section-carousel-arrow img { width: 100%; height: 100%; max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.section-carousel-arrow:hover { opacity: .65; transform: translateY(-50%) scale(1.08); }
.section-carousel-arrow.prev { left: -42px; }
.section-carousel-arrow.next { right: -42px; }
.section-carousel-arrow.next img { transform: scaleX(-1); }

.gallery-rounded-row { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 80px; margin-bottom: 0px; }
.gallery-rounded-row:has(.gallery-rounded-ph:nth-child(2)) { justify-content: space-between; gap: 60px; padding: 0 46px; }
.gallery-dark-section:has(.gallery-rounded-row) { padding-bottom: 30px; }
.gallery-rounded-ph { width: 520px; height: 260px; max-width: 100%; border-radius: 14px; background: repeating-linear-gradient(135deg, #1c1c1c, #1c1c1c 10px, #161616 10px, #161616 20px); color: rgba(255,255,255,.35); overflow: hidden; }
.gallery-rounded-ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-rounded-ph .video-frame { width: 100%; height: 100%; max-width: none; aspect-ratio: auto; margin: 0; }
.gallery-rounded-ph .video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1000; display: none;
  align-items: center; justify-content: center;
  background: rgba(0,0,0,.94);
}
.lightbox.is-open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 88vh; object-fit: contain; display: block; }
.lightbox-close {
  position: absolute; top: 22px; right: 28px; z-index: 1001;
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  background: transparent; border: 1.5px solid #fff; color: #fff; font-size: 22px; line-height: 1;
  cursor: pointer; transition: background var(--dur-fast);
}
.lightbox-close:hover { background: var(--color-orange); border-color: var(--color-orange); }
.lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; z-index: 1001;
  background: transparent; border: 1.5px solid #fff; padding: 12px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background var(--dur-fast), border-color var(--dur-fast);
}
.lightbox-arrow img { width: 100%; height: 100%; object-fit: contain; display: block; }
.lightbox-arrow:hover { background: var(--color-orange); border-color: var(--color-orange); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-next img { transform: scaleX(-1); }

/* Closing CTA (orange banner, left-aligned, split-color heading, button pushed right, small watermark) */
.gallery-cta-banner { position: relative; background: var(--color-orange); color: #fff; overflow: hidden; padding: 54px 0; }
.gallery-cta-banner .container {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: flex-start; gap: 20px; flex-wrap: wrap;
}
.gallery-cta-copy { text-align: left; flex: 1; min-width: 280px; }
.gallery-cta-lede { max-width: 640px; margin: 0 0 14px; font-size: 12px; line-height: 1.7; }
.gallery-cta-banner h2 { font-family: var(--font-display); font-size: clamp(2.4rem, 4.8vw, 3.6rem); line-height: 1; text-transform: uppercase; margin-bottom: 10px; }
.gallery-cta-banner h2 .word-white { color: #fff; }
.gallery-cta-banner h2 .word-black { color: var(--color-near-black); }
.gallery-cta-tagline { font-size: 10.8px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: rgba(255,255,255,.9); }
.gallery-cta-btn { flex-shrink: 0; }
.gallery-cta-watermark {
  position: absolute; right: -3%; top: 50%; transform: translateY(-50%);
  height: 56%; width: auto; opacity: .18; pointer-events: none; user-select: none;
}

@media (max-width: 1024px) {
  .section-carousel-card { flex: 0 0 calc((100% - 14px) / 2); }
  .section-carousel-arrow.prev { left: 4px; }
  .section-carousel-arrow.next { right: 4px; }
}
@media (max-width: 600px) {
  .section-carousel-card { flex: 0 0 100%; }
}

/* ---------------------------- Financing page ---------------------------- */

/* Script/cursive tagline font — placeholder using a system cursive fallback.
   Drop your real script font file at assets/fonts/financing-script.woff (+ .ttf)
   and it will apply automatically via this @font-face. */
@font-face {
  font-family: 'Arizona DB';
  src: url('assets/fonts/Arizona_DB.woff') format('woff');
  font-display: swap;
}
.financing-hero-script {
  font-family: 'Arizona DB', 'Brush Script MT', cursive;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: #fff;
  margin: 6px 0 18px;
}
.financing-hero-divider { display: flex; align-items: center; gap: 14px; max-width: 340px; margin-bottom: 22px; }
.financing-hero-divider span { flex: 1; height: 2px; background: rgba(255,113,0,.35); }
.financing-hero-divider img { width: 50px; height: auto; flex-shrink: 0; opacity: .9; }

/* Heading flanked by short lines on both sides (distinct from the wavy lens-divider used elsewhere) */
.divider-flanked { display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 10px; }
.divider-flanked span { width: 46px; height: 3px; background: var(--color-orange); flex-shrink: 0; }
.divider-flanked h2 {
  font-family: var(--font-cta); font-weight: 800; font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  letter-spacing: .01em; text-transform: uppercase; color: var(--color-near-black); text-align: center;
}
.financing-section-sub { text-align: center; max-width: 640px; margin: 0 auto 40px; color: #555; font-size: 14.5px; }
#financing-faq-heading h2 { font-family: var(--font-btn); }

/* How Financing Helps — 5 icon cards */
.financing-icons-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px; margin-top: 44px; }
.financing-icon-card { text-align: center; }
.financing-icon-card .icon-circle {
  width: 68px; height: 68px; margin: 0 auto 16px;
  border: 2px solid var(--color-orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.financing-icon-card .icon-circle svg { width: 30px; height: 30px; stroke: var(--color-orange); fill: none; }
.financing-icon-card:nth-child(1) .icon-circle img,
.financing-icon-card:nth-child(4) .icon-circle img {
  width: 57px; height: 57px;
}
.financing-icon-card h4 { font-family: var(--font-cta); font-weight: 800; font-size: 13.5px; text-transform: uppercase; letter-spacing: .02em; margin-bottom: 8px; line-height: 1.3; }
.financing-icon-card p { font-size: 12.5px; color: #666; line-height: 1.6; }

/* Choose the Right Financing Partner — two cards */
.financing-partners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px; }
.financing-partner-card { background: var(--color-gray-100); border-radius: 10px; padding: 34px; }
.financing-partner-logo { height: 34px; margin: 0 auto 22px; display: block; }
.financing-partner-card h3 { font-family: var(--font-body); font-size: 16px; font-weight: 800; color: var(--color-near-black); text-align: center; margin-bottom: 8px; }
.financing-partner-card h3 .hl { color: var(--color-orange); }
.financing-partner-card.foundation h3 .hl { color: #1c6b40; }
.financing-partner-card > p.desc { text-align: center; font-size: 13px; color: #555; margin-bottom: 22px; }
.financing-checklist { display: flex; flex-direction: column; gap: 13px; border-top: 1px solid var(--color-gray-200); padding-top: 20px; margin-bottom: 26px; }
.financing-checklist li { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--color-near-black); }
.financing-checklist svg { width: 18px; height: 18px; flex-shrink: 0; stroke: var(--color-orange); fill: none; }
.financing-partner-card.foundation .financing-checklist svg { stroke: #1c6b40; }
.financing-partner-btn { display: block; width: 100%; text-align: center; }
.financing-partner-btn .btn { width: 100%; }
.financing-partner-btn.foundation .btn-primary { background: #1c6b40; }
.financing-partner-btn.foundation .btn-primary:hover { background: #16512f; box-shadow: 0 0 22px 3px rgba(28,107,64,.65), 0 14px 26px -10px rgba(0,0,0,.75); }
.financing-partner-note { text-align: center; font-size: 11.5px; color: #888; margin-top: 12px; }

/* Not sure banner */
.financing-not-sure {
  display: flex; align-items: center; gap: 20px;
  background: var(--color-gray-100); border-radius: 10px;
  padding: 26px 30px; max-width: 980px; margin: 46px auto 0;
}
.financing-not-sure img { width: 40px; height: 40px; flex-shrink: 0; }
.financing-not-sure h4 { font-family: var(--font-cta); font-weight: 800; font-size: 14.5px; text-transform: uppercase; margin-bottom: 4px; }
.financing-not-sure p { font-size: 13.5px; color: #555; }
.financing-not-sure a { color: var(--color-orange); font-weight: 800; }

/* Financing FAQ — two-column click accordion */
.financing-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; margin-top: 40px; max-width: 980px; margin-left: auto; margin-right: auto; }
.financing-faq-item { border-bottom: 1px solid var(--color-gray-200); padding: 18px 0; }
.financing-faq-item .faq-q-head { display: flex; align-items: center; justify-content: space-between; cursor: pointer; gap: 14px; }
.financing-faq-item .faq-q-head h4 { font-family: var(--font-body); font-weight: 700; font-size: 14.5px; color: var(--color-near-black); }
.financing-faq-item .chev { display: inline-flex; flex-shrink: 0; transition: transform var(--dur-med) var(--ease); }
.financing-faq-item .chev img { width: 13px; height: auto; display: block; }
.financing-faq-item.is-open .chev { transform: rotate(180deg); }
.financing-faq-item .faq-a-body { max-height: 0; overflow: hidden; transition: max-height var(--dur-med) var(--ease); }
.financing-faq-item .faq-a-body p { font-size: 13px; color: #666; line-height: 1.6; padding-top: 12px; }

@media (max-width: 900px) {
  .financing-icons-grid { grid-template-columns: repeat(2, 1fr); }
  .financing-partners-grid { grid-template-columns: 1fr; }
  .financing-faq-grid { grid-template-columns: 1fr; }
  .financing-not-sure { flex-direction: column; text-align: center; }
}

/* ---------------------------- Contact page ---------------------------- */
.contact-hero-inner { display: grid; grid-template-columns: 1fr 460px; gap: 60px; align-items: start; }
.contact-hero-divider { display: flex; align-items: center; gap: 14px; max-width: 300px; margin: 14px 0 24px; }
.contact-hero-divider span { flex: 1; height: 1px; background: var(--color-orange); }
.contact-hero-divider img { width: 50px; height: auto; flex-shrink: 0; opacity: .9; }
.contact-hero-checklist { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }
.contact-hero-checklist li { display: flex; align-items: center; gap: 12px; font-family: var(--font-cta); font-weight: 700; font-size: 13px; letter-spacing: .02em; text-transform: uppercase; color: #fff; }
.contact-hero-checklist .ck-circle { width: 26px; height: 26px; border: 1.5px solid var(--color-orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-hero-checklist svg { width: 13px; height: 13px; stroke: var(--color-orange); fill: none; stroke-width: 3; }

/* Form card */
.contact-form-card { position: relative; z-index: 1; background: #fff; border-radius: 10px; padding: 28px 34px; margin-top: 150px; box-shadow: 0 20px 50px -20px rgba(0,0,0,.5); }
.contact-form-card h2 { font-family: var(--font-body); font-weight: 800; font-size: 19px; text-align: center; color: var(--color-near-black); margin-bottom: 6px; }
.contact-form-divider { width: 50px; height: 3px; background: var(--color-orange); margin: 0 auto 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 12px; }
.form-group label { display: block; font-family: var(--font-body); font-weight: 700; font-size: 12px; color: var(--color-near-black); margin-bottom: 5px; }
.form-group label .req { color: var(--color-orange); }
.form-group input[type="text"], .form-group input[type="tel"], .form-group input[type="email"], .form-group select, .form-group textarea {
  width: 100%; box-sizing: border-box;
  border: 1.5px solid var(--color-gray-200); border-radius: 6px;
  padding: 8px 12px; font-family: var(--font-body); font-size: 13px; color: var(--color-near-black);
  background: #fff;
}
.form-group select { appearance: none; background-image: url('assets/drop_down_arrow.svg'); background-repeat: no-repeat; background-position: right 13px center; background-size: 11px; }
.form-group textarea { resize: vertical; min-height: 60px; font-family: var(--font-body); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--color-orange); }
.form-financing-box { border: 1.5px solid var(--color-orange); border-radius: 6px; padding: 12px 16px; margin-bottom: 16px; }
.form-financing-box > label { margin-bottom: 8px; }
.form-radio-row { display: flex; flex-direction: column; gap: 8px; }
.form-radio-row label { display: flex; align-items: center; gap: 9px; font-weight: 500; font-size: 13px; color: #444; cursor: pointer; }
.form-radio-row input[type="radio"] { accent-color: var(--color-orange); width: 15px; height: 15px; }
.contact-form-submit { width: 100%; }
.contact-form-submit .btn { width: 100%; }
.contact-form-fineprint { text-align: center; font-size: 10.5px; color: #888; margin-top: 10px; line-height: 1.4; }
.contact-form-status { text-align: center; font-size: 13px; font-weight: 700; margin-top: 12px; min-height: 18px; }
.contact-form-status.is-success { color: #1c6b40; }
.contact-form-status.is-error { color: #c0392b; }

/* We're Here to Help — service icon grid */
.contact-help-section { padding-top: 130px; }
.contact-help-copy { max-width: 480px; }
.contact-help-copy h2 { font-family: var(--font-body); font-weight: 800; font-size: clamp(1.6rem, 2.6vw, 2.1rem); color: var(--color-near-black); margin-bottom: 8px; }
.contact-help-divider { width: 50px; height: 3px; background: var(--color-orange); margin-bottom: 20px; }
.contact-help-copy p { font-size: 14.5px; color: #555; line-height: 1.7; margin-bottom: 30px; }
.contact-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 24px; }
.contact-service-item { display: flex; align-items: center; gap: 12px; }
.contact-service-item svg { width: 26px; height: 26px; stroke: var(--color-orange); fill: none; flex-shrink: 0; }
.contact-service-item img { width: 26px; height: 26px; flex-shrink: 0; object-fit: contain; }
.contact-service-item span { font-family: var(--font-cta); font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .01em; line-height: 1.3; }

/* Other Ways to Contact Us */
.contact-other-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.contact-other-card { border: 1px solid var(--color-gray-200); border-radius: 10px; padding: 30px 20px; text-align: center; }
.contact-other-card .oc-icon { width: 46px; height: 46px; border-radius: 50%; background: var(--color-orange); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.contact-other-card .oc-icon svg { width: 20px; height: 20px; stroke: #fff; fill: none; }
.contact-other-card h4 { font-family: var(--font-cta); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .02em; margin-bottom: 8px; }
.contact-other-card p { font-size: 12.5px; color: #666; line-height: 1.6; }
.contact-other-card a { color: var(--color-orange); font-weight: 800; }

/* Tagline banner — contact-page variant (no CTA) and small paragraph */
.tagline-copy .contact-tagline-p { max-width: 520px; }

@media (max-width: 1024px) {
  .contact-hero-inner { grid-template-columns: 1fr; }
  .contact-services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-other-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-services-grid { grid-template-columns: 1fr; }
  .contact-other-grid { grid-template-columns: 1fr; }
}

/* =======================================================================
   FENCING PAGE (fencing.html)
   ======================================================================= */

/* ---------------------------- Hero (unique bg + inline heading) ---------------------------- */
.hero-fencing .hero-bg-photo {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.45) 48%, rgba(0,0,0,.08) 100%),
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 22%),
    url('assets/fencing hero.png');
  background-size: cover;
  background-position: center;
}
.hero-fencing h1 { display: flex; flex-wrap: wrap; column-gap: 16px; row-gap: 0; }
.hero-fencing h1 span.accent { font-size: 1em; }
.hero-fencing h1 span:not(.accent) { font-size: 1em; }
.hero-fencing .hero-tagline {
  font-family: var(--font-body); font-weight: 700; font-size: 16px; letter-spacing: .02em;
  text-transform: uppercase; color: #fff; max-width: 580px; margin: 4px 0 16px; line-height: 1.35;
}
.hero-fencing p.lead { text-transform: none; font-weight: 400; font-size: 15.5px; max-width: 560px; }

/* ---------------------------- Shared fencing-page section heading ---------------------------- */
.fencing-heading {
  font-family: var(--font-btn);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--color-near-black);
  text-align: center;
  margin: 0 auto;
}
.fencing-heading .accent { color: var(--color-orange); }

/* ---------------------------- Benefits of a Quality Fence ---------------------------- */
.fencing-benefits-grid { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 50px; }
.fencing-benefit-item { text-align: center; padding: 0 22px; border-left: 2px solid var(--color-orange); }
.fencing-benefit-item:first-child { border-left: none; }
.fencing-benefit-icon { width: 58px; height: 58px; margin: 0 auto 20px; display: block; }
.fencing-benefit-icon img { width: 100%; height: 100%; object-fit: contain; }
.fencing-benefit-item h4 {
  font-family: var(--font-gotham-semibold); font-weight: 700; font-size: 13.5px;
  text-transform: uppercase; letter-spacing: .02em; color: var(--color-near-black); margin-bottom: 10px;
}
.fencing-benefit-item p { font-family: var(--font-body); font-size: 12.5px; color: #666; line-height: 1.55; }

/* ---------------------------- Fencing Options ---------------------------- */
.fencing-options-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; margin-top: 50px; }
.fencing-option-card { display: grid; grid-template-columns: 1fr 1.15fr; gap: 26px; align-items: center; }
.fencing-option-media { aspect-ratio: 4/3; border-radius: 18px; }
.wood-fencing-photo {
  background-image: url('assets/wood fencing.jpg');
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.combo-fencing-photo {
  background-image: url('assets/combo fencing.png');
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.fencing-option-copy { display: flex; flex-direction: column; justify-content: center; }
.fencing-option-copy h3 {
  font-family: var(--font-gotham-semibold); font-weight: 700; font-size: 18px;
  text-transform: uppercase; letter-spacing: .01em; color: var(--color-near-black); margin-bottom: 6px;
}
.fencing-option-copy > p { font-family: var(--font-body); font-size: 13px; color: #666; line-height: 1.4; margin-bottom: 12px; }
.fencing-option-copy .checklist { gap: 9px; }
.fencing-option-copy .checklist li { font-weight: 700; font-size: 12.5px; }

/* ---------------------------- Our Fencing Process ---------------------------- */
.fencing-process-row { display: flex; align-items: flex-start; justify-content: center; gap: 4px; margin-top: 54px; }
.fencing-process-step { display: flex; flex-direction: column; align-items: center; text-align: center; width: 200px; flex-shrink: 0; }
.fencing-process-badge { position: relative; width: 64px; height: 64px; margin: 0 auto 22px; }
.fencing-process-icon {
  width: 64px; height: 64px; border-radius: 50%; background: var(--color-orange);
  display: flex; align-items: center; justify-content: center; padding-bottom: 4px;
}
.fencing-process-icon img { width: 34px; height: 34px; object-fit: contain; }
.fencing-process-num {
  position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%);
  width: 27px; height: 27px; border-radius: 50%; background: var(--color-near-black);
  color: #fff; border: 3px solid #fff;
  font-family: var(--font-cta); font-weight: 800; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}
.fencing-process-step:nth-child(3) .fencing-process-icon img { width: 40px; height: 40px; } 
.fencing-process-step h4 {
  font-family: var(--font-gotham-semibold); font-weight: 700; font-size: 13.5px;
  text-transform: uppercase; letter-spacing: .02em; color: var(--color-near-black); margin-bottom: 8px;
}
.fencing-process-step p { font-family: var(--font-body); font-size: 12.5px; color: #666; line-height: 1.55; padding: 0 6px; }
.fencing-process-arrow {
  align-self: flex-start; margin-top: 20px; font-size: 22px; font-weight: 700;
  color: var(--color-near-black); opacity: .35; font-family: var(--font-cta);
}

@media (max-width: 1180px) {
  .fencing-process-row { flex-wrap: wrap; row-gap: 40px; }
  .fencing-process-arrow { display: none; }
}
@media (max-width: 1024px) {
  .fencing-benefits-grid { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .fencing-benefit-item:nth-child(4) { border-left: none; }
  .fencing-options-grid { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 780px) {
  .hero-fencing h1 { flex-direction: column; }
  .fencing-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .fencing-benefit-item:nth-child(3) { border-left: none; }
  .fencing-benefit-item { border-left: none !important; border-top: 2px solid var(--color-orange); padding: 24px 16px 0; }
  .fencing-benefit-item:first-child, .fencing-benefit-item:nth-child(2) { border-top: none; }
  .fencing-option-card { grid-template-columns: 1fr; }
  .fencing-process-step { width: 100%; max-width: 320px; }
}
@media (max-width: 600px) {
  .fencing-benefits-grid { grid-template-columns: 1fr; }
  .fencing-benefit-item { border-top: 2px solid var(--color-orange); padding: 24px 10px 0; }
  .fencing-benefit-item:first-child { border-top: none; }
}

/* =======================================================================
   REMODELING PAGE (remodeling.html)
   ======================================================================= */

/* ---------------------------- Hero (unique bg + subline) ---------------------------- */
.hero-remodeling .hero-bg-photo {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.45) 48%, rgba(0,0,0,.08) 100%),
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 22%),
    url('assets/remodeling hero.png');
  background-size: cover;
  background-position: center;
}
.hero-remodeling .hero-inner { max-width: 1150px; padding-top: 160px; }
.hero-remodeling h1 {
  white-space: nowrap;
  text-align: left;
  font-size: clamp(3.4rem, 7.2vw, 7rem);
}
.hero-remodeling h1 span { display: inline; }
.hero-remodeling h1 span:not(.accent) { font-size: 1em; }
.hero-remodeling h1 span.accent { font-size: 1em; }
.hero-remodeling .hero-subline {
  font-family: var(--font-body); font-weight: 700; font-size: 25px; letter-spacing: .32em;
  text-transform: uppercase; color: #fff; text-align: left; margin: 6px 0 16px;
}
.hero-remodeling p.lead { text-transform: none; font-weight: 400; font-size: 15.5px; max-width: 580px; }

/* ---------------------------- Shared remodeling-page section heading ---------------------------- */
.remodeling-heading {
  font-family: var(--font-btn);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--color-near-black);
  text-align: center;
  margin: 0 auto;
}
.remodeling-heading .accent { color: var(--color-orange); }

/* ---------------------------- Benefits of Remodeling ---------------------------- */
.remodeling-benefits-grid { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 50px; }
.remodeling-benefit-item { text-align: center; padding: 0 22px; border-left: 2px solid var(--color-orange); }
.remodeling-benefit-item:first-child { border-left: none; }
.remodeling-benefit-icon { width: 58px; height: 58px; margin: 0 auto 20px; display: block; }
.remodeling-benefit-icon img { width: 100%; height: 100%; object-fit: contain; }
.remodeling-benefit-item h4 {
  font-family: var(--font-gotham-semibold); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .02em; color: var(--color-near-black); margin-bottom: 10px;
}
.remodeling-benefit-item:nth-child(4) .remodeling-benefit-icon img { width: 95%; height: 95%; }
.remodeling-benefit-item p { font-family: var(--font-body); font-size: 12.5px; color: #666; line-height: 1.55; }

/* ---------------------------- Popular Remodeling Projects ---------------------------- */
.remodeling-projects-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px; }
.remodeling-project-card p {
  font-family: var(--font-body); font-size: 12.5px; color: #666; line-height: 1.5;
  text-align: center; margin-top: 16px; padding: 0 6px;
}
.remodeling-project-media {
  position: relative; aspect-ratio: 4/3.1; border-radius: 14px; overflow: hidden;
}
.kitchen-remodeling-photo {
  background-image: url('assets/kitchen remodeling.png');
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.bathroom-remodeling-photo {
  background-image: url('assets/bathroom remodeling.png');
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.painting-remodeling-photo {
  background-image: url('assets/painting remodeling.png');
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.pergola-remodeling-photo {
  background-image: url('assets/pergola remodeling.jpg');
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.remodeling-project-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.82); color: #fff;
  font-family: var(--font-gotham-semibold); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .02em;
  text-align: center; padding: 12px 8px;
}
.remodeling-projects-cta { text-align: center; margin-top: 48px; }
.remodeling-projects-cta .btn { transform: skewX(-16deg); }
.remodeling-projects-cta .btn span { padding: 10px 30px; font-size: 13px; }

/* ---------------------------- Our Remodeling Process ---------------------------- */
.remodeling-process-row { display: flex; align-items: flex-start; justify-content: center; gap: 4px; margin-top: 54px; }
.remodeling-process-step { display: flex; flex-direction: column; align-items: center; text-align: center; width: 200px; flex-shrink: 0; }
.remodeling-process-badge { position: relative; width: 64px; height: 64px; margin: 0 auto 22px; }
.remodeling-process-icon {
  width: 64px; height: 64px; border-radius: 50%; background: var(--color-orange);
  display: flex; align-items: center; justify-content: center; padding-bottom: 8px;
}
.remodeling-process-icon img { width: 34px; height: 34px; object-fit: contain; }
.remodeling-process-num {
  position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
  width: 27px; height: 27px; border-radius: 50%; background: var(--color-near-black);
  color: #fff; border: 3px solid #fff;
  font-family: var(--font-cta); font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.remodeling-process-step h4 {
  font-family: var(--font-gotham-semibold); font-weight: 700; font-size: 13.5px;
  text-transform: uppercase; letter-spacing: .02em; color: var(--color-near-black); margin-bottom: 8px;
}
.remodeling-process-step p { font-family: var(--font-body); font-size: 12.5px; color: #666; line-height: 1.55; padding: 0 6px; }
.remodeling-process-arrow {
  align-self: flex-start; margin-top: 20px; font-size: 22px; font-weight: 700;
  color: var(--color-near-black); opacity: .35; font-family: var(--font-cta);
}

@media (max-width: 1180px) {
  .remodeling-process-row { flex-wrap: wrap; row-gap: 40px; }
  .remodeling-process-arrow { display: none; }
}
@media (max-width: 1024px) {
  .remodeling-benefits-grid { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .remodeling-benefit-item:nth-child(4) { border-left: none; }
  .remodeling-projects-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
}
@media (max-width: 780px) {
  .hero-remodeling h1 { white-space: normal; }
  .hero-remodeling .hero-subline { font-size: 16px; letter-spacing: .22em; }
  .remodeling-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .remodeling-benefit-item:nth-child(3) { border-left: none; }
  .remodeling-benefit-item { border-left: none !important; border-top: 2px solid var(--color-orange); padding: 24px 16px 0; }
  .remodeling-benefit-item:first-child, .remodeling-benefit-item:nth-child(2) { border-top: none; }
  .remodeling-process-step { width: 100%; max-width: 320px; }
}
@media (max-width: 600px) {
  .remodeling-benefits-grid { grid-template-columns: 1fr; }
  .remodeling-benefit-item { border-top: 2px solid var(--color-orange); padding: 24px 10px 0; }
  .remodeling-benefit-item:first-child { border-top: none; }
  .remodeling-projects-grid { grid-template-columns: 1fr; }
}

/* =======================================================================
   SPRAY FOAM INSULATION PAGE (sprayfoam.html)
   ======================================================================= */

/* ---------------------------- Hero ---------------------------- */
.hero-sprayfoam .hero-bg-photo {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.45) 48%, rgba(0,0,0,.08) 100%),
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 22%),
    url('assets/sprayfoam hero.png');
  background-size: cover;
  background-position: center;
}
.hero-sprayfoam h1 { display: flex; flex-wrap: wrap; column-gap: 0; row-gap: 0; }
.hero-sprayfoam h1 span:not(.accent) { font-size: 1em; }
.hero-sprayfoam h1 span.accent { font-size: 1em; }
.hero-sprayfoam .hero-tagline {
  font-family: var(--font-body); font-weight: 700; font-size: 16px; letter-spacing: .02em;
  text-transform: uppercase; color: #fff; max-width: 620px; margin: 4px 0 16px; line-height: 1.35;
}
.hero-sprayfoam p.lead { text-transform: none; font-weight: 400; font-size: 15.5px; max-width: 580px; }

/* ---------------------------- Shared sprayfoam-page section headings ---------------------------- */
.sprayfoam-heading {
  font-family: var(--font-btn);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--color-near-black);
  text-align: center;
  margin: 0 auto;
}
.sprayfoam-heading .accent { color: var(--color-orange); }
.sprayfoam-heading-left {
  font-family: var(--font-btn);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--color-near-black);
  margin: 0 0 40px;
}
.sprayfoam-heading-left .accent { color: var(--color-orange); }

/* ---------------------------- Benefits ---------------------------- */
.sprayfoam-benefits-grid { display: grid; grid-template-columns: repeat(6, 1fr); margin-top: 50px; align-items: center; }
.sprayfoam-benefit-item { text-align: center; padding: 10px 10px; border-left: 2px solid var(--color-orange); }
.sprayfoam-benefit-item:first-child { border-left: none; }
.sprayfoam-benefit-icon { width: 50px; height: 50px; margin: 0 auto 18px; display: block; }
.sprayfoam-benefit-icon img { width: 100%; height: 100%; object-fit: contain; }
.sprayfoam-benefit-item h4 {
  font-family: var(--font-gotham-semibold); font-weight: 700; font-size: 12.5px;
  text-transform: uppercase; letter-spacing: .02em; color: var(--color-near-black); margin-bottom: 8px;
}
.sprayfoam-benefit-item:nth-child(6) .sprayfoam-benefit-icon { width: 62px; height: 62px; }
.sprayfoam-benefit-item p { font-family: var(--font-body); font-size: 12px; color: #666; line-height: 1.5; }

/* ---------------------------- Why Choose Longhorn Roofing? ---------------------------- */
.sprayfoam-why-grid { display: grid; grid-template-columns: 1fr 1fr .8fr; gap: 20px; align-items: stretch; }
.sprayfoam-why-media { border-radius: 14px; height: 195px; }
.sprayfoam-why-list li { font-weight: 700; font-size: 13px; }
.sprayfoam-why-list { gap: 15px; }
.sprayfoam-why-card {
  background: #fff; border: 1px solid var(--color-gray-200); border-radius: 0px;
  padding: 16px 15px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.sprayfoam-why-card-icon { width: 48px; height: 48px; margin: 0 auto 14px; display: block; }
.sprayfoam-why-card-icon img { width: 100%; height: 100%; object-fit: contain; }
.sprayfoam-why-card h4 {
  font-family: var(--font-gotham-semibold); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .02em; color: var(--color-near-black); margin-bottom: 5px;
}
.sprayfoam-why-card > p:not(.sprayfoam-why-card-tagline) { font-family: var(--font-body); font-size: 11px; font-weight: 700; color: #666; line-height: 1.5; margin-bottom: 15px; }
.sprayfoam-why-card-tagline {
  font-family: 'Arizona DB', 'Brush Script MT', cursive;
  font-weight: 400; font-size: 20px;
  color: var(--color-orange); line-height: 1;
}

/* ---------------------------- Type Of Sprayfoams We Install ---------------------------- */
.sprayfoam-types-grid {
  display: grid; grid-template-columns: .85fr 1.3fr .85fr; gap: 36px; align-items: center;
  margin-top: 50px; background: var(--color-gray-100); border-radius: 0px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 44px calc((100vw - var(--container)) / 2 + 40px);
}
.sprayfoam-types-col h3 {
  font-family: var(--font-gotham-semibold); font-weight: 700; font-size: 15px;
  text-transform: uppercase; letter-spacing: .01em; color: var(--color-orange); margin-bottom: 18px;
}
.sprayfoam-types-col .checklist li { font-weight: 700; font-size: 13px; }
.sprayfoam-types-col-right { text-align: right; }
.sprayfoam-types-col-right .checklist li { flex-direction: row-reverse; text-align: right; }
.sprayfoam-types-col-right .checklist li:last-child { white-space: nowrap; }
.sprayfoam-split-media {
  position: relative; aspect-ratio: 4/2.7; border-radius: 0; overflow: hidden;
}
.sprayfoam-split-label {
  position: absolute; bottom: 18px;
  color: #fff; font-family: var(--font-gotham-semibold); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .02em;
}
.sprayfoam-split-label-left { left: 20px; }
.sprayfoam-split-label-right { right: 20px; }

/* ---------------------------- Our Sprayfoam Insulation Process ---------------------------- */
.sprayfoam-process-row { display: flex; align-items: flex-start; justify-content: center; gap: 2px; margin-top: 50px; }
.sprayfoam-process-step { display: flex; flex-direction: column; align-items: center; text-align: center; width: 160px; flex-shrink: 0; }
.sprayfoam-process-badge { position: relative; width: 56px; height: 56px; margin: 0 auto 20px; }
.sprayfoam-process-icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--color-orange);
  display: flex; align-items: center; justify-content: center; padding-bottom: 6px;
}
.sprayfoam-process-icon img { width: 26px; height: 26px; object-fit: contain; }
.sprayfoam-process-step:nth-child(1) .sprayfoam-process-icon img { width: 23px; height: 23px; }
.sprayfoam-process-num {
  position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 24px; border-radius: 50%; background: var(--color-near-black);
  color: #fff; border: 3px solid #fff;
  font-family: var(--font-cta); font-weight: 800; font-size: 11px;
  display: flex; align-items: center; justify-content: center;
}
.sprayfoam-process-step h4 {
  font-family: var(--font-gotham-semibold); font-weight: 700; font-size: 12.5px;
  text-transform: uppercase; letter-spacing: .02em; color: var(--color-near-black); margin-bottom: 6px;
}
.sprayfoam-process-step p { font-family: var(--font-body); font-size: 11.5px; color: #666; line-height: 1.5; padding: 0 4px; }
.sprayfoam-process-arrow {
  align-self: flex-start; margin-top: 16px; font-size: 20px; font-weight: 700;
  color: var(--color-near-black); opacity: .35; font-family: var(--font-cta);
}

/* ---------------------------- Trusted. Local. Professional. ---------------------------- */
.sprayfoam-trusted-grid { display: grid; grid-template-columns: 300px 1fr auto; gap: 30px; align-items: start; }
.sprayfoam-trusted-media { border-radius: 14px; overflow: hidden; aspect-ratio: 4/2.6; max-width: 300px; }
.sprayfoam-trusted-copy p.sprayfoam-heading-left {
font-size: 20px;
  margin-bottom: 20px; color: var(--color-orange);
}
.sprayfoam-trusted-copy > p { font-family: var(--font-body); font-size: 12px; color: #666; line-height: 1.6; }
.sprayfoam-trusted-badges {
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  border-left: 2px solid var(--color-gray-200); padding-left: 36px;
}
.sprayfoam-oc-badge { width: 200px; height: auto; }
.sprayfoam-brand-logo { width: 180px; height: auto; }

/* ---------------------------- Recent Sprayfoam Insulation Projects ---------------------------- */
.sprayfoam-projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 50px; }
.sprayfoam-project-card { position: relative; aspect-ratio: 4/3.2; border-radius: 0; overflow: hidden; }
.sprayfoam-project-mark {
  position: absolute; left: 12px; bottom: 12px; width: 34px; height: 34px;
}
.sprayfoam-projects-cta { text-align: center; margin-top: 44px; }
.sprayfoam-projects-cta .btn { transform: skewX(-16deg); }
.sprayfoam-projects-cta .btn span { padding: 10px 30px; font-size: 13px; }

@media (max-width: 1180px) {
  .sprayfoam-process-row { flex-wrap: wrap; row-gap: 36px; }
  .sprayfoam-process-arrow { display: none; }
}
@media (max-width: 1024px) {
  .sprayfoam-benefits-grid { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
  .sprayfoam-benefit-item:nth-child(4) { border-left: none; }
  .sprayfoam-why-grid { grid-template-columns: 1fr; gap: 32px; }
  .sprayfoam-why-card { max-width: 460px; margin: 0 auto; }
  .sprayfoam-types-grid { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; width: 100vw; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); }
  .sprayfoam-types-col-right { text-align: left; }
  .sprayfoam-types-col-right .checklist li { flex-direction: row; text-align: left; }
  .sprayfoam-types-col-right .checklist li:last-child { white-space: normal; }
  .sprayfoam-trusted-grid { grid-template-columns: 1fr; }
  .sprayfoam-trusted-badges { flex-direction: row; justify-content: center; border-left: none; padding-left: 0; padding-top: 24px; border-top: 2px solid var(--color-gray-200); margin-top: 24px; }
  .sprayfoam-projects-grid { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
}
@media (max-width: 780px) {
  .sprayfoam-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .sprayfoam-benefit-item:nth-child(3) { border-left: none; }
  .sprayfoam-benefit-item { border-left: none !important; border-top: 2px solid var(--color-orange); padding: 20px 12px 0; }
  .sprayfoam-benefit-item:first-child, .sprayfoam-benefit-item:nth-child(2) { border-top: none; }
  .sprayfoam-process-step { width: 100%; max-width: 300px; }
}
@media (max-width: 600px) {
  .sprayfoam-benefits-grid { grid-template-columns: 1fr; }
  .sprayfoam-benefit-item { border-top: 2px solid var(--color-orange); padding: 20px 8px 0; }
  .sprayfoam-benefit-item:first-child { border-top: none; }
  .sprayfoam-projects-grid { grid-template-columns: 1fr; }
}

/* =======================================================================
   METAL CARPORTS PAGE (metal-carports.html)
   ======================================================================= */

/* ---------------------------- Hero ---------------------------- */
.hero-carports .hero-bg-photo {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.45) 48%, rgba(0,0,0,.08) 100%),
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 22%),
    url('assets/carports hero.png');
  background-size: cover;
  background-position: center;
}
.hero-carports h1 { white-space: nowrap; font-size: clamp(4rem, 9.5vw, 7rem); }
.hero-carports h1 span { display: inline; }
.hero-carports h1 span:not(.accent) { font-size: 1em; }
.hero-carports h1 span.accent { font-size: 1em; }
.hero-carports .hero-subtag {
  font-family: var(--font-body); font-weight: 800; font-size: 22px;
  color: #fff; max-width: 620px; margin: 4px 0 16px; line-height: 1.3;
}
.hero-carports p.lead { text-transform: none; font-weight: 400; font-size: 15.5px; max-width: 560px; }

/* ---------------------------- Shared carports-page section headings ---------------------------- */
.carports-heading {
  font-family: var(--font-btn);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--color-near-black);
  text-align: center;
  margin: 0 auto 50px;
}
.carports-heading .accent { color: var(--color-orange); }
.carports-heading-left {
  font-family: var(--font-btn);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.25;
  color: var(--color-near-black);
  margin: 0 0 18px;
}
.carports-heading-left .accent { color: var(--color-orange); }

/* ---------------------------- Custom Metal Carports Built Your Way ---------------------------- */
.carports-intro-grid { display: grid; grid-template-columns: .9fr 1fr 1fr; gap: 70px; align-items: start; }
.carports-intro-copy .carports-heading-left { font-size: clamp(1.2rem, 2vw, 1.5rem); white-space: nowrap; }
.carports-intro-copy > p { font-family: var(--font-body); font-size: 11px; font-weight: 700; color: var(--color-near-black); line-height: 1.3; }
.carports-intro-photo { position: relative; }
.carports-intro-copy + .carports-intro-photo {
  margin-left: 50px;
  margin-right: -70px;
}
.carports-intro-media { position: relative; aspect-ratio: 4/2.15; border-radius: 10px; overflow: hidden; max-width: 80%; }
.carports-watermark { position: absolute; left: 14px; bottom: 12px; width: 84px; height: auto; opacity: .92; }
.carports-slope-tag {
  display: inline-block;
  background: var(--color-orange); color: #fff;
  font-family: var(--font-cta); font-weight: 700; font-size: 12.5px;
  text-transform: uppercase; letter-spacing: .02em;
  padding: 7px 22px;
  position: absolute; left: 50%; bottom: -14px;
  transform: translateX(-50%) skewX(-16deg);
}
.carports-slope-tag span { display: inline-block; transform: skewX(16deg); }

/* ---------------------------- Why Choose Our Metal Carports ---------------------------- */
.carports-why { background: var(--color-near-black); padding: 60px 0; }
.carports-why .carports-heading { color: #fff; }
.carports-why-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.carports-why-item { text-align: center; padding: 0 16px; border-left: 2px solid var(--color-orange); }
.carports-why-item:first-child { border-left: none; }
.carports-why-icon { width: 50px; height: 50px; margin: 0 auto 18px; display: block; }
.carports-why-icon img { width: 100%; height: 100%; object-fit: contain; }
.carports-why-item h4 {
  font-family: var(--font-gotham-semibold); font-weight: 700; font-size: 12.5px;
  text-transform: uppercase; letter-spacing: .02em; color: #fff; margin-bottom: 8px;
}
.carports-why-item p { font-family: var(--font-body); font-size: 12px; color: rgba(255,255,255,.65); line-height: 1.5; }

/* ---------------------------- Built With Quality Materials ---------------------------- */
.carports-materials-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.carports-material-card {
  border-radius: 10px; overflow: hidden; border: 1px solid var(--color-gray-200);
  background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.05);
}
.carports-material-media { aspect-ratio: 4/3.2; }
.carports-material-body { padding: 16px 14px 20px; text-align: center; }
.carports-material-body h4 {
  font-family: var(--font-gotham-semibold); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .01em; color: var(--color-orange); margin-bottom: 8px;
}
.carports-material-body h4 span { display: block; color: var(--color-orange); font-size: 11px; margin-top: 3px; font-weight: 600; }
.carports-material-body p { font-family: var(--font-body); font-size: 11.5px; color: #666; line-height: 1.5; }

/* ---------------------------- Popular Uses ---------------------------- */
.carports-uses-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.carports-use-media { aspect-ratio: 4/3; border-radius: 0; margin-bottom: 0; }
.carports-use-card { text-align: center; }
.carports-use-card span {
  display: block;
  width: 100%;
  background: var(--color-gray-100);
  padding: 10px 8px;
  font-family: var(--font-gotham-semibold); font-weight: 700; font-size: 12.5px;
  text-transform: uppercase; letter-spacing: .02em; color: var(--color-near-black);
}

/* ---------------------------- Custom Sizes Built For You ---------------------------- */
.carports-sizes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.carports-sizes-left { display: flex; flex-direction: column; gap: 30px; }
.carports-sizes-title-row { display: flex; align-items: center; gap: 20px; margin-bottom: 18px; }
.carports-sizes-icon { width: 76px; height: 76px; display: block; flex-shrink: 0; margin: 0; }
.carports-sizes-icon svg { width: 100%; height: 100%; fill: none; stroke: var(--color-orange); stroke-width: 1.7; }
.carports-sizes-icon img { width: 100%; height: 100%; object-fit: contain; }
.carports-sizes-heading { font-size: 30px); text-align: left; margin: 0; }
.carports-sizes-copy > p { font-family: var(--font-body); font-size: 13.5px; color: var(--color-near-black); line-height: 1.6; margin-bottom: 22px; }
.carports-sizes-copy .checklist li { font-weight: 700; font-size: 13px; }
.carports-sizes-video {
  position: relative; border-radius: 14px; overflow: hidden; background: #111;
  display: flex; align-items: center; justify-content: center;
  max-width: none; margin: 0;
}
.carports-video-landscape { aspect-ratio: 16/10; }
.carports-video-portrait { aspect-ratio: auto; height: calc(100% -0px); }
.carports-sizes-video .carports-watermark { width: 96px; }
.carports-play-btn {
  position: relative; z-index: 1;
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(255,255,255,.28); border: 2px solid rgba(255,255,255,.85);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 20px; padding-left: 4px;
}
.carports-sizes-video .carports-slope-tag { position: absolute; left: auto; right: 16px; bottom: 14px; transform: skewX(-16deg); z-index: 2; }

@media (max-width: 1180px) {
  .carports-intro-grid { grid-template-columns: 1fr; }
  .carports-intro-photo { max-width: 460px; }
  .carports-materials-grid { grid-template-columns: repeat(3, 1fr); row-gap: 26px; }
  .carports-uses-grid { grid-template-columns: repeat(3, 1fr); row-gap: 26px; }
}
@media (max-width: 1024px) {
  .carports-why-grid { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .carports-why-item:nth-child(4) { border-left: none; }
  .carports-sizes-grid { grid-template-columns: 1fr; }
  .carports-video-portrait { aspect-ratio: 16/10; height: auto; }
}
@media (max-width: 780px) {
  .hero-carports h1 { white-space: normal; }
  .carports-why-grid { grid-template-columns: repeat(2, 1fr); }
  .carports-why-item:nth-child(3) { border-left: none; }
  .carports-why-item { border-left: none !important; border-top: 2px solid var(--color-orange); padding: 20px 12px 0; }
  .carports-why-item:first-child, .carports-why-item:nth-child(2) { border-top: none; }
  .carports-materials-grid { grid-template-columns: repeat(2, 1fr); }
  .carports-uses-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .carports-why-grid { grid-template-columns: 1fr; }
  .carports-why-item { border-top: 2px solid var(--color-orange); padding: 20px 8px 0; }
  .carports-why-item:first-child { border-top: none; }
  .carports-materials-grid { grid-template-columns: 1fr; }
  .carports-uses-grid { grid-template-columns: 1fr; }
}

/* =======================================================================
   SEAMLESS GUTTERS PAGE (seamless-gutters.html)
   ======================================================================= */

/* ---------------------------- Hero ---------------------------- */
.hero-gutters .hero-bg-photo {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.45) 48%, rgba(0,0,0,.08) 100%),
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 22%),
    url('assets/gutters hero.png');
  background-size: cover;
  background-position: center;
}
.hero-gutters h1 { display: flex; flex-wrap: wrap; column-gap: 0; }
.hero-gutters h1 span { display: inline; }
.hero-gutters h1 span:not(.accent) { font-size: 1em; }
.hero-gutters h1 span.accent { font-size: 1em; }
.hero-gutters .hero-tagline {
  font-family: var(--font-body); font-weight: 700; font-size: 16px; letter-spacing: .02em;
  text-transform: uppercase; color: #fff; max-width: 620px; margin: 4px 0 16px; line-height: 1.35;
}
.hero-gutters p.lead { text-transform: none; font-weight: 400; font-size: 15.5px; max-width: 580px; }

/* ---------------------------- Shared gutters-page section headings ---------------------------- */
.gutters-heading {
  font-family: var(--font-btn);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--color-near-black);
  text-align: center;
  margin: 0 auto 50px;
}
.gutters-heading .accent { color: var(--color-orange); }
.gutters-heading-left {
  font-family: var(--font-btn);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.25;
  color: var(--color-near-black);
  margin: 0 0 14px;
}
.gutters-heading-left .accent { color: var(--color-orange); }

/* ---------------------------- Seamless Gutters Made For South Texas ---------------------------- */
.gutters-benefits-row { display: flex; align-items: center; gap: 36px; }
.gutters-benefits-top { max-width: 300px; flex: 0 0 300px; margin-bottom: 0; }
.gutters-benefits-top .gutters-heading-left { font-size: clamp(1.1rem, 1.7vw, 1.35rem); margin-bottom: 10px; }
.gutters-benefits-top > p:not(.gutters-heading-left) { font-family: var(--font-body); font-size: 12px; color: #666; line-height: 1.55; }
.gutters-benefits-grid { display: grid; grid-template-columns: repeat(5, 1fr); flex: 1 1 auto; gap: 0 6px; }
.gutters-benefit-item { text-align: center; padding: 0 10px; border-left: 2px solid var(--color-gray-200); }
.gutters-benefit-item:first-child { border-left: none; }
.gutters-benefit-icon { width: 40px; height: 40px; margin: 0 auto 12px; display: block; }
.gutters-benefit-icon svg { width: 100%; height: 100%; fill: none; stroke: var(--color-orange); stroke-width: 1.7; }
.gutters-benefit-icon img { width: 100%; height: 100%; object-fit: contain; }
.gutters-benefit-item h4 {
  font-family: var(--font-gotham-semibold); font-weight: 700; font-size: 10.5px;
  text-transform: uppercase; letter-spacing: .02em; color: var(--color-near-black); margin-bottom: 6px;
}
.gutters-benefit-item p { font-family: var(--font-body); font-size: 10px; color: #666; line-height: 1.4; }

/* ---------------------------- 6" Seamless Gutters + Gutter Color Options ---------------------------- */
.gutters-sizes-outer { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: start; }
.gutters-sizes-title {
  font-family: var(--font-btn); font-weight: 800; font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  text-transform: uppercase; letter-spacing: .01em; color: var(--color-near-black); margin-bottom: 22px;
}
.gutters-sizes-title .accent { color: var(--color-orange); }
.gutters-sizes-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 26px; align-items: center; }
.gutters-sizes-media { aspect-ratio: 4/3.2; border-radius: 10px; }
.gutters-sizes-inner .checklist { gap: 11px; }
.gutters-sizes-inner .checklist li { font-weight: 700; font-size: 12.5px; }

.gutters-colors-right .gutters-sizes-title { margin-bottom: 8px; }
.gutters-colors-sub { font-family: var(--font-body); font-size: 13px; color: var(--color-near-black); margin-bottom: 22px; }
.gutters-colors-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px 12px; }
.gutters-color-swatch { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.gutters-swatch-circle { width: 44px; height: 44px; border-radius: 50%; display: block; box-shadow: 0 2px 6px rgba(0,0,0,.12); }
.gutters-color-swatch span:last-child {
  font-family: var(--font-gotham-semibold); font-weight: 700; font-size: 10px;
  text-transform: uppercase; letter-spacing: .02em; color: var(--color-near-black); text-align: center; line-height: 1.3;
}
.gutters-colors-more { font-family: 'Arizona DB', 'Brush Script MT', cursive; font-size: 18px; color: #ff6d00; margin-top: 18px; text-align: right; }

/* ---------------------------- Our Seamless Gutter Installation Process ---------------------------- */
.gutters-process-row { display: flex; align-items: flex-start; justify-content: center; gap: 2px; margin-top: 50px; }
.gutters-process-step { display: flex; flex-direction: column; align-items: center; text-align: center; width: 160px; flex-shrink: 0; }
.gutters-process-badge { position: relative; width: 56px; height: 56px; margin: 0 auto 20px; }
.gutters-process-icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--color-orange);
  display: flex; align-items: center; justify-content: center; padding-bottom: 6px;
}
.gutters-process-icon svg { width: 26px; height: 26px; fill: none; stroke: #fff; stroke-width: 2; }
.gutters-process-icon img { width: 26px; height: 26px; object-fit: contain; }
.gutters-process-step:first-child .gutters-process-icon img {
  width: 20px;
  height: 20px;
}
.gutters-process-num {
  position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 24px; border-radius: 50%; background: var(--color-near-black);
  color: #fff; border: 3px solid #fff;
  font-family: var(--font-cta); font-weight: 800; font-size: 11px;
  display: flex; align-items: center; justify-content: center;
}
.gutters-process-step h4 {
  font-family: var(--font-gotham-semibold); font-weight: 700; font-size: 12.5px;
  text-transform: uppercase; letter-spacing: .02em; color: var(--color-near-black); margin-bottom: 6px;
}
.gutters-process-step p { font-family: var(--font-body); font-size: 11.5px; color: #666; line-height: 1.5; padding: 0 4px; }
.gutters-process-arrow {
  align-self: flex-start; margin-top: 16px; font-size: 20px; font-weight: 700;
  color: var(--color-near-black); opacity: .35; font-family: var(--font-cta);
}

/* ---------------------------- Seamless Gutter Projects ---------------------------- */
.gutters-projects-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 50px; }
.gutters-project-card { position: relative; aspect-ratio: 1/1; border-radius: 8px; overflow: hidden; }
.gutters-projects-cta { text-align: center; margin-top: 44px; }
.gutters-projects-cta .btn { transform: skewX(-16deg); }
.gutters-projects-cta .btn span { padding: 10px 30px; font-size: 13px; }

@media (max-width: 1180px) {
  .gutters-process-row { flex-wrap: wrap; row-gap: 36px; }
  .gutters-process-arrow { display: none; }
}
@media (max-width: 1024px) {
  .gutters-benefits-row { flex-direction: column; align-items: stretch; gap: 32px; }
  .gutters-benefits-top { max-width: 560px; flex: 0 0 auto; }
  .gutters-benefits-top .gutters-heading-left { font-size: clamp(1.5rem, 2.6vw, 2rem); }
  .gutters-benefits-top > p:not(.gutters-heading-left) { font-size: 13.5px; }
  .gutters-benefits-grid { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .gutters-benefit-item:nth-child(4) { border-left: none; }
  .gutters-benefit-icon { width: 70px; height: 70px; margin: 0 auto 18px; }
  .gutters-benefit-item h4 { font-size: 12.5px; }
  .gutters-benefit-item p { font-size: 11.5px; }
  .gutters-sizes-outer { grid-template-columns: 1fr; gap: 44px; }
  .gutters-colors-more { text-align: left; }
  .gutters-projects-grid { grid-template-columns: repeat(3, 1fr); row-gap: 18px; }
}
@media (max-width: 780px) {
  .gutters-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .gutters-benefit-item:nth-child(3) { border-left: none; }
  .gutters-benefit-item { border-left: none !important; border-top: 1px solid var(--color-gray-200); padding: 20px 12px 0; }
  .gutters-benefit-item:first-child, .gutters-benefit-item:nth-child(2) { border-top: none; }
  .gutters-sizes-inner { grid-template-columns: 1fr; }
  .gutters-process-step { width: 100%; max-width: 300px; }
  .gutters-projects-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .gutters-benefits-grid { grid-template-columns: 1fr; }
  .gutters-benefit-item { border-top: 1px solid var(--color-gray-200); padding: 20px 8px 0; }
  .gutters-benefit-item:first-child { border-top: none; }
  .gutters-colors-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =======================================================================
   METAL ROOFING PAGE (metal-roofing.html)
   ======================================================================= */

/* ---------------------------- Hero ---------------------------- */
.hero-roofing .hero-bg-photo {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.45) 48%, rgba(0,0,0,.08) 100%),
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 22%);
  background-color: var(--color-near-black);
  background-size: cover;
  background-position: center;
}
.hero-roofing h1 { display: flex; flex-wrap: wrap; column-gap: 0; }
.hero-roofing h1 span { display: inline; }
.hero-roofing h1 span:not(.accent) { font-size: 1em; }
.hero-roofing h1 span.accent { font-size: 1em; }
.hero-roofing .hero-tagline {
  font-family: var(--font-body); font-weight: 700; font-size: 16px; letter-spacing: .02em;
  text-transform: uppercase; color: #fff; max-width: 620px; margin: 4px 0 16px; line-height: 1.35;
}
.hero-roofing p.lead { text-transform: none; font-weight: 400; font-size: 15.5px; max-width: 580px; }

/* ---------------------------- Shared roofing-page section headings ---------------------------- */
.roofing-heading {
  font-family: var(--font-btn);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--color-near-black);
  text-align: center;
  margin: 0 auto 50px;
}
.roofing-heading .accent { color: var(--color-orange); }
.roofing-systems .section-head .lens-divider,
.roofing-projects .section-head .lens-divider { margin-top: 6px; }
.roofing-heading-left {
  font-family: var(--font-btn);
  font-weight: 800;
  font-size: clamp(1.28rem, 2.24vw, 1.68rem);
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.15;
  color: var(--color-near-black);
  margin: 0 0 16px;
}
.roofing-heading-left .accent { color: var(--color-orange); }

/* ---------------------------- Premium Metal Roofing Built For South Texas ---------------------------- */
.roofing-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.roofing-intro-copy > p:not(.roofing-heading-left) { font-family: var(--font-body); font-size: 13.5px; color: #666; line-height: 1.6; margin-bottom: 26px; }
.roofing-intro-media { aspect-ratio: 16/10; border-radius: 12px; }
.roofing-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 30px; }
.roofing-feature { display: flex; align-items: center; gap: 12px; font-family: var(--font-gotham-semibold); font-weight: 700; font-size: 13px; color: var(--color-near-black); }
.roofing-feature-icon { width: 26px; height: 26px; flex-shrink: 0; }
.roofing-feature-icon svg { width: 100%; height: 100%; fill: none; stroke: var(--color-orange); stroke-width: 2; }

/* ---------------------------- Metal Roofing Systems We Offer ---------------------------- */
.roofing-systems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.roofing-system-card {
  border-radius: 10px; overflow: hidden; background: #fff;
  border: 1px solid var(--color-gray-200); box-shadow: 0 8px 24px rgba(0,0,0,.05);
}
.roofing-system-media { aspect-ratio: 4/3; }
.roofing-system-body { padding: 22px 22px 26px; }
.roofing-system-body h3 {
  font-family: var(--font-gotham-semibold); font-weight: 700; font-size: 16px;
  text-transform: uppercase; letter-spacing: .01em; color: var(--color-orange); margin-bottom: 10px;
}
.roofing-system-body > p { font-family: var(--font-body); font-size: 12.5px; color: #666; line-height: 1.55; margin-bottom: 16px; }
.roofing-system-body .checklist li { font-weight: 700; font-size: 12.5px; }

/* ---------------------------- The Benefits Of Metal Roofing (dark band) ---------------------------- */
.roofing-benefits { background: var(--color-near-black); padding: 50px 0; }
.roofing-benefits-row { display: flex; align-items: center; gap: 50px; }
.roofing-benefits-copy { flex: 0 0 300px; }
.roofing-benefits-heading {
  font-family: var(--font-btn); font-weight: 800; font-size: clamp(1.28rem, 2.24vw, 1.68rem);
  text-transform: uppercase; letter-spacing: .01em; color: #fff; line-height: 1.15; margin-bottom: 12px;
}
.roofing-benefits-heading .accent { color: var(--color-orange); }
.roofing-benefits-copy > p:not(.roofing-benefits-heading) { font-family: var(--font-body); font-size: 12.5px; color: rgba(255,255,255,.65); line-height: 1.6; }
.roofing-benefits-icons { display: flex; flex: 1; gap: 0; }
.roofing-benefit-item { flex: 1; text-align: center; padding: 0 18px; border-left: 1px solid rgba(255,255,255,.15); }
.roofing-benefit-item:first-child { border-left: none; }
.roofing-benefit-icon { width: 42px; height: 42px; margin: 0 auto 14px; display: block; }
.roofing-benefit-icon svg { width: 100%; height: 100%; fill: none; stroke: var(--color-orange); stroke-width: 1.7; }
.roofing-benefit-item h4 {
  font-family: var(--font-gotham-semibold); font-weight: 700; font-size: 11.5px;
  text-transform: uppercase; letter-spacing: .02em; color: #fff; margin-bottom: 8px;
}
.roofing-benefit-item p { font-family: var(--font-body); font-size: 11px; color: rgba(255,255,255,.6); line-height: 1.5; }

/* ---------------------------- Our Metal Roofing Process ---------------------------- */
.roofing-process-row { display: flex; align-items: flex-start; justify-content: center; gap: 2px; margin-top: 50px; }
.roofing-process-step { display: flex; flex-direction: column; align-items: center; text-align: center; width: 150px; flex-shrink: 0; }
.roofing-process-badge { position: relative; width: 54px; height: 54px; margin: 0 auto 20px; }
.roofing-process-icon {
  width: 54px; height: 54px; border-radius: 50%; background: var(--color-orange);
  display: flex; align-items: center; justify-content: center; padding-bottom: 6px;
}
.roofing-process-icon svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 2; }
.roofing-process-icon img { width: 24px; height: 24px; }
.roofing-process-step:first-child .roofing-process-icon img { width: 18px; height: 18px; }
.roofing-process-step:nth-of-type(5) .roofing-process-icon img { width: 30px; height: 30px; }
.roofing-process-num {
  position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%);
  width: 23px; height: 23px; border-radius: 50%; background: var(--color-near-black);
  color: #fff; border: 3px solid #fff;
  font-family: var(--font-cta); font-weight: 800; font-size: 11px;
  display: flex; align-items: center; justify-content: center;
}
.roofing-process-step h4 {
  font-family: var(--font-gotham-semibold); font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: .02em; color: var(--color-near-black); margin-bottom: 6px;
}
.roofing-process-step p { font-family: var(--font-body); font-size: 11px; color: #666; line-height: 1.5; padding: 0 4px; }
.roofing-process-arrow {
  align-self: flex-start; margin-top: 15px; font-size: 18px; font-weight: 700;
  color: var(--color-near-black); opacity: .35; font-family: var(--font-cta);
}

/* ---------------------------- Metal Roofing Projects ---------------------------- */
.roofing-projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 50px; }
.roofing-project-card { position: relative; aspect-ratio: 4/3; border-radius: 10px; overflow: hidden; }
.roofing-projects-cta { text-align: center; margin-top: 44px; }
.roofing-projects-cta .btn { transform: skewX(-16deg); }
.roofing-projects-cta .btn span { padding: 10px 30px; font-size: 13px; }

/* ---------------------------- See The Actual Projects Come To Life! ---------------------------- */
.roofing-life-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; align-items: stretch; margin-top: 44px; }
.roofing-life-video { border-radius: 12px; overflow: hidden; background: #111; max-width: none; margin: 0; }
.roofing-life-portrait { aspect-ratio: 3/4; }
.roofing-life-landscape { aspect-ratio: 16/10; align-self: end; }

@media (max-width: 1180px) {
  .roofing-process-row { flex-wrap: wrap; row-gap: 36px; }
  .roofing-process-arrow { display: none; }
}
@media (max-width: 1024px) {
  .roofing-intro-grid { grid-template-columns: 1fr; }
  .roofing-intro-media { order: -1; }
  .roofing-systems-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; gap: 26px; }
  .roofing-benefits-row { flex-direction: column; align-items: flex-start; gap: 30px; }
  .roofing-benefits-copy { flex: none; }
  .roofing-benefits-icons { flex-wrap: wrap; width: 100%; }
  .roofing-benefit-item { flex: 1 1 30%; margin-bottom: 20px; }
  .roofing-projects-grid { grid-template-columns: 1fr; max-width: 460px; margin: 50px auto 0; }
  .roofing-life-grid { grid-template-columns: 1fr; }
  .roofing-life-landscape { align-self: stretch; }
}
@media (max-width: 780px) {
  .roofing-features-grid { grid-template-columns: 1fr; }
  .roofing-process-step { width: 100%; max-width: 300px; }
  .roofing-benefit-item { flex: 1 1 45%; border-left: none; }
}

/* =======================================================================
   RESIDENTIAL ROOFING PAGE (residential-roofing.html)
   ======================================================================= */

/* ---------------------------- Hero + Intro (combined dark band) ---------------------------- */
.hero-residential {
  min-height: 0;
  padding-bottom: 70px;
}
.hero-residential .hero-bg-photo {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.85) 55%, rgba(0,0,0,1) 100%),
    url('assets/residential hero 1.png');
  background-size: cover;
  background-position: center bottom;
}
.residential-hero-grid { display: grid; grid-template-columns: 1fr; gap: 50px; align-items: center; padding-top: 260px; }
.residential-hero-copy { max-width: 640px; }
.residential-hero-heading {
  font-family: var(--font-btn); font-weight: 800; font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  text-transform: uppercase; letter-spacing: .01em; color: #fff; line-height: 1.3; margin-bottom: 16px;
}
.residential-hero-heading .accent { color: var(--color-orange); }
.residential-hero-copy > p:not(.residential-hero-heading) { font-family: var(--font-body); font-size: 13.5px; color: rgba(255,255,255,.75); line-height: 1.6; }

/* ---------------------------- Shared residential-page section headings ---------------------------- */
.residential-heading {
  font-family: var(--font-btn);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--color-near-black);
  text-align: center;
  margin: 0 auto 50px;
}
.residential-heading .accent { color: var(--color-orange); }

/* ---------------------------- Why Choose Longhorn Roofing? ---------------------------- */
.residential-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.residential-why-item {
  text-align: center; padding: 26px 20px;
  border-right: 1px solid var(--color-gray-200);
  border-bottom: 1px solid var(--color-gray-200);
}
.residential-why-item:nth-child(3n) { border-right: none; }
.residential-why-item:nth-child(4), .residential-why-item:nth-child(5), .residential-why-item:nth-child(6) { border-bottom: none; }
.residential-why-icon { width: 50px; height: 50px; margin: 0 auto 18px; display: block; }
.residential-why-icon svg { width: 100%; height: 100%; fill: none; stroke: var(--color-orange); stroke-width: 1.7; }
.residential-why-icon img { width: 100%; height: 100%; object-fit: contain; }
.residential-why-item:nth-child(4) .residential-why-icon { width: 60px; height: 60px; }
.residential-why-item:nth-child(5) .residential-why-icon { width: 60px; height: 60px; }
.residential-why-item h4 {
  font-family: var(--font-gotham-semibold); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .02em; color: var(--color-near-black); margin-bottom: 8px;
}
.residential-why-item p { font-family: var(--font-body); font-size: 12px; color: #666; line-height: 1.55; max-width: 240px; margin: 0 auto; }

/* ---------------------------- Roofing Systems We Install ---------------------------- */
.residential-systems-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.residential-system-card {
  border-radius: 10px; overflow: hidden; background: #fff;
  border: 1px solid var(--color-gray-200); box-shadow: 0 8px 24px rgba(0,0,0,.05);
}
.residential-system-media { aspect-ratio: 4/3; }
.residential-system-body { padding: 18px 18px 22px; }
.residential-system-body h3 {
  font-family: var(--font-gotham-semibold); font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: .01em; color: var(--color-orange); margin-bottom: 8px;
  line-height: 1.3;
}
.residential-system-body > p { font-family: var(--font-body); font-size: 11.5px; color: #666; line-height: 1.5; margin-bottom: 14px; }
.residential-system-body .checklist { gap: 8px; }
.residential-system-body .checklist li { font-weight: 700; font-size: 11.5px; }

/* ---------------------------- Our 7 Step Roofing Process ---------------------------- */
.residential-process-row { display: flex; align-items: flex-start; justify-content: center; gap: 2px; margin-top: 50px; }
.residential-process-step { display: flex; flex-direction: column; align-items: center; text-align: center; width: 150px; flex-shrink: 0; }
.residential-process-badge { position: relative; width: 54px; height: 54px; margin: 0 auto 20px; }
.residential-process-icon {
  width: 54px; height: 54px; border-radius: 50%; background: var(--color-orange);
  display: flex; align-items: center; justify-content: center; padding-bottom: 6px;
}
.residential-process-icon svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 2; }
.residential-process-icon img { width: 22px; height: 22px; }
.residential-process-step:nth-of-type(5) .residential-process-icon img { width: 30px; height: 30px; }
.residential-process-num {
  position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%);
  width: 23px; height: 23px; border-radius: 50%; background: var(--color-near-black);
  color: #fff; border: 3px solid #fff;
  font-family: var(--font-cta); font-weight: 800; font-size: 11px;
  display: flex; align-items: center; justify-content: center;
}
.residential-process-step h4 {
  font-family: var(--font-gotham-semibold); font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: .02em; color: var(--color-near-black); margin-bottom: 6px;
}
.residential-process-step p { font-family: var(--font-body); font-size: 11px; color: #666; line-height: 1.5; padding: 0 4px; }
.residential-process-arrow {
  align-self: flex-start; margin-top: 15px; font-size: 18px; font-weight: 700;
  color: var(--color-near-black); opacity: .35; font-family: var(--font-cta);
}

/* ---------------------------- Residential Roofing Projects ---------------------------- */
.residential-projects-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 50px; }
.residential-project-card { position: relative; aspect-ratio: 1/1; border-radius: 8px; overflow: hidden; }
.residential-projects-cta { text-align: center; margin-top: 44px; }
.residential-projects-cta .btn { transform: skewX(-16deg); }
.residential-projects-cta .btn span { padding: 10px 30px; font-size: 13px; }
.residential-videos-section { background: var(--color-near-black); padding-top: 40px; padding-bottom: 40px; }
.residential-videos-heading { color: #fff; }
.residential-videos-intro { max-width: 640px; margin: 16px auto 0; color: rgba(255,255,255,.65); font-size: 14px; text-align: center; }
.residential-videos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.residential-videos-grid .video-frame { border-radius: 12px; overflow: hidden; max-width: none; margin: 0; aspect-ratio: 16/10; }
.residential-videos-tagline {
  text-align: center; margin-top: 34px; font-family: var(--font-btn); font-weight: 800;
  text-transform: uppercase; letter-spacing: .01em; font-size: clamp(1.3rem, 2.2vw, 1.8rem); color: #fff;
}

@media (max-width: 1180px) {
  .residential-process-row { flex-wrap: wrap; row-gap: 36px; }
  .residential-process-arrow { display: none; }
}
@media (max-width: 1024px) {
  .residential-hero-grid { grid-template-columns: 1fr; padding-top: 220px; }
  .residential-why-grid { grid-template-columns: repeat(2, 1fr); }
  .residential-why-item:nth-child(3n) { border-right: 1px solid var(--color-gray-200); }
  .residential-why-item:nth-child(2n) { border-right: none; }
  .residential-why-item:nth-child(4), .residential-why-item:nth-child(5), .residential-why-item:nth-child(6) { border-bottom: 1px solid var(--color-gray-200); }
  .residential-why-item:nth-child(5), .residential-why-item:nth-child(6) { border-bottom: none; }
  .residential-systems-grid { grid-template-columns: repeat(2, 1fr); }
  .residential-projects-grid { grid-template-columns: repeat(3, 1fr); row-gap: 18px; }
}
@media (max-width: 780px) {
  .residential-why-grid { grid-template-columns: 1fr; }
  .residential-why-item { border-right: none !important; border-bottom: 1px solid var(--color-gray-200) !important; }
  .residential-why-item:last-child { border-bottom: none !important; }
  .residential-systems-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .residential-process-step { width: 100%; max-width: 300px; }
  .residential-projects-grid { grid-template-columns: repeat(2, 1fr); }
  .residential-videos-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   COMMERCIAL ROOFING PAGE
   ============================================================ */
.hero-commercial { min-height: 0; padding: 260px 0 60px; }
.hero-commercial .hero-bg-photo {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.8) 100%),
    url('assets/hero_image.jpg');
  background-size: cover;
  background-position: center top;
}

.commercial-hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: start; }
.commercial-heading-left {
  font-family: var(--font-btn); font-weight: 800; text-transform: uppercase; letter-spacing: .01em;
  line-height: 1.25; margin: 0 0 16px;
}
.commercial-heading-left .accent { color: var(--color-orange); }
.commercial-hero-copy .commercial-heading-left { font-size: clamp(1.6rem, 2.8vw, 2.1rem); color: #fff; line-height: 1.2; margin-bottom: 22px; }
.commercial-hero-copy > p { font-family: var(--font-body); font-size: 13.5px; color: rgba(255,255,255,.75); line-height: 1.65; }
.commercial-hero-media { aspect-ratio: 4/2.4; border-radius: 12px; overflow: hidden; }

.commercial-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; margin-top: 60px; }
.commercial-why-media { aspect-ratio: 4/2.4; border-radius: 10px; overflow: hidden; }
.commercial-why-copy .commercial-heading-left { font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: #fff; margin-bottom: 26px; }
.commercial-why-checklist.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 30px; transform: translateY(35%); }
.commercial-why-checklist.checklist li { color: #fff; font-family: var(--font-gotham-semibold); font-size: 13px; align-items: flex-start; }
.commercial-why-checklist svg { width: 26px; height: 26px; flex-shrink: 0; color: var(--color-orange); }
.commercial-why-checklist img { width: 26px; height: 26px; flex-shrink: 0; }

/* Types of Commercial Roofs We Install */
.commercial-systems-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 50px; }
.commercial-system-media { aspect-ratio: 4/3; border-radius: 10px; overflow: hidden; margin-bottom: 16px; }
.commercial-system-card h3 {
  font-family: var(--font-gotham-semibold); font-weight: 700; font-size: 15px; color: var(--color-orange);
  text-transform: uppercase; letter-spacing: .01em; margin-bottom: 8px; line-height: 1.25;
}
.commercial-system-card p { font-family: var(--font-body); font-size: 13px; color: #666; line-height: 1.55; }

/* Why Replace Your Commercial Roof? */
.commercial-replace-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: start; margin-top: 50px; }
.commercial-replace-heading { text-align: left; margin-bottom: 24px; }
.commercial-replace-checklist.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; transform: translateY(35%); }
.commercial-replace-checklist.checklist li { font-size: 16px; }
.commercial-replace-checklist.checklist img { width: 24px; height: 24px; }
.commercial-replace-media { aspect-ratio: 4/2.6; border-radius: 10px; overflow: hidden; }

/* Why Businesses Trust Longhorn Roofing */
.commercial-trust-info-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; margin-top: 50px; }
.commercial-trust-heading { padding-bottom: 26px; transform: translateY(-30%); }
.commercial-trust-checklist.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; margin-top: 0; }
.commercial-trust-checklist.checklist li { font-size: 13.5px; }
.commercial-oc-badge-wrap { display: flex; align-items: center; justify-content: center; height: 100%; }
.commercial-oc-badge { max-width: 384px; width: 100%; height: auto; transform: translateY(45%); }

@media (max-width: 1024px) {
  .commercial-hero-grid { grid-template-columns: 1fr; }
  .hero-commercial { padding-top: 200px; }
  .commercial-hero-media { max-width: 100%; }
  .commercial-why-media { max-width: 100%; }
  .commercial-hero-media { order: -1; }
  .commercial-why-grid, .commercial-replace-grid, .commercial-trust-info-grid { grid-template-columns: 1fr; }
  .commercial-systems-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 780px) {
  .commercial-why-checklist.checklist, .commercial-replace-checklist.checklist, .commercial-trust-checklist.checklist { grid-template-columns: 1fr; }
  .commercial-systems-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}
