/*
Theme Name: ECO Concept
Theme URI: https://ecoincinerators.com
Author: Brocksfield Design Company
Author URI: https://brocksfield.com
Description: Custom designed theme by Brocksfield Design Company (https://brocksfield.com) for ECO Concept Incinerators.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: Proprietary
Text Domain: eco-concept
*/

/* ============================================================
   ECO Concept, Inc. — Design System v1 "Heavy Duty Modern Steel"
   Hybrid: dark hero/CTA bands + light content sections
   ============================================================ */

:root {
  /* Color tokens */
  --ink: #141414;
  --gunmetal: #1f2429;
  --steel: #2b323a;
  --slate: #22272b;
  --smoke: #5b636b;
  --line: #e3e2de;
  --paper: #f7f7f5;
  --white: #ffffff;
  --fire: #dd0000;
  --ember: #a30000;
  --fire-grad: linear-gradient(100deg, #dd0000 0%, #a30000 100%);

  /* Type */
  --display: "Rajdhani", "Arial Narrow", sans-serif;
  --body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --radius: 6px;
  --shadow: 0 10px 30px rgba(20, 20, 20, .10);
  --shadow-lg: 0 24px 60px rgba(20, 20, 20, .18);
  --maxw: 1360px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--slate);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.05;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 4.6vw, 3.7rem); }
.hero h1 .accent { white-space: nowrap; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); line-height: 1.15; }
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--white); }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .14em; font-size: .95rem; color: var(--ember);
  margin-bottom: 14px;
}
.on-dark .kicker { color: var(--fire); }

.lead { font-size: 1.15rem; color: var(--smoke); max-width: 62ch; }
.on-dark .lead, .on-dark p { color: #c8cdd2; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; font-size: 1.05rem;
  padding: 14px 30px; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer; transition: all .2s ease;
  white-space: nowrap;
}
.btn-fire { background: var(--fire-grad); color: #fff; }
.btn-fire:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(221, 0, 0, .35); }
.btn-ghost { border-color: rgba(255,255,255,.35); color: #fff; }
.btn-ghost:hover { border-color: var(--fire); color: var(--fire); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ember); }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }

/* ---------- Utility bar ---------- */
.utilbar {
  background: var(--ink); color: #9aa1a8;
  font-size: .82rem; letter-spacing: .04em;
  border-bottom: 1px solid #23282e;
}
.utilbar .wrap { display: flex; justify-content: space-between; align-items: center; height: 36px; }
.utilbar a { color: #d6dade; }
.utilbar a:hover { color: var(--fire); }
.utilbar .flag { color: #d6dade; text-transform: uppercase; font-weight: 600; }
.utilbar .flag span { color: var(--fire); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(20, 20, 20, .97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #262b31;
}
.site-header .wrap { display: flex; align-items: center; gap: 22px; height: 92px; }
.logo img { height: 64px; width: auto; }
.nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav > li { position: relative; }
.nav > li > a {
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; font-size: 1rem; color: #e8eaec;
  padding: 10px 12px; border-radius: 4px;
}
.nav > li > a:hover, .nav > li.active > a { color: var(--fire); }
.nav .caret { font-size: .6rem; opacity: .6; }

.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 260px;
  background: var(--gunmetal); border: 1px solid #2c333b; border-top: 3px solid var(--fire);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .18s ease; padding: 8px 0;
}
.nav li:hover .dropdown, .nav li:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 9px 18px; font-size: .95rem; color: #cfd4d9;
}
.dropdown a:hover { background: rgba(221, 0, 0, .08); color: var(--fire); }
.dropdown .dd-label {
  padding: 10px 18px 4px; font-size: .72rem; text-transform: uppercase;
  letter-spacing: .14em; color: var(--smoke); font-weight: 600;
}
.header-cta { display: flex; align-items: center; gap: 18px; white-space: nowrap; }
.header-phone { text-align: right; line-height: 1.2; }
.header-phone .ph-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: #8a9199; white-space: nowrap; }
.header-phone a { font-family: var(--display); font-weight: 700; font-size: 1.25rem; color: #fff; white-space: nowrap; }
.header-phone a:hover { color: var(--fire); }
.header-cta .btn { padding: 11px 22px; font-size: .95rem; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; margin-left: auto; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: #fff; margin: 5px 0; transition: .2s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; background: var(--ink); color: #fff; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1200px 500px at 85% 110%, rgba(221, 0, 0, .28), transparent 60%),
    radial-gradient(800px 400px at -10% -20%, rgba(221, 0, 0, .10), transparent 60%);
  pointer-events: none;
}
.hero .wrap {
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 56px; align-items: center; padding-top: 84px; padding-bottom: 84px;
}
.hero h1 .accent { color: transparent; background: var(--fire-grad); -webkit-background-clip: text; background-clip: text; }
.hero .lead { margin: 22px 0 32px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-points { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 34px; }
.hero-points li {
  display: flex; align-items: center; gap: 9px;
  font-size: .9rem; color: #c8cdd2;
}
.hero-points li::before { content: "✓"; color: var(--fire); font-weight: 700; }

.hero-video {
  position: relative; border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid #2c333b;
  aspect-ratio: 16 / 9; background: #000;
}
.hero-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.hero-video .vid-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(20,20,20,.85); color: var(--fire);
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; font-size: .78rem; padding: 6px 12px; border-radius: 4px;
}

/* Page hero (interior) */
.page-hero { padding: 70px 0 64px; }
.page-hero .lead { margin-top: 18px; }
.breadcrumbs { display: flex; gap: 8px; font-size: .82rem; color: #8a9199; margin-bottom: 22px; flex-wrap: wrap; }
.breadcrumbs a:hover { color: var(--fire); }
.breadcrumbs .sep { opacity: .5; }
.page-hero.split .wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; padding-top: 0; padding-bottom: 0; }
.page-hero.split { padding: 70px 0; }
.page-hero .hero-img { border-radius: 10px; overflow: hidden; border: 1px solid #2c333b; box-shadow: var(--shadow-lg); }

/* ---------- Stat band ---------- */
.statband { background: var(--gunmetal); border-top: 1px solid #2c333b; position: relative; }
.statband::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--fire-grad); }
.statband .wrap {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding-top: 34px; padding-bottom: 34px; gap: 24px;
}
.stat { text-align: center; }
.stat .num {
  font-family: var(--display); font-weight: 700; font-size: 2.5rem;
  color: #fff; line-height: 1;
}
.stat .num em { font-style: normal; color: var(--fire); }
.stat .lbl { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: #8a9199; margin-top: 6px; }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section-white { background: var(--white); }
.section.tight { padding: 68px 0; }
.section-dark { background: var(--ink); color: #fff; }
.section-gun { background: var(--gunmetal); color: #fff; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head p { margin-top: 16px; }

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .card-img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--white); }
.card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.card:hover .card-img img { transform: scale(1.04); }
.card .card-body { padding: 24px; }
.card .card-body h3 { margin-bottom: 8px; }
.card .card-body p { font-size: .95rem; color: var(--smoke); }
.card .card-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; color: var(--ember); font-size: .95rem;
}
.card .card-link::after { content: "→"; transition: transform .2s; }
.card:hover .card-link::after { transform: translateX(4px); }

/* Model cards */
.model-card { position: relative; }
.model-card .cap {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--ink); color: #fff; font-family: var(--display);
  font-weight: 700; font-size: 1rem; letter-spacing: .06em;
  padding: 6px 12px; border-radius: 4px; text-transform: uppercase;
}
.model-card .cap em { font-style: normal; color: var(--fire); }
.model-card .specs-mini {
  display: flex; gap: 16px; margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--line); font-size: .8rem; color: var(--smoke);
}
.model-card .specs-mini b { display: block; color: var(--ink); font-size: .92rem; }

/* Feature list w/ numbers */
.numlist { counter-reset: n; display: grid; gap: 0; }
.numlist > li {
  counter-increment: n; display: grid; grid-template-columns: 84px 1fr;
  gap: 26px; padding: 30px 0; border-bottom: 1px solid var(--line);
}
.on-dark .numlist > li { border-color: #2c333b; }
.numlist > li::before {
  content: "0" counter(n);
  font-family: var(--display); font-weight: 700; font-size: 2.6rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px var(--ember);
}
.numlist h3 { margin-bottom: 8px; }
.numlist p { color: var(--smoke); }
.on-dark .numlist p { color: #c8cdd2; }

/* Check list */
.checklist { display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist li::before {
  content: "✓"; flex: 0 0 auto; width: 22px; height: 22px; border-radius: 4px;
  background: var(--fire-grad); color: #fff; font-size: .8rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center; margin-top: 3px;
}

/* Risk/problem cards */
.risk-card {
  background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--ember);
  border-radius: var(--radius); padding: 26px;
}
.risk-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.risk-card p { font-size: .95rem; color: var(--smoke); }

/* ---------- Spec tables ---------- */
.spec-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
table.spec {
  width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 760px;
}
table.spec th, table.spec td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
table.spec tbody td { color: var(--slate); }
table.spec thead th {
  background: var(--ink); color: #fff; font-family: var(--display);
  text-transform: uppercase; letter-spacing: .08em; font-weight: 600; font-size: .95rem;
  border-bottom: 3px solid var(--fire);
}
table.spec tbody tr:hover { background: #fdf1f1; }
table.spec td:first-child {
  font-family: var(--display); font-weight: 700; font-size: 1.1rem;
  color: var(--ink); white-space: nowrap;
}
table.spec .num { font-variant-numeric: tabular-nums; }
table.spec tr.hl td { background: rgba(221, 0, 0, .06); }

/* Data plate (model page) */
.dataplate {
  background: var(--gunmetal); color: #fff; border-radius: 10px;
  border: 1px solid #2c333b; box-shadow: var(--shadow-lg); overflow: hidden;
}
.dataplate .dp-head {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--ink); padding: 18px 26px; border-bottom: 3px solid var(--fire);
}
.dataplate .dp-head h3 { color: #fff; }
.dataplate .dp-head .made {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: #8a9199;
}
.dataplate dl {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.dataplate .dp-row { display: flex; justify-content: space-between; gap: 12px; padding: 15px 26px; border-bottom: 1px solid #2c333b; }
.dataplate .dp-row:nth-child(odd) { border-right: 1px solid #2c333b; }
.dataplate dt { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: #8a9199; }
.dataplate dd { font-family: var(--display); font-weight: 600; font-size: 1.08rem; color: #fff; text-align: right; }
.dataplate dd em { font-style: normal; color: var(--fire); }

/* ---------- Trust marquee ---------- */
.trustband { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 40px 0; }
.trustband .tb-label {
  text-align: center; font-size: .78rem; text-transform: uppercase;
  letter-spacing: .18em; color: var(--smoke); margin-bottom: 26px; font-weight: 600;
}
.marquee { overflow: hidden; position: relative; }
.marquee-track { display: flex; gap: 96px; align-items: center; width: max-content; animation: scroll 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img { height: 112px; width: auto; filter: grayscale(1); opacity: .65; transition: .2s; }
.marquee-track img:hover { filter: none; opacity: 1; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- CTA band ---------- */
.ctaband { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.ctaband::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 400px at 90% 130%, rgba(221, 0, 0, .35), transparent 60%);
}
.ctaband .wrap {
  position: relative; display: flex; justify-content: space-between; align-items: center;
  gap: 40px; padding-top: 72px; padding-bottom: 72px; flex-wrap: wrap;
}
.ctaband h2 { max-width: 560px; color: #fff; }
.ctaband h2 span { color: var(--fire); }
.ctaband .cta-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.ctaband .cta-phone { text-align: left; }
.ctaband .cta-phone .ph-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: #8a9199; }
.ctaband .cta-phone a { font-family: var(--display); font-weight: 700; font-size: 1.7rem; color: #fff; }
.ctaband .cta-phone a:hover { color: var(--fire); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; max-width: 860px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  cursor: pointer; padding: 20px 24px; font-weight: 600; color: var(--ink);
  list-style: none; font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--display); font-size: 1.6rem; color: var(--ember);
  transition: transform .2s; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--smoke); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery a { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; display: block; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery a:hover img { transform: scale(1.05); }
.gallery.contain a { background: #fff; border: 1px solid #ececec; }
.gallery.contain img { object-fit: contain; }
.lightbox {
  position: fixed; inset: 0; z-index: 2000; background: rgba(10, 10, 10, .93);
  display: none; align-items: center; justify-content: center; padding: 5vh 5vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 6px; }
.lightbox .lb-close {
  position: absolute; top: 24px; right: 30px; background: none; border: 0;
  color: #fff; font-size: 2.2rem; cursor: pointer; line-height: 1;
}

/* ---------- Two-col feature ---------- */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-split .fs-img { border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-lg); }
.section-white .feature-split .fs-img { box-shadow: none; border: 0; }
.feature-split .fs-img img { width: 100%; }
.feature-split h2 { margin-bottom: 18px; }
.feature-split p + p { margin-top: 14px; }
.feature-split .checklist { margin-top: 22px; }

/* ---------- Quote embed placeholder ---------- */
.form-slot {
  border: 2px dashed #3a424b; border-radius: 10px; padding: 48px 32px;
  text-align: center; color: #8a9199; background: rgba(255,255,255,.02);
}
.form-slot b { color: #c8cdd2; display: block; font-size: 1.05rem; margin-bottom: 6px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #9aa1a8; font-size: .92rem; }
.site-footer .foot-main {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px;
  padding: 68px 0 52px;
}
.site-footer h4 {
  font-family: var(--display); text-transform: uppercase; letter-spacing: .1em;
  color: #fff; font-size: 1.05rem; margin-bottom: 18px; font-weight: 600;
}
.site-footer a:hover { color: var(--fire); }
.site-footer .foot-brand img { height: 54px; margin-bottom: 18px; }
.site-footer .foot-brand p { max-width: 34ch; }
.site-footer .foot-links li { margin-bottom: 9px; }
.site-footer .nap li { margin-bottom: 12px; display: flex; gap: 10px; }
.site-footer .nap .ico { color: var(--fire); }
.site-footer .foot-bottom {
  border-top: 1px solid #23282e; padding: 22px 0;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .8rem;
}
.site-footer .foot-bottom a { color: #c8cdd2; }

/* ---------- Preview badge ---------- */
.preview-note {
  position: fixed; bottom: 16px; right: 16px; z-index: 1500;
  background: var(--gunmetal); color: #c8cdd2; border: 1px solid #2c333b;
  font-size: .72rem; padding: 8px 12px; border-radius: 6px; opacity: .85;
}
.preview-note b { color: var(--fire); }

/* ---------- Responsive ---------- */
@media (max-width: 1380px) {
  .header-phone { display: none; }
}
@media (max-width: 1024px) {
  .hero .wrap, .page-hero.split .wrap { grid-template-columns: 1fr; gap: 40px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .statband .wrap { grid-template-columns: repeat(2, 1fr); }
  .feature-split { grid-template-columns: 1fr; gap: 36px; }
  .site-footer .foot-main { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .header-phone { display: none; }
}
@media (max-width: 800px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
    background: var(--gunmetal); flex-direction: column; align-items: flex-start;
    padding: 90px 20px 40px; gap: 2px; transition: right .25s ease; overflow-y: auto;
    box-shadow: var(--shadow-lg); z-index: 1100;
  }
  .nav.open { right: 0; }
  .nav > li { width: 100%; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    border: 0; border-left: 2px solid var(--fire); border-radius: 0;
    box-shadow: none; margin: 4px 0 8px 14px; display: none;
  }
  .nav li.open-sub .dropdown { display: block; }
  .header-cta .btn { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .dataplate dl { grid-template-columns: 1fr; }
  .dataplate .dp-row:nth-child(odd) { border-right: 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 64px 0; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .statband .wrap { grid-template-columns: 1fr 1fr; }
  .site-footer .foot-main { grid-template-columns: 1fr; }
  .utilbar .u-right { display: none; }
}


/* ---------- Centered hero (homepage) ---------- */
.hero-center { display: flex; align-items: center; min-height: min(88vh, 920px); }
.hero-center .wrap { display: block; max-width: 940px; text-align: center; padding-top: 140px; padding-bottom: 140px; width: 100%; }
.hero-center .kicker { justify-content: center; }
.hero-center .lead { margin: 22px auto 34px; }
.hero-center .hero-ctas { justify-content: center; }

/* ---------- Inline video section ---------- */
.video-embed { position: relative; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid #2c333b; aspect-ratio: 16 / 9; background: #000; max-width: 960px; margin: 0 auto; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }


/* ---------- Hero with background video ---------- */
.hero-bgvideo { position: relative; }
.hero-video-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-bgvideo .hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(15,15,15,.52) 0%, rgba(15,15,15,.36) 45%, rgba(15,15,15,.58) 100%);
}
.hero-bgvideo::before { z-index: 2; }
.hero-bgvideo .wrap { position: relative; z-index: 3; }
.hero-bgvideo h1, .hero-bgvideo .lead { text-shadow: 0 2px 18px rgba(0,0,0,.45); }


/* ---------- Quote form embed ---------- */
.form-embed {
  background: #f7f6f6; border-radius: 10px; padding: 10px;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.form-embed iframe { display: block; width: 100%; min-height: 919px; }


/* One-line section titles on desktop */
@media (min-width: 1100px) {
  .nowrap-desktop { white-space: nowrap; font-size: clamp(2rem, 3.1vw, 2.8rem); }
}

/* Cards are light surfaces even inside dark sections */
.on-dark .card h3 { color: var(--ink); }
.on-dark .card p { color: var(--smoke); }

