/* ============================================================
   TX Gutter Solutions — custom static rebuild
   Design system: ink #141C24 + coral #F25149
   Type: IBM Plex Sans (headings) / Golos Text (body)
   ============================================================ */

/* ---------- Self-hosted fonts (latin) ---------- */
@font-face{font-family:'Golos Text';font-style:normal;font-weight:400;font-display:swap;src:url(assets/fonts/golostext-400.woff2) format('woff2');}
@font-face{font-family:'Golos Text';font-style:normal;font-weight:500;font-display:swap;src:url(assets/fonts/golostext-500.woff2) format('woff2');}
@font-face{font-family:'IBM Plex Sans';font-style:normal;font-weight:500;font-display:swap;src:url(assets/fonts/ibmplexsans-500.woff2) format('woff2');}
@font-face{font-family:'IBM Plex Sans';font-style:normal;font-weight:600;font-display:swap;src:url(assets/fonts/ibmplexsans-600.woff2) format('woff2');}
@font-face{font-family:'IBM Plex Sans';font-style:normal;font-weight:700;font-display:swap;src:url(assets/fonts/ibmplexsans-700.woff2) format('woff2');}

/* ---------- Tokens ---------- */
:root {
  --ink: #141C24;
  --ink-deep: #07080F;
  --ink-soft: #1B242E;
  --ink-alt: #212445;
  --coral: #F25149;
  --coral-dark: #D83A32;
  /* Primary-CTA red — AA text contrast on white (~5.25:1); used by .btn--primary */
  --coral-cta: #C8352C;
  --coral-cta-dark: #A82A22;
  --orange: #FA8A4B;
  --peach: #FFBC7D;
  --paper: #FFFFFF;
  --mist: #F4F4F9;
  --mist-2: #EEEFF5;
  --line: #E7E7E9;
  --text: #3C424B;
  --muted: #6B7178;
  --heading: #141C24;
  --white-70: rgba(255, 255, 255, .70);
  --white-55: rgba(255, 255, 255, .55);
  --white-12: rgba(255, 255, 255, .12);
  --white-08: rgba(255, 255, 255, .08);

  --head: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --body: "Golos Text", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --container: 1200px;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 26px;
  --shadow-sm: 0 6px 20px rgba(20, 28, 36, .06);
  --shadow: 0 18px 50px rgba(20, 28, 36, .10);
  --shadow-lg: 0 30px 70px rgba(20, 28, 36, .16);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--head); color: var(--heading); font-weight: 700; line-height: 1.12; letter-spacing: -.02em; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--coral); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.container--wide { max-width: 1320px; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 72px 0; }
.section--mist { background: var(--mist); }
.section--ink { background: var(--ink); color: var(--white-70); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--head); font-weight: 700; font-size: 13px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--coral); display: inline-block; }
.eyebrow--center { justify-content: center; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 0; }
h2 { font-size: clamp(28px, 3.6vw, 44px); }
.lead { font-size: 18px; color: var(--muted); }
.section--ink .lead { color: var(--white-70); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--head); font-weight: 600; font-size: 15.5px; letter-spacing: .01em;
  padding: 15px 30px; border-radius: 7px; transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--coral-cta); color: #fff; box-shadow: 0 12px 26px rgba(200, 53, 44, .30); }
.btn--primary:hover { background: var(--coral-cta-dark); transform: translateY(-2px); }
.btn--outline { border: 1.5px solid rgba(255, 255, 255, .55); color: #fff; }
.btn--outline:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-deep); transform: translateY(-2px); }
.btn--pill { border-radius: 999px; }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--coral); color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 17px 36px; font-size: 16.5px; }
.btn--ghost { color: var(--coral); padding-inline: 0; }
.btn--ghost:hover { gap: 14px; }

/* ---------- Top bar ---------- */
.topbar { background: var(--ink-deep); color: var(--white-70); font-size: 13.5px; transition: max-height .35s var(--ease), opacity .3s, padding .35s; overflow: hidden; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; padding-block: 9px; }
.topbar a { color: var(--white-70); transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; align-items: center; gap: 26px; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar-item svg { width: 15px; height: 15px; color: var(--coral); }
.topbar-social { display: flex; align-items: center; gap: 14px; }
.topbar-social a { display: inline-flex; }
.topbar-social svg { width: 16px; height: 16px; }

/* ---------- Header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 1000; }
.navbar { background: var(--ink); border-bottom: 1px solid var(--white-08); transition: background .3s, box-shadow .3s; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 14px; }
.site-header.scrolled .topbar { max-height: 0; opacity: 0; padding-block: 0; }
.site-header.scrolled .navbar { box-shadow: 0 10px 30px rgba(0, 0, 0, .35); }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { width: 62px; height: 62px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-family: var(--head); font-weight: 500; font-size: 16px; color: rgba(255, 255, 255, .82);
  position: relative; padding: 6px 0; transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: var(--coral); }
.nav-links a.active::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: var(--coral); }
.nav-actions { display: flex; align-items: center; gap: 14px; }

/* Where We Serve — desktop dropdown */
.nav-dd { position: relative; display: flex; align-items: center; }
.nav-dd-trigger { display: inline-flex; align-items: center; gap: 5px; }
.nav-dd-trigger .dd-caret { width: 15px; height: 15px; opacity: .85; transition: transform .25s; }
.nav-dd:hover .dd-caret, .nav-dd:focus-within .dd-caret { transform: rotate(180deg); }
.nav-dd-menu {
  position: absolute; top: 100%; left: 50%; margin-top: 16px; transform: translateX(-50%) translateY(8px);
  min-width: 216px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 8px;
  box-shadow: 0 20px 54px rgba(20, 28, 36, .18); opacity: 0; visibility: hidden; z-index: 80;
  transition: opacity .2s ease, transform .2s ease;
}
.nav-dd-menu::before { content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.nav-dd:hover .nav-dd-menu, .nav-dd:focus-within .nav-dd-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dd-menu a { display: block; padding: 11px 16px; border-radius: 9px; color: var(--ink) !important; font-family: var(--head); font-weight: 500; font-size: 15px; }
.nav-dd-menu a::after { display: none; }
.nav-dd-menu a:hover { background: var(--mist); color: var(--coral) !important; }
.nav-dd-menu a.nav-dd-all { border-top: 1px solid var(--line); margin-top: 5px; padding-top: 13px; color: var(--coral) !important; font-weight: 600; }

/* Where We Serve — mobile accordion */
.mn-dd-trigger { display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; cursor: pointer; font-family: var(--head); font-weight: 500; color: #fff; font-size: 20px; padding: 15px 0; border: 0; border-bottom: 1px solid var(--white-08); }
.mn-dd-trigger .dd-caret { width: 20px; height: 20px; color: var(--white-70); transition: transform .25s; flex: 0 0 auto; }
.mn-dd-trigger[aria-expanded="true"] .dd-caret { transform: rotate(180deg); }
.mn-sub { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.mn-sub.open { max-height: 340px; }
.mn-sublink { display: block; font-family: var(--head); font-weight: 500; color: var(--white-70); font-size: 17px; padding: 13px 0 13px 20px; border-bottom: 1px solid var(--white-08); }
.mn-sublink:hover { color: #fff; }
.mn-sublink:last-child { color: var(--coral); }

.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 8px; color: #fff; align-items: center; justify-content: center; }
.menu-toggle svg { width: 26px; height: 26px; }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px); background: var(--ink); z-index: 1200;
  transform: translateX(100%); transition: transform .38s var(--ease); padding: 26px 26px 40px; display: flex; flex-direction: column;
  box-shadow: -20px 0 60px rgba(0, 0, 0, .5);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav .mn-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.mobile-nav .mn-close { color: #fff; width: 44px; height: 44px; }
.mobile-nav .mn-close svg { width: 26px; height: 26px; }
.mobile-nav a.mn-link { font-family: var(--head); font-weight: 500; color: #fff; font-size: 20px; padding: 15px 0; border-bottom: 1px solid var(--white-08); }
.mobile-nav a.mn-link.active { color: var(--coral); }
.mobile-nav .mn-cta { margin-top: 24px; }
.mobile-nav .mn-contact { margin-top: auto; padding-top: 22px; color: var(--white-70); font-size: 14px; display: grid; gap: 10px; }
.mobile-nav .mn-contact a { display: inline-flex; gap: 8px; align-items: center; }
.mobile-nav .mn-contact svg { width: 15px; height: 15px; color: var(--coral); }
.nav-overlay { position: fixed; inset: 0; background: rgba(7, 8, 15, .55); opacity: 0; visibility: hidden; transition: .3s; z-index: 1150; }
.nav-overlay.open { opacity: 1; visibility: visible; }

/* ---------- Hero (home) ---------- */
.hero-home {
  position: relative; color: #fff; background: var(--ink);
  min-height: 86vh; display: flex; align-items: center;
  padding: 120px 0 130px;
}
.hero-home .hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-home .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-home::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(7, 8, 15, .92) 0%, rgba(7, 8, 15, .78) 42%, rgba(7, 8, 15, .45) 100%);
}
.hero-home .container { position: relative; z-index: 2; }
.hero-home h1 { color: #fff; font-size: clamp(40px, 6.4vw, 82px); line-height: 1.02; max-width: 15ch; }
.hero-home p { font-size: clamp(17px, 2vw, 21px); color: var(--white-70); max-width: 46ch; margin: 24px 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* ---------- Hero (interior, diagonal) ---------- */
.hero-page {
  position: relative; color: #fff; background: var(--ink);
  padding: 150px 0 170px; overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 92%);
}
.hero-page .hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-page .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-page::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(7, 8, 15, .90) 0%, rgba(7, 8, 15, .72) 50%, rgba(7, 8, 15, .40) 100%);
}
.hero-page .container { position: relative; z-index: 2; }
.hero-page h1 { color: #fff; font-size: clamp(34px, 5.4vw, 66px); max-width: 18ch; }
.hero-page p { color: var(--white-70); font-size: clamp(16px, 1.8vw, 20px); margin-top: 20px; max-width: 46ch; }
.hero-page .eyebrow { color: var(--coral); }

/* ---------- Split section ---------- */
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3.1; object-fit: cover; }
.split-media--round img { border-radius: 50% / 46%; aspect-ratio: 1/1; }
.split-text h2 { margin-bottom: 20px; }
.split-text p + p { margin-top: 16px; }
.split-text .btn { margin-top: 30px; }
.split-badge {
  position: absolute; left: 18px; bottom: 18px; background: var(--coral); color: #fff;
  border-radius: 12px; padding: 12px 18px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px;
}
.split-badge svg { width: 30px; height: 30px; }
.split-badge .sb-label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; opacity: .85; }
.split-badge .sb-num { font-family: var(--head); font-weight: 700; font-size: 19px; line-height: 1; }

/* checklist */
.checklist { display: grid; gap: 14px; margin-top: 26px; }
.checklist.cols-2 { grid-template-columns: 1fr 1fr; gap: 14px 26px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; font-weight: 500; color: var(--text); }
.section--ink .checklist li { color: var(--white-70); }
.checklist .ck { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: var(--coral); color: #fff; display: grid; place-items: center; margin-top: 1px; }
.checklist .ck svg { width: 15px; height: 15px; }

/* mini feature badges (about who) */
.feat-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 26px; }
.feat-badge { display: flex; align-items: center; gap: 12px; background: var(--mist); border-radius: 12px; padding: 14px 18px; font-family: var(--head); font-weight: 600; font-size: 15px; color: var(--ink); line-height: 1.25; }
.feat-badge .fb-ic { width: 42px; height: 42px; border-radius: 10px; background: var(--coral); color: #fff; display: grid; place-items: center; flex: 0 0 auto; }
.feat-badge .fb-ic svg { width: 22px; height: 22px; }

/* ---------- Feature band (3-up dark) ---------- */
.feature-band { background: var(--ink); border-radius: var(--radius); padding: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: -70px; position: relative; z-index: 5; box-shadow: var(--shadow-lg); }
.feature-band.no-lift { margin-top: 0; }
.fb-item { display: flex; gap: 16px; align-items: flex-start; }
.fb-item .fb-icon { flex: 0 0 auto; width: 54px; height: 54px; border-radius: 12px; border: 1.5px solid var(--coral); color: var(--coral); display: grid; place-items: center; }
.fb-item .fb-icon svg { width: 28px; height: 28px; }
.fb-item h3 { color: #fff; font-size: 18px; margin-bottom: 5px; }
.fb-item p { color: var(--white-55); font-size: 14.5px; line-height: 1.55; }
.fb-item + .fb-item { border-left: 1px solid var(--white-08); padding-left: 20px; }

/* ---------- Service cards ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s; display: flex; flex-direction: column; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc-media { position: relative; overflow: visible; }
.svc-media img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .5s var(--ease); border-radius: var(--radius) var(--radius) 0 0; }
.svc-card:hover .svc-media img { transform: scale(1.04); }
.svc-ic { position: absolute; z-index: 4; right: 16px; bottom: -24px; width: 54px; height: 54px; border-radius: 50%; background: #fff; color: var(--ink); display: grid; place-items: center; box-shadow: 0 8px 22px rgba(20,28,36,.18); border: 1px solid var(--line); }
.svc-card:hover .svc-ic { background: var(--coral); color: #fff; border-color: var(--coral); }
.svc-ic svg { width: 24px; height: 24px; }
.svc-body { padding: 34px 26px 30px; flex: 1 1 auto; }
.svc-body h3 { font-size: 20px; margin-bottom: 10px; }
.svc-body p { font-size: 15px; color: var(--muted); line-height: 1.6; }
/* variant: text on top, media below (services page) */
.svc-card--textfirst { flex-direction: column; }
.svc-card--textfirst .svc-body { order: 0; padding-bottom: 16px; flex: 0 0 auto; }
.svc-card--textfirst .svc-media { order: 1; margin-top: auto; }
.svc-card--textfirst .svc-media img { border-radius: 0 0 var(--radius) var(--radius); }
.svc-card--textfirst .svc-ic { bottom: 16px; top: auto; }

/* ---------- Trusted / why-choose (dark, numbered) ---------- */
.trusted-media { position: relative; }
.trusted-media img { width: 100%; border-radius: var(--radius); object-fit: cover; aspect-ratio: 4/3.4; box-shadow: var(--shadow); }
.support-badge { position: absolute; left: 16px; bottom: 16px; background: var(--coral); color: #fff; border-radius: 12px; padding: 12px 18px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow); }
.support-badge svg { width: 30px; height: 30px; }
.support-badge .sb-label { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; opacity: .9; }
.support-badge .sb-num { font-family: var(--head); font-weight: 700; font-size: 18px; line-height: 1.1; }
.num-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 30px; margin-top: 30px; }
.num-item { display: flex; gap: 15px; align-items: flex-start; }
.num-item .num { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; background: var(--coral); color: #fff; font-family: var(--head); font-weight: 700; display: grid; place-items: center; font-size: 15px; }
.num-item h3 { font-size: 17px; color: #fff; margin-bottom: 5px; }
.num-item p { font-size: 14px; color: var(--white-55); line-height: 1.55; }

/* stacked value cards (about) */
.value-stack { display: grid; gap: 16px; }
.value-card { display: flex; gap: 16px; align-items: flex-start; background: var(--ink); border: 1px solid var(--white-08); border-radius: 14px; padding: 22px 24px; }
.value-card.is-accent { background: var(--coral); border-color: var(--coral); }
.value-card .vc-ic { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 10px; background: var(--white-12); color: #fff; display: grid; place-items: center; }
.value-card.is-accent .vc-ic { background: rgba(255, 255, 255, .2); }
.value-card .vc-ic svg { width: 24px; height: 24px; }
.value-card h3 { color: #fff; font-size: 18px; margin-bottom: 6px; }
.value-card p { color: var(--white-70); font-size: 14.5px; line-height: 1.55; }
.value-card.is-accent p { color: rgba(255, 255, 255, .92); }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 44px; }
.proc-circle { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 999px; aspect-ratio: 1/1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 26px; transition: transform .3s var(--ease), box-shadow .3s; position: relative; }
.proc-circle:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.proc-circle.is-dark { background: var(--ink); border-color: var(--ink); }
.proc-num { position: absolute; top: 14px; right: 22px; font-family: var(--head); font-weight: 800; font-size: 15px; color: #fff; background: var(--coral); width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; }
.proc-ic { width: 52px; height: 52px; color: var(--coral); margin-bottom: 14px; }
.proc-circle.is-dark .proc-ic { color: #fff; }
.proc-ic svg { width: 100%; height: 100%; }
.proc-circle h3 { font-size: 17px; margin-bottom: 6px; }
.proc-circle.is-dark h3 { color: #fff; }
.proc-circle p { font-size: 13px; color: var(--muted); line-height: 1.5; }
.proc-circle.is-dark p { color: var(--white-55); }
/* card variant (about) */
.proc-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px 24px; text-align: center; position: relative; transition: transform .3s var(--ease), box-shadow .3s; }
.proc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.proc-card.is-dark { background: var(--ink); border-color: var(--ink); }
.proc-card.is-dark h3 { color: #fff; }
.proc-card .proc-ic { margin: 8px auto 14px; }

/* ---------- CTA banner ---------- */
.cta-banner { position: relative; color: #fff; text-align: center; padding: 92px 0; overflow: hidden; }
.cta-banner .cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-banner .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(rgba(7, 8, 15, .82), rgba(7, 8, 15, .86)); }
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { color: #fff; font-size: clamp(28px, 4vw, 46px); max-width: 20ch; margin: 0 auto 16px; }
.cta-banner p { color: var(--white-70); max-width: 52ch; margin: 0 auto 30px; font-size: 18px; }

/* ---------- Testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tst-card { background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; position: relative; }
.tst-stars { display: flex; gap: 3px; color: var(--coral); margin-bottom: 16px; }
.tst-stars svg { width: 19px; height: 19px; }
.tst-quote { font-size: 15.5px; color: var(--text); font-style: italic; line-height: 1.7; }
.tst-foot { margin-top: 22px; display: flex; align-items: center; justify-content: space-between; }
.tst-name { font-family: var(--head); font-weight: 700; color: var(--ink); }
.tst-role { font-size: 13px; color: var(--muted); }
.tst-mark { position: absolute; right: 26px; bottom: 20px; font-family: Georgia, serif; font-size: 74px; line-height: 1; color: var(--coral); opacity: .35; }
.section--ink .tst-card { background: var(--ink-soft); border-color: var(--white-08); }
.section--ink .tst-quote { color: var(--white-70); }
.section--ink .tst-name { color: #fff; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 840px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; background: #fff; margin-bottom: 14px; overflow: hidden; transition: box-shadow .25s, border-color .25s; }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: transparent; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 24px; font-family: var(--head); font-weight: 600; font-size: 17px; color: var(--ink); cursor: pointer; list-style: none; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q .faq-ic { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: var(--mist); color: var(--coral); display: grid; place-items: center; transition: transform .3s var(--ease), background .25s, color .25s; }
.faq-item[open] .faq-q .faq-ic { background: var(--coral); color: #fff; transform: rotate(45deg); }
.faq-q .faq-ic svg { width: 17px; height: 17px; }
.faq-a { padding: 0 24px 22px; color: var(--muted); font-size: 15.5px; line-height: 1.7; }

/* ---------- Lighting: type cards ---------- */
.light-types { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.lt-card { border-radius: var(--radius); overflow: hidden; position: relative; }
.lt-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); }
.lt-label { display: flex; align-items: center; gap: 10px; justify-content: center; margin-top: 16px; font-family: var(--head); font-weight: 600; font-size: 17px; color: var(--ink); }
.lt-label .lt-ck { width: 26px; height: 26px; border-radius: 50%; background: var(--coral); color: #fff; display: grid; place-items: center; }
.lt-label .lt-ck svg { width: 15px; height: 15px; }

/* feature list w/ icon (lighting app / performance) */
.icon-list { display: grid; gap: 24px; }
.icon-list.cols-2 { grid-template-columns: 1fr 1fr; gap: 26px 40px; }
.il-item { display: flex; gap: 16px; align-items: flex-start; }
.il-ic { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; background: rgba(242, 81, 73, .12); color: var(--coral); display: grid; place-items: center; }
.section--ink .il-ic { background: rgba(242, 81, 73, .18); }
.il-ic svg { width: 24px; height: 24px; }
.il-item h3 { font-size: 17px; margin-bottom: 5px; }
.section--ink .il-item h3 { color: #fff; }
.il-item p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.section--ink .il-item p { color: var(--white-55); }

.phones-wrap { display: flex; gap: 10px; justify-content: center; align-items: center; }
.phones-wrap img { border-radius: 22px; box-shadow: var(--shadow-lg); max-height: 460px; width: auto; }
.brand-badge { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }

.tx-emblem { display: grid; place-items: center; }
.tx-emblem img { width: min(340px, 80%); }

/* ---------- Contact ---------- */
.contact-card { display: grid; grid-template-columns: 0.85fr 1.15fr; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; margin-top: -90px; position: relative; z-index: 5; border: 1px solid var(--line); }
.contact-aside { background: var(--ink); color: #fff; padding: 46px 40px; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.contact-aside .ca-bg { position: absolute; inset: 0; opacity: .12; object-fit: cover; width: 100%; height: 100%; }
.contact-aside > * { position: relative; z-index: 1; }
.contact-aside h2 { color: #fff; font-size: 28px; margin-bottom: 10px; }
.contact-aside .ca-sub { color: var(--white-70); font-size: 15px; margin-bottom: 34px; }
.ca-list { display: grid; gap: 22px; margin-top: 40px; }
.ca-item { display: flex; gap: 15px; align-items: center; }
.ca-item .ca-ic { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; background: var(--coral); color: #fff; display: grid; place-items: center; }
.ca-item .ca-ic svg { width: 22px; height: 22px; }
.ca-item .ca-k { font-family: var(--head); font-weight: 700; color: #fff; font-size: 15px; }
.ca-item .ca-v { color: var(--white-70); font-size: 14.5px; }
.ca-socials { display: flex; gap: 12px; margin-top: auto; padding-top: 40px; }
.ca-socials a { width: 40px; height: 40px; border-radius: 50%; background: var(--white-12); display: grid; place-items: center; color: #fff; transition: background .25s; }
.ca-socials a:hover { background: var(--coral); }
.ca-socials svg { width: 18px; height: 18px; }
.contact-form { padding: 46px 42px; }
.contact-form .eyebrow { margin-bottom: 10px; }
.contact-form h2 { font-size: 28px; margin-bottom: 8px; }
.contact-form .cf-sub { color: var(--muted); margin-bottom: 20px; }
.lead-form { margin-top: 4px; }
.lf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; }
.lf-field { display: flex; flex-direction: column; gap: 6px; }
.lf-field--full { grid-column: 1 / -1; }
.lf-field label { font-family: var(--head); font-size: 13.5px; font-weight: 600; color: var(--heading); }
.lf-field label span { color: var(--coral); }
.lf-field input,
.lf-field textarea {
  width: 100%; padding: 13px 15px; font: inherit; font-size: 15px; color: var(--text);
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 12px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.lf-field textarea { resize: vertical; min-height: 104px; }
.lf-field input::placeholder,
.lf-field textarea::placeholder { color: #A7ACB3; }
.lf-field input:focus,
.lf-field textarea:focus {
  outline: none; border-color: var(--coral); box-shadow: 0 0 0 4px rgba(242, 81, 73, .13);
}
.lf-submit { width: 100%; justify-content: center; margin-top: 18px; }
.lf-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.lf-status { margin-top: 12px; font-size: 14px; }
.lf-status:empty { display: none; }
.lf-status--error { color: var(--coral-dark); font-weight: 600; }
.lf-privacy { margin-top: 12px; font-size: 12.5px; color: var(--muted); text-align: center; }
.lf-done { padding: 26px 4px; text-align: center; }
.lf-done h3 { font-size: 22px; margin-bottom: 8px; color: var(--heading); }
.lf-done p { color: var(--muted); }
.cf-fallback.is-urgent { font-size: 15px; color: var(--text); }
@media (max-width: 640px) { .lf-grid { grid-template-columns: 1fr; } }
.cf-fallback { margin-top: 8px; font-size: 13.5px; color: var(--muted); text-align: center; }
.cf-fallback a { color: var(--coral); font-weight: 600; }
.cf-fallback a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-deep); color: var(--white-70); position: relative; overflow: hidden; }
.site-footer .foot-map { position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, .045) 1px, transparent 1.4px); background-size: 22px 22px; }
.site-footer .container { position: relative; z-index: 1; }
.footer-main { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; padding: 70px 0 48px; }
.footer-brand img { width: 92px; height: 92px; margin-bottom: 18px; }
.footer-brand p { color: var(--white-55); font-size: 14.5px; max-width: 32ch; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: var(--coral); display: grid; place-items: center; color: #fff; transition: transform .25s, background .25s; }
.footer-social a:hover { transform: translateY(-3px); background: var(--coral-dark); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h3 { color: #fff; font-size: 16px; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 2px; background: var(--coral); }
.footer-links { display: grid; gap: 13px; }
.footer-links a { color: var(--white-70); font-size: 15px; display: inline-flex; align-items: center; gap: 9px; transition: color .2s, gap .2s; }
.footer-links a:hover { color: #fff; gap: 13px; }
.footer-links a svg { width: 14px; height: 14px; color: var(--coral); }
.footer-contact { display: grid; gap: 16px; }
.footer-contact a, .footer-contact .fc-row { color: var(--white-70); font-size: 15px; display: flex; align-items: center; gap: 12px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--coral); flex: 0 0 auto; }
.footer-bottom { border-top: 1px solid var(--white-08); padding: 22px 0; text-align: center; font-size: 13.5px; color: var(--white-55); }
.footer-bottom a { color: var(--white-70); }
.footer-bottom a:hover { color: var(--coral); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ---------- Floating call bar (mobile) ---------- */
.callbar { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav-links { gap: 22px; }
  .nav-links a { font-size: 15px; }
  .section { padding: 76px 0; }
  .grid-2 { gap: 44px; }
  .services-grid, .tst-grid { grid-template-columns: repeat(2, 1fr); }
  .light-types { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links, .nav-actions .btn { display: none; }
  .menu-toggle { display: inline-flex; }
  .topbar-left { gap: 16px; }
  .topbar .topbar-item.email { display: none; }
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .grid-2.reverse-mobile > .split-media { order: -1; }
  .feature-band { grid-template-columns: 1fr; gap: 26px; margin-top: -50px; padding: 32px; }
  .fb-item + .fb-item { border-left: 0; padding-left: 0; border-top: 1px solid var(--white-08); padding-top: 22px; }
  .num-grid, .checklist.cols-2, .icon-list.cols-2 { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; margin-top: -60px; }
  .icon-list.cols-2 { gap: 22px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .hero-home { min-height: auto; padding: 90px 0 96px; }
  .hero-page { padding: 118px 0 130px; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 96%); }
  .services-grid, .tst-grid, .light-types, .process-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; padding: 54px 0 40px; }
  .hero-actions .btn, .split-text .btn { width: 100%; }
  .section-head { margin-bottom: 40px; }
  .phones-wrap img { max-height: 360px; }
  .topbar-item.email { display: none; }
  .callbar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
    background: var(--ink); border-top: 1px solid var(--white-08); box-shadow: 0 -8px 24px rgba(0, 0, 0, .3);
  }
  .callbar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 9px; padding: 14px; font-family: var(--head); font-weight: 600; color: #fff; font-size: 15px; }
  .callbar a.cb-call { background: #C5372E; }
  .callbar svg { width: 18px; height: 18px; }
  body { padding-bottom: 54px; }
}

/* Mobile legibility floor — keep small shared UI copy >= 14px on phones */
@media (max-width: 620px) {
  .topbar { font-size: 14px; }
  .eyebrow { font-size: 14px; }
  .proc-circle p { font-size: 14px; }
  .footer-bottom { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ================= REVISION — match original more closely ================= */

/* Full-height split image: image column matches the text column top-to-bottom */
.grid-2.stretch { align-items: stretch; }
.grid-2.stretch .split-media { display: flex; }
.split-media.fill img { height: 100%; width: 100%; aspect-ratio: auto; min-height: 400px; object-fit: cover; }
.split-media.fill.rounded img { border-radius: 30px; }

/* Section with a subtle photo background (Trusted Experts) */
.section--photo { position: relative; overflow: hidden; }
.section--photo .sec-bg { position: absolute; inset: 0; z-index: 0; }
.section--photo .sec-bg img { width: 100%; height: 100%; object-fit: cover; }
.section--photo::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(rgba(9, 12, 17, .90), rgba(9, 12, 17, .93)); }
.section--photo > .container { position: relative; z-index: 2; }

/* Trusted Experts — 2x2 bordered feature box with dividers + coral icon badges */
.trust-box { display: grid; grid-template-columns: 1fr 1fr; margin-top: 30px; border: 1px solid var(--white-12); border-radius: 14px; overflow: hidden; }
.trust-cell { display: flex; gap: 14px; align-items: flex-start; padding: 22px 24px; border-right: 1px solid var(--white-12); border-bottom: 1px solid var(--white-12); }
.trust-cell:nth-child(2n) { border-right: 0; }
.trust-cell:nth-last-child(-n+2) { border-bottom: 0; }
.trust-cell .tc-ic { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%; background: var(--coral); color: #fff; display: grid; place-items: center; }
.trust-cell .tc-ic svg { width: 20px; height: 20px; }
.trust-cell h3 { color: #fff; font-size: 16.5px; margin-bottom: 5px; }
.trust-cell p { color: var(--white-55); font-size: 13.5px; line-height: 1.5; }

/* Home CTA — left-aligned panel over photo */
.cta-banner--left { text-align: left; }
.cta-banner--left::after { background: linear-gradient(90deg, rgba(7, 8, 15, .93) 0%, rgba(7, 8, 15, .80) 44%, rgba(7, 8, 15, .28) 100%); }
.cta-banner--left .cta-inner { max-width: 600px; }
.cta-banner--left h2, .cta-banner--left p { margin-left: 0; margin-right: 0; max-width: 24ch; }
.cta-banner--left .eyebrow { justify-content: flex-start; }

/* Built on Trust — photo background behind the dark card */
.trust-card { position: relative; max-width: 860px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; padding: 58px 52px; text-align: center; color: #fff; box-shadow: var(--shadow); }
.trust-card .tc-bg { position: absolute; inset: 0; z-index: 0; }
.trust-card .tc-bg img { width: 100%; height: 100%; object-fit: cover; }
.trust-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(rgba(10, 13, 18, .82), rgba(10, 13, 18, .90)); }
.trust-card > * { position: relative; z-index: 2; }
.trust-card h2 { color: #fff; margin-bottom: 16px; }
.trust-card p { color: var(--white-70); max-width: 56ch; margin: 0 auto; }

/* Lighting — Why Choose 4-up cards (no empty slot) */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.why-card { background: var(--ink-soft); border: 1px solid var(--white-12); border-radius: 14px; padding: 28px 22px; text-align: center; transition: transform .3s var(--ease), border-color .3s; }
.why-card:hover { transform: translateY(-5px); border-color: rgba(242, 81, 73, .5); }
.why-card .wc-ic { width: 54px; height: 54px; margin: 0 auto 16px; border-radius: 50%; border: 1.5px solid var(--coral); color: var(--coral); display: grid; place-items: center; }
.why-card .wc-ic svg { width: 26px; height: 26px; }
.why-card h3 { color: #fff; font-size: 16.5px; margin-bottom: 8px; }
.why-card p { color: var(--white-55); font-size: 13.5px; line-height: 1.55; }

/* Services "What We Offer" — align Get A Quote with Call Us Anytime */
.offer-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 30px; }
.offer-actions .btn { margin: 0; }
.call-inline { display: inline-flex; align-items: center; gap: 12px; }
.call-inline .ci-ic { width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; flex: 0 0 auto; }
.call-inline .ci-ic svg { width: 22px; height: 22px; }
.call-inline .ci-k { display: block; font-size: 12px; color: var(--muted); letter-spacing: .06em; line-height: 1.2; }
.call-inline .ci-v { font-family: var(--head); font-weight: 700; color: var(--ink); font-size: 17px; }

/* Tighter section rhythm (About) */
.section--compact { padding-top: 56px; padding-bottom: 56px; }

/* DFW city page layout variants */
.hero-page--center { text-align: center; }
.hero-page--center .container { max-width: 880px; }
.hero-page--center h1, .hero-page--center p { margin-left: auto; margin-right: auto; }
.hero-page--center .eyebrow { justify-content: center; }
.hero-page--center p { max-width: 54ch; }
.hero-split { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.hero-split .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; min-height: 78vh; padding-block: 120px; }
.hero-split .hs-text h1 { color: #fff; font-size: clamp(32px, 4.6vw, 58px); }
.hero-split .hs-text p { color: var(--white-70); margin: 20px 0 30px; font-size: 18px; max-width: 46ch; }
.hero-split .hs-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3.4; }
.hero-split .hs-media img { width: 100%; height: 100%; object-fit: cover; }
.stat-row { display: flex; flex-wrap: wrap; gap: 16px 30px; margin-top: 26px; }
.stat-row .stat { display: flex; align-items: center; gap: 10px; font-family: var(--head); font-weight: 600; color: var(--ink); font-size: 15px; }
.section--ink .stat-row .stat { color: #fff; }
.stat-row .stat svg { width: 22px; height: 22px; color: var(--coral); flex: 0 0 auto; }
.intro-wide { max-width: 800px; margin: 0 auto; text-align: center; }
.intro-wide .checklist { text-align: left; max-width: 640px; margin: 28px auto 0; }
.why-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 44px; }
.why-3col .w3 { text-align: center; padding: 30px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.why-3col .w3 .w3-ic { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 14px; background: rgba(242,81,73,.12); color: var(--coral); display: grid; place-items: center; }
.why-3col .w3 .w3-ic svg { width: 28px; height: 28px; }
.why-3col .w3 h3 { font-size: 18px; margin-bottom: 8px; }
.section--ink .why-3col .w3 h3 { color: var(--ink); }
.why-3col .w3 p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
@media (max-width: 860px) {
  .hero-split .container { grid-template-columns: 1fr; gap: 32px; min-height: 0; padding-block: 110px 80px; }
  .hero-split .hs-media { aspect-ratio: 16/11; }
  .why-3col { grid-template-columns: 1fr; }
}

/* DFW hub — county-grouped city grid */
.dfw-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 34px 26px; max-width: 1120px; margin: 8px auto 0; }
.dfw-col h3 { font-size: 16px; color: var(--ink); margin-bottom: 15px; padding-bottom: 9px; border-bottom: 2px solid var(--coral); display: inline-block; }
.dfw-col ul { display: grid; gap: 11px; }
.dfw-col li a { display: inline-flex; align-items: center; gap: 8px; color: var(--text); font-family: var(--head); font-weight: 500; font-size: 15px; transition: color .2s, gap .2s; }
.dfw-col li a:hover { color: var(--coral); gap: 11px; }
.dfw-col li a svg { width: 15px; height: 15px; color: var(--coral); flex: 0 0 auto; }

/* City pages — nearby service-area links (readable on light section) */
.area-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px 24px; max-width: 760px; margin: 0 auto; justify-items: center; }
.area-links a { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); font-family: var(--head); font-weight: 600; font-size: 15.5px; transition: color .2s, gap .2s; }
.area-links a:hover { color: var(--coral); gap: 13px; }
.area-links a svg { width: 15px; height: 15px; color: var(--coral); flex: 0 0 auto; }

/* Neighborhoods — asymmetric chip cloud */
.nbhd-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.nbhd-lead h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 18px; line-height: 1.12; }
.nbhd-lead p { color: var(--muted); line-height: 1.75; margin-bottom: 28px; }
.nbhd-chips { display: flex; flex-wrap: wrap; gap: 12px; align-content: center; }
.nbhd-section .chip { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border: 1px solid var(--line); border-radius: 100px; background: #fff; font-family: var(--head); font-weight: 600; font-size: 15px; color: var(--ink); transition: border-color .2s, transform .2s, box-shadow .2s; }
.nbhd-section .chip:hover { border-color: var(--coral); transform: translateY(-2px); box-shadow: var(--shadow); }
.nbhd-section .chip svg { width: 15px; height: 15px; color: var(--coral); flex: 0 0 auto; }
@media (min-width: 861px) {
  .nbhd-grid--flip .nbhd-lead { order: 2; }
  .nbhd-grid--flip .nbhd-chips { order: 1; }
}
@media (max-width: 860px) {
  .nbhd-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .grid-2.stretch { align-items: start; }
  .split-media.fill img { height: auto; aspect-ratio: 4/3; min-height: 0; }
  .feat-badges { grid-template-columns: 1fr; }
  .trust-box { grid-template-columns: 1fr; }
  .trust-cell { border-right: 0; border-bottom: 1px solid var(--white-12); }
  .trust-cell:last-child { border-bottom: 0; }
  .cta-banner--left h2, .cta-banner--left p { max-width: none; }
}
@media (max-width: 620px) {
  .why-grid { grid-template-columns: 1fr; }
  .offer-actions { gap: 16px; }
}

.footer-sitemap { color: rgba(255,255,255,.5); text-decoration: none; margin-left: 4px; }
.footer-sitemap:hover { color: var(--coral); text-decoration: underline; }

/* ---------- Admin / CMS ---------- */
/* Low-key entry point to the client's visual editor, next to the sitemap link. */
.footer-bottom .admin-link {
  color: rgba(255,255,255,.32);
  font-size: .78rem;
  letter-spacing: .04em;
  text-decoration: none;
  margin-left: 10px;
}
.footer-bottom .admin-link:hover { color: var(--coral); }
