@import url('_variables.css');

/* ============================================================
   tahar2026 — "Steel & Sunlight" generator template
   Industrial-utilitarian design system.
   Type: Barlow Condensed (display) / Barlow (body)

   This file is the hand-built Safelock/Longview "Steel & Sunlight"
   design ported into the storage-site-generator. The literal :root
   color palette from the hand-built main.css is replaced by a
   token bridge that maps the bespoke design tokens onto the
   regenerated --wss-* scale emitted by color_utils.generate_variables_css
   (imported above). Component rules below reference only the bridged
   tokens, so every regenerated site picks up its own palette while
   keeping the exact same look as the hand-built reference.
   ============================================================ */

:root {
  /* --- token bridge: bespoke design tokens -> regenerated --wss-* scale --- */
  --brand: var(--wss-accent-500);       /* sky blue (was #269fd8) */
  --brand-deep: var(--wss-accent-600);  /* deep sky (was #1b81b3) */
  --brand-soft: var(--wss-secondary-50);/* pale brand tint (was #e4f3fb) */
  --ink: var(--wss-primary-900);        /* steel blue-black (was #16242f) */
  --ink-2: var(--wss-primary-800);      /* (was #24384a) */
  --steel: var(--wss-primary-500);      /* logo slate (was #596774) */
  --mist: var(--wss-primary-300);       /* (was #8fa3b3) */
  --line: var(--wss-primary-100);       /* (was #dde4e9) */
  --paper: var(--wss-primary-50);       /* cool off-white (was #f4f7f9) */
  --card: #ffffff;
  --display: var(--wss-font-heading);
  --body: var(--wss-font-body);

  /* fixed accents that don't map to the brand scale */
  --green: #1d8a4a;
  --green-soft: #e6f5ec;
  --red: #c0392b;

  /* literal radius / shadow / container from the hand-built main.css */
  --shadow: 0 1px 2px rgba(22, 36, 47, .06), 0 8px 24px -8px rgba(22, 36, 47, .14);
  --shadow-lg: 0 2px 4px rgba(22, 36, 47, .08), 0 20px 48px -16px rgba(22, 36, 47, .24);
  --radius: 10px;
  --container: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16.5px;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ---------- typography ---------- */
h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: .005em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); text-transform: uppercase; }
h2 { font-size: clamp(2rem, 4.5vw, 3.1rem); text-transform: uppercase; }
h3 { font-size: 1.45rem; }

.kicker {
  font-family: var(--display);
  font-weight: 600;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--brand-deep);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.kicker::before { content: ""; width: 34px; height: 3px; background: var(--brand); }
.kicker--center { justify-content: center; }
.kicker--center::after { content: ""; width: 34px; height: 3px; background: var(--brand); }

.lead { font-size: 1.15rem; color: var(--steel); max-width: 60ch; }

/* ---------- corrugated roll-up door texture ---------- */
.corrugated {
  background-image: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, .045) 0px, rgba(255, 255, 255, .045) 2px,
    transparent 2px, transparent 13px,
    rgba(0, 0, 0, .22) 13px, rgba(0, 0, 0, .22) 15px,
    transparent 15px, transparent 26px
  );
}

/* ---------- buttons ---------- */
.btn {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.06rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 7px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:active { transform: translateY(1px); }
.btn--amber {
  background: var(--brand-deep);
  color: #fff;
  box-shadow: 0 4px 14px -4px rgba(38, 159, 216, .55);
}
.btn--amber:hover { background: var(--brand); box-shadow: 0 8px 22px -6px rgba(38, 159, 216, .6); transform: translateY(-1px); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--ink-2); transform: translateY(-1px); }
.btn--ghost { border-color: rgba(255,255,255,.45); color: #fff; background: rgba(255,255,255,.06); backdrop-filter: blur(4px); }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.14); }
.btn--outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--lg { padding: 17px 34px; font-size: 1.18rem; }
.btn--sm { padding: 10px 18px; font-size: .95rem; }
.btn--wide { width: 100%; }

/* ---------- top utility bar ---------- */
.topbar {
  background: var(--ink);
  color: #cfdae3;
  font-size: .86rem;
  padding: 7px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.topbar__item { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; }
.topbar__item svg { width: 14px; height: 14px; color: var(--brand); }
.topbar__item:hover { color: #fff; }
.topbar__group { display: flex; gap: 20px; align-items: center; min-width: 0; }
.topbar__group span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(244, 247, 249, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 46px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--display); font-weight: 700; font-size: 1.5rem; text-transform: uppercase; letter-spacing: .03em; white-space: nowrap; }
.brand__sub { font-size: .72rem; color: var(--steel); letter-spacing: .14em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a:not(.btn) {
  text-decoration: none;
  font-weight: 600;
  font-size: .96rem;
  white-space: nowrap;
  color: var(--ink-2);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav a:not(.btn):hover, .nav a.is-active:not(.btn) { color: var(--ink); border-bottom-color: var(--brand); }
.header__cta { display: flex; align-items: center; gap: 12px; }
.header__phone {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-family: var(--display); font-weight: 700; font-size: 1.22rem;
  text-decoration: none; color: var(--ink);
}
.header__phone svg { width: 19px; height: 19px; color: var(--brand-deep); }

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.menu-toggle svg { width: 28px; height: 28px; }

/* mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  z-index: 70;
  background: var(--ink);
  color: #fff;
  padding: 26px 24px;
  flex-direction: column;
  gap: 6px;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.mobile-nav__head .brand__name { color: #fff; }
.mobile-nav a:not(.btn) {
  font-family: var(--display); font-size: 1.7rem; font-weight: 600; text-transform: uppercase;
  color: #e7edf2; text-decoration: none; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.09);
}
.mobile-nav a:not(.btn):hover { color: var(--brand); }
.mobile-nav__ctas { margin-top: auto; display: grid; gap: 10px; padding-bottom: 12px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(118deg, rgba(13, 22, 30, .93) 0%, rgba(22, 36, 47, .82) 46%, rgba(22, 36, 47, .42) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(180deg,
    transparent 0 12px, rgba(255,255,255,.03) 12px 14px);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; padding-top: 48px; padding-bottom: 52px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .84rem; font-weight: 600; letter-spacing: .04em;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  padding: 6px 13px; border-radius: 999px; backdrop-filter: blur(6px);
}
.badge svg { width: 14px; height: 14px; color: var(--brand); }
.badge--rating svg { color: #ffc53d; }
.hero h1 { max-width: 20ch; margin-bottom: 12px; font-size: clamp(2.1rem, 4vw, 3.1rem); }
.hero h1 em { font-style: normal; color: var(--brand); }
.hero__sub { font-size: 1.08rem; color: #cfdae3; max-width: 52ch; margin-bottom: 10px; }
.hero__addr { display: flex; align-items: center; gap: 8px; color: #9fb2c0; font-size: .95rem; margin-bottom: 20px; }
.hero__addr svg { width: 17px; height: 17px; color: var(--brand); flex: none; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid rgba(255,255,255,.16); max-width: none; }
.hero__stat { padding: 14px 24px 0 0; margin-right: 24px; border-right: 1px solid rgba(255,255,255,.16); }
.hero__stat:last-child { border-right: 0; margin-right: 0; }
.hero__stat b { font-family: var(--display); font-size: 1.55rem; font-weight: 700; display: block; line-height: 1; color: #6fc8ef; }
.hero__stat span { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: #9fb2c0; }

/* promo ribbon */
.promo-strip {
  background: var(--ink);
  color: #fff;
  font-weight: 500;
  text-align: center;
  padding: 9px 16px;
  font-size: .95rem;
}
.promo-strip a { font-weight: 700; text-underline-offset: 3px; color: #6fc8ef; }
.promo-strip strong { color: #ffd23e; }

/* ---------- sections ---------- */
.section { padding: 84px 0; }
.section--tight { padding: 64px 0; }
.section--ink { background: var(--ink); color: #fff; }
.section--ink .lead { color: #aebecb; }
.section--card { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 720px; margin-bottom: 46px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: 14px; }

/* ---------- unit cards (roll-up door aesthetic) ---------- */
.units-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: 22px;
}
.unit-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.unit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.unit-card__door {
  position: relative;
  background: linear-gradient(180deg, #2c4254, #1b2b38);
  padding: 26px 22px 20px;
  color: #fff;
}
.unit-card__door .corrug {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(180deg,
    rgba(255,255,255,.05) 0 2px, transparent 2px 11px,
    rgba(0,0,0,.28) 11px 13px, transparent 13px 22px);
}
.unit-card__door > * { position: relative; }
.unit-card__size {
  font-family: var(--display); font-weight: 700; font-size: 2.5rem; line-height: 1;
  letter-spacing: .02em;
}
.unit-card__sqft { color: #6fc8ef; font-family: var(--display); font-weight: 600; font-size: 1.02rem; letter-spacing: .12em; text-transform: uppercase; }
.unit-card__tag {
  position: absolute; top: 14px; right: -1px;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 4px 0 0 4px;
}
.unit-card__tag--popular { background: var(--brand); color: #fff; }
.unit-card__tag--promo { background: #ffd23e; color: var(--ink); }
.unit-card__tag--climate { background: var(--brand); color: #fff; }
.availability--wait { letter-spacing: .02em; }
.storrd-embed { background: #fff; border: 1px solid var(--line, #e3e0d8); border-radius: 14px; overflow: hidden; }
.storrd-embed iframe { display: block; }
.icon-inline { width: 15px; height: 15px; display: inline-block; vertical-align: -2px; }
.unit-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.unit-card__pricerow { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.unit-card__price { font-family: var(--display); font-weight: 700; font-size: 2.1rem; line-height: 1; }
.unit-card__price small { font-size: 1rem; font-weight: 600; color: var(--steel); }
.availability { font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px; white-space: nowrap; }
.availability--yes { background: var(--green-soft); color: var(--green); }
.availability--wait { background: #f1eee7; color: var(--steel); }
.unit-card__desc { color: var(--steel); font-size: .95rem; line-height: 1.5; }
.unit-card__fits { font-size: .88rem; color: var(--steel); }
.unit-card__fits b { color: var(--ink); font-weight: 600; }
.unit-card__cta { margin-top: auto; }

/* unit filter */
.filter-row { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; }
.filter-btn {
  font-family: var(--display); font-weight: 600; font-size: .98rem; text-transform: uppercase; letter-spacing: .06em;
  background: transparent; color: var(--steel);
  border: 1.5px solid var(--line); border-radius: 999px;
  padding: 8px 19px; cursor: pointer; transition: all .15s;
}
.filter-btn:hover { border-color: var(--steel); color: var(--ink); }
.filter-btn.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ---------- features ---------- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.feature {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: background .2s, border-color .2s;
}
.feature:hover { background: rgba(255,255,255,.08); border-color: rgba(38,159,216,.5); }
.feature__icon {
  width: 48px; height: 48px; border-radius: 9px;
  background: rgba(38,159,216,.14); border: 1px solid rgba(38,159,216,.4);
  display: flex; align-items: center; justify-content: center; margin-bottom: 17px;
}
.feature__icon svg { width: 24px; height: 24px; color: var(--brand); }
.feature h3 { margin-bottom: 8px; color: #fff; }
.feature p { color: #aebecb; font-size: .96rem; }

/* ---------- generic cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.info-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; text-decoration: none; display: block;
  box-shadow: var(--shadow); transition: transform .16s, box-shadow .16s, border-color .16s;
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--brand); }
.info-card h3 { margin-bottom: 8px; }
.info-card p { color: var(--steel); font-size: .95rem; margin-bottom: 14px; }
.info-card .link-more { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--brand-deep); font-size: .95rem; }

/* spot/citation cards */
.spot-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; text-decoration: none; display: flex; flex-direction: column;
  box-shadow: var(--shadow); transition: transform .16s, box-shadow .16s;
}
.spot-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.spot-card img { height: 175px; width: 100%; object-fit: cover; }
.spot-card__body { padding: 17px 19px; }
.spot-card__body h3 { font-size: 1.18rem; margin-bottom: 5px; }
.spot-card__body span { font-size: .87rem; color: var(--brand-deep); font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.spot-card__body span svg { width: 14px; height: 14px; }

/* city chips */
.city-chips { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.city-chip {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 20px; text-decoration: none; text-align: center;
  box-shadow: var(--shadow); transition: transform .15s, border-color .15s, box-shadow .15s;
}
.city-chip:hover { transform: translateY(-3px); border-color: var(--brand); box-shadow: var(--shadow-lg); }
.city-chip b, .city-chip h3 { font-family: var(--display); font-size: 1.45rem; font-weight: 700; text-transform: uppercase; display: block; }
.city-chip span { color: var(--steel); font-size: .86rem; letter-spacing: .1em; text-transform: uppercase; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 13px; }
.faq-item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 19px 22px; font-weight: 600; font-size: 1.06rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--brand-soft); display: flex; align-items: center; justify-content: center; transition: transform .2s; }
.faq-item summary .chev svg { width: 14px; height: 14px; color: var(--brand-deep); }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item__a { padding: 0 22px 20px; color: var(--steel); }
.faq-item__hl { margin-top: 10px; font-size: .84rem; font-weight: 600; color: var(--brand-deep); background: var(--brand-soft); border-radius: 6px; padding: 7px 12px; display: inline-block; }

/* ---------- location / NAP block ---------- */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.loc-list { display: grid; gap: 20px; }
.loc-item { display: flex; gap: 15px; }
.loc-item__icon {
  flex: none; width: 44px; height: 44px; border-radius: 9px;
  background: var(--brand-soft); display: flex; align-items: center; justify-content: center;
}
.loc-item__icon svg { width: 21px; height: 21px; color: var(--brand-deep); }
.loc-item b { display: block; font-family: var(--display); font-size: 1.13rem; text-transform: uppercase; letter-spacing: .04em; }
.loc-item a { color: var(--steel); text-decoration: none; }
.loc-item a:hover { color: var(--brand-deep); }
.loc-item p, .loc-item span { color: var(--steel); }
.map-frame { border: 0; width: 100%; height: 100%; min-height: 380px; border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(120deg, var(--brand-deep), var(--brand));
  color: #fff;
  overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(180deg, transparent 0 11px, rgba(0,0,0,.07) 11px 13px);
}
.cta-band .container { position: relative; z-index: 2; padding: 72px 20px; text-align: center; }
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { font-size: 1.14rem; max-width: 56ch; margin: 0 auto 30px; font-weight: 500; }
.cta-band__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: #aebecb; padding: 64px 0 0; font-size: .95rem; }
.footer a { text-decoration: none; color: #aebecb; transition: color .14s; }
.footer a:hover { color: var(--brand); }
.footer__grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1.35fr; gap: 38px; padding-bottom: 44px; }
.footer__brand img { height: 52px; margin-bottom: 14px; }
.footer h4 { font-family: var(--display); font-weight: 600; font-size: 1.1rem; text-transform: uppercase; letter-spacing: .12em; color: #fff; margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 9px; }
.footer__contact { display: grid; gap: 10px; }
.footer__contact div { display: flex; gap: 9px; align-items: flex-start; }
.footer__contact svg { width: 16px; height: 16px; color: var(--brand); flex: none; margin-top: 4px; }
.footer__rating { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); padding: 7px 13px; border-radius: 8px; font-size: .87rem; }
.footer__rating svg { width: 15px; height: 15px; color: #ffc53d; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: .85rem; color: #7e93a3; }
.footer__legal { display: flex; gap: 18px; }

/* ---------- sticky mobile CTA bar ---------- */
.mobile-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  grid-template-columns: 1fr 1.4fr;
  gap: 10px;
}
.mobile-cta .btn { padding: 13px 10px; font-size: 1.05rem; }

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(118deg, rgba(13,22,30,.95), rgba(34,52,67,.88));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 64px 0 58px;
  position: relative;
}
.page-hero::after { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(180deg, transparent 0 12px, rgba(255,255,255,.03) 12px 14px); pointer-events: none; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); margin-bottom: 12px; }
.page-hero p { color: #cfdae3; font-size: 1.12rem; max-width: 62ch; }
.breadcrumbs { font-size: .87rem; color: #9fb2c0; margin-bottom: 18px; display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
.breadcrumbs a { color: #cfdae3; text-decoration: none; }
.breadcrumbs a:hover { color: var(--brand); }
.breadcrumbs .sep { color: #5d7283; }
.page-hero__ctas { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- forms ---------- */
.form-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 44px; align-items: start; }
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.form-card h2 { font-size: 1.8rem; margin-bottom: 20px; }
.field { margin-bottom: 17px; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 7px; padding: 12px 14px; background: #fff;
  transition: border-color .14s, box-shadow .14s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(38,159,216,.22);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .85rem; color: var(--mist); margin-top: 12px; }

/* stats row (about) */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 18px; }
.stat-box { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 18px; text-align: center; box-shadow: var(--shadow); }
.stat-box b { font-family: var(--display); font-size: 2.4rem; font-weight: 700; color: var(--brand-deep); display: block; line-height: 1.05; }
.stat-box span { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--steel); }

/* prose (privacy/terms) */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { font-size: 1.7rem; margin: 38px 0 13px; }
.prose p, .prose li { color: var(--ink-2); margin-bottom: 13px; }
.prose ul { padding-left: 22px; }

/* two-col split */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.split__img img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }

/* checklist */
.checklist { list-style: none; display: grid; gap: 11px; margin: 20px 0; }
.checklist li { display: flex; gap: 11px; align-items: flex-start; font-weight: 500; }
.checklist svg { width: 21px; height: 21px; color: var(--green); flex: none; margin-top: 2px; }

/* reveal-on-scroll (only when JS is running; no-JS users see everything) */
html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
html.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1180px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  .header__phone span { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .section { padding: 62px 0; }
  .loc-grid, .form-grid, .split { grid-template-columns: 1fr; }
  .map-frame { min-height: 300px; }
  .hero .container { padding-top: 58px; padding-bottom: 64px; }
  .hero__stat { padding-right: 22px; margin-right: 22px; }
}
@media (max-width: 700px) {
  body { padding-bottom: 68px; } /* room for sticky CTA */
  .mobile-cta { display: grid; }
  .topbar__group--right { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .hero__ctas .btn { flex: 1 1 100%; }
  .header .container { height: 64px; }
  .brand img { height: 38px; }
  .brand__sub { display: none; }
  .units-grid { grid-template-columns: 1fr; }
  .hero__stats { max-width: 100%; }
  .hero__stat b { font-size: 1.6rem; }
  .hero__stat { padding-right: 16px; margin-right: 16px; }
}

/* ---------- brand lockup refinements ---------- */
.brand__name em { font-style: normal; color: var(--brand-deep); }
.footer__lockup { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer__lockup .brand__name { color: #fff; font-size: 1.6rem; }
.footer__lockup .brand__name em { color: #6fc8ef; }
.footer__lockup img { height: 44px; width: auto; }

@media (max-width: 700px) {
  .brand__name { font-size: 1.22rem; }
  .brand img { height: 34px; }
  .header__cta { gap: 8px; }
  .header__cta .btn--sm { padding: 9px 13px; font-size: .88rem; }
  .header__phone svg { width: 22px; height: 22px; }
  .menu-toggle { padding: 4px; }
}

/* ---------- official logo lockups ---------- */
.brand__logo { height: 44px; width: auto; display: block; }
.footer__logo { height: 110px; width: auto; margin-bottom: 16px; }
@media (max-width: 700px) {
  .brand__logo { height: 36px; }
}

/* --- ABC extras: solid white nav/header bar (was cool off-white) --- */
.header { background: #fff; }
/* --- ABC extras: Pay My Bill header button (dark-on-white header) --- */
.header__paybill { border: 1.5px solid var(--ink); color: var(--ink); background: transparent; }
.header__paybill:hover { background: var(--ink); color: #fff; }
/* keep Pay My Bill visible on mobile; compact the two buttons + drop the
   redundant header phone icon (call is still in the sticky bar + drawer) */
@media (max-width: 700px) {
  .header__cta { gap: 7px; }
  .header__phone { display: none; }
  .header__paybill, .header__cta .btn--amber { padding: 7px 11px; font-size: .78rem; }
}
/* --- ABC extras: white mobile menu drawer --- */
.mobile-nav { background: #fff; color: var(--ink); }
.mobile-nav a:not(.btn) { color: var(--ink); border-bottom-color: rgba(0,0,0,.10); }
.mobile-nav a:not(.btn):hover,
.mobile-nav a:not(.btn).is-active { color: var(--steel); font-weight: 700; } /* dark green, readable on white */
.mobile-nav__close { color: var(--ink) !important; }
/* logo art has a baked-in white background; multiply drops it on the white drawer */
.mobile-nav__head img { mix-blend-mode: multiply; }
.mobile-nav .btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.mobile-nav .btn--ghost:hover { background: var(--ink); color: #fff; }
/* --- ABC extras: responsive 16:9 video embed (home + landing page) --- */
.video-embed { position: relative; width: 100%; max-width: 940px; margin: 0 auto; aspect-ratio: 16 / 9;
  border-radius: 14px; overflow: hidden; box-shadow: 0 2px 4px rgba(22,36,47,.08), 0 20px 48px -16px rgba(22,36,47,.22); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
