/* =========================================================================
   ASA Coastal — shared site styles
   Imported by every non-home page. Home keeps its own bespoke hero CSS.
   Tokens live in /site/colors_and_type.css and load before this file.
   ========================================================================= */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--asa-off-white); color: var(--fg-1); font-family: var(--ff-sans); }
img { display: block; max-width: 100%; }
a { color: inherit; }

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

section[id] { scroll-margin-top: 110px; }
@media (max-width: 900px) { section[id] { scroll-margin-top: 80px; } }

/* =========================================================================
   SITE HEADER (sticky, mirrors homepage exactly so navigation is consistent)
   ========================================================================= */
.siteheader {
  background: var(--asa-white);
  border-bottom: 1px solid var(--rule-on-light);
  position: sticky; top: 0; z-index: 50;
}
.siteheader-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 18px var(--gutter);
  max-width: 1320px; margin: 0 auto;
}
.nav {
  display: flex; gap: 26px;
  font-family: var(--ff-sans);
  font-size: 15px; font-weight: 500;
  flex-wrap: nowrap; align-items: center; justify-content: center;
}
.nav a {
  text-decoration: none; color: var(--fg-1);
  padding: 8px 0; border-bottom: 2px solid transparent;
  transition: border-color 180ms ease; white-space: nowrap;
}
.nav a:hover,
.nav a[aria-current="page"] { border-bottom-color: var(--asa-coastal-blue); }
.logo { text-align: left; justify-self: start; }
.logo a { text-decoration: none; display: inline-block; }
.logo img { height: 56px; margin: 0; display: block; }

.header-cta { display: flex; justify-content: flex-end; align-items: center; gap: 14px; white-space: nowrap; }
.header-phone {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 16px 10px 14px;
  border: 1.5px solid var(--asa-navy);
  border-radius: 999px;
  font-family: var(--ff-sans);
  color: var(--asa-navy);
  text-decoration: none; white-space: nowrap;
  transition: background 180ms ease, color 180ms ease;
}
.header-phone:hover { background: var(--asa-navy); color: var(--asa-white); }
.header-phone:hover small { color: rgba(255,255,255,0.85); }
.header-phone svg { width: 18px; height: 18px; flex: 0 0 auto; }
.header-phone .ph-text { display: flex; flex-direction: column; line-height: 1.1; }
.header-phone small {
  font-size: 10px; letter-spacing: var(--tr-4); text-transform: uppercase;
  color: var(--fg-3); font-weight: 500; margin-bottom: 2px;
  transition: color 180ms ease;
}
.header-phone .ph-num { font-size: 16px; font-weight: 600; letter-spacing: 0.01em; }

.hamburger {
  display: none; background: transparent; border: 0; cursor: pointer;
  padding: 8px; width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--asa-navy);
  transition: transform 220ms ease, opacity 220ms ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-phone-link {
  display: none; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  color: var(--asa-navy); text-decoration: none;
}
.mobile-phone-link svg { width: 22px; height: 22px; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 100;
  background: var(--asa-navy); color: var(--asa-cream);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px; padding: 80px 24px 40px;
  transform: translateY(-100%);
  transition: transform 320ms cubic-bezier(0.22,0.61,0.36,1);
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; text-align: center; }
.mobile-menu nav a {
  color: var(--asa-cream); text-decoration: none;
  font-family: var(--ff-display); font-style: italic; font-weight: 400;
  font-size: 28px; padding: 6px 12px; line-height: 1.2;
}
.mobile-menu-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; width: 100%; max-width: 320px; }
.mobile-menu-ctas .btn {
  background: var(--asa-coastal-blue); border-color: var(--asa-coastal-blue);
  color: var(--asa-white); text-align: center; padding: 14px 20px;
}
.mobile-menu-ctas .btn--ghost { background: transparent; border-color: var(--asa-cream); color: var(--asa-cream); }
.mobile-menu-close {
  position: absolute; top: 18px; right: 18px;
  background: transparent; border: 0; cursor: pointer;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--asa-cream); font-family: var(--ff-sans); font-size: 32px; line-height: 1;
}
body.menu-open { overflow: hidden; }

@media (max-width: 1100px) {
  .nav { display: none; }
  .siteheader-inner {
    display: flex; align-items: center; gap: 12px;
    position: relative; min-height: 60px;
    padding: 10px var(--gutter);
    grid-template-columns: none;
  }
  .header-cta { display: none; }
  .mobile-phone-link { display: flex; order: 1; flex: 0 0 44px; }
  .logo { order: 2; flex: 1 1 auto; text-align: center; }
  .logo img { height: 44px; margin: 0 auto; display: block; }
  .hamburger { display: flex; order: 3; flex: 0 0 44px; }
}

/* =========================================================================
   BUTTONS — shared
   ========================================================================= */
.btn {
  display: inline-block;
  padding: 16px 26px;
  font-family: var(--ff-sans);
  font-size: 13px; font-weight: 500;
  letter-spacing: var(--tr-4); text-transform: uppercase;
  border: 1px solid var(--asa-navy);
  background: var(--asa-navy);
  color: var(--asa-white);
  border-radius: 999px;
  text-decoration: none; cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.btn:hover { background: transparent; color: var(--asa-navy); }
.btn--inverse { background: var(--asa-white); color: var(--asa-navy); border-color: var(--asa-white); }
.btn--inverse:hover { background: transparent; color: var(--asa-white); }
.btn--ghost { background: transparent; color: var(--asa-navy); }
.btn--ghost:hover { background: var(--asa-navy); color: var(--asa-white); }
.btn--ghost-light { background: transparent; color: var(--asa-white); border-color: rgba(255,255,255,0.85); }
.btn--ghost-light:hover { background: var(--asa-white); color: var(--asa-navy); }
.btn--coastal { background: var(--asa-coastal-blue); border-color: var(--asa-coastal-blue); color: var(--asa-white); }
.btn--coastal:hover { background: transparent; color: var(--asa-coastal-blue); }

/* =========================================================================
   PAGE HERO — compact hero used on every non-home page.
   Single photo on the right, H1 + breadcrumb + sub on the left.
   Background fades from cream into off-white so the page below blends in.
   ========================================================================= */
.page-hero {
  position: relative;
  background: linear-gradient(180deg, var(--asa-off-white) 0%, #f3e9d8 100%);
  padding: 36px var(--gutter) 64px;
  border-bottom: 1px solid rgba(27,58,87,0.08);
}
.page-hero-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.page-hero-copy { text-align: left; }
.page-hero-eyebrow {
  font-family: var(--ff-sans);
  font-size: 12px; font-weight: 500;
  letter-spacing: var(--tr-5); text-transform: uppercase;
  color: var(--asa-coastal-blue);
  display: inline-flex; align-items: center; gap: 12px;
  margin: 0 0 14px;
}
.page-hero-eyebrow::before, .page-hero-eyebrow::after {
  content: ""; height: 1px; width: 28px; background: currentColor; opacity: 0.6;
}
.page-hero h1 {
  font-family: var(--ff-display);
  font-style: italic; font-weight: 400;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--asa-navy);
}
.page-hero-sub {
  font-family: var(--ff-text);
  font-size: 18px; line-height: 1.55;
  color: var(--fg-2);
  margin: 0 0 24px;
  max-width: 540px;
}
.page-hero-photo {
  width: 100%;
  aspect-ratio: 5/4;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px -20px rgba(27,58,87,0.4);
  background: var(--asa-cream);
}
.page-hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
  .page-hero { padding: 24px var(--gutter) 40px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .page-hero-photo { aspect-ratio: 4/3; order: -1; }
  .page-hero h1 { text-align: center; }
  .page-hero-sub { text-align: center; margin-left: auto; margin-right: auto; }
  .page-hero-eyebrow { display: flex; justify-content: center; }
}

/* =========================================================================
   IN-PHOTO CAPTION SYSTEM — reusable site-wide.
   Drop `.has-caption` on any image wrapper (hero photo, product tile,
   gallery item) that has overflow:hidden, then add a
   <figcaption class="photo-caption"> with .pc-title (+ optional .pc-sub).
   The scrim keeps text readable over any photo.
   ========================================================================= */
.has-caption { position: relative; }
.photo-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 34px 24px 18px;
  background: linear-gradient(180deg,
    rgba(27,58,87,0)    0%,
    rgba(27,58,87,0.10) 40%,
    rgba(27,58,87,0.62) 78%,
    rgba(27,58,87,0.86) 100%);
  color: var(--asa-white);
  pointer-events: none;
}
.photo-caption .pc-title {
  display: block;
  font-family: var(--ff-display);
  font-style: italic; font-weight: 400;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.45);
}
.photo-caption .pc-sub {
  display: block;
  margin-top: 6px;
  font-family: var(--ff-sans);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: var(--tr-4); text-transform: uppercase;
  color: var(--asa-cream);
  text-shadow: 0 1px 4px rgba(0,0,0,0.45);
}
/* Variant: pin to top instead of bottom */
.photo-caption--top {
  bottom: auto; top: 0;
  padding: 18px 24px 34px;
  background: linear-gradient(0deg,
    rgba(27,58,87,0) 0%,
    rgba(27,58,87,0.62) 78%,
    rgba(27,58,87,0.86) 100%);
}

/* =========================================================================
   BREADCRUMBS
   ========================================================================= */
.crumbs {
  font-family: var(--ff-sans);
  font-size: 12px; letter-spacing: var(--tr-3); text-transform: uppercase;
  color: var(--fg-3);
  margin: 0 0 18px;
}
.crumbs a { text-decoration: none; color: var(--fg-3); }
.crumbs a:hover { color: var(--asa-navy); }
.crumbs .sep { margin: 0 8px; opacity: 0.5; }
.crumbs [aria-current="page"] { color: var(--asa-navy); font-weight: 500; }
@media (max-width: 900px) { .crumbs { text-align: center; } }

/* =========================================================================
   TRUST STRIP — cream band under page hero, same as homepage
   ========================================================================= */
.truststrip {
  background: var(--asa-cream);
  color: var(--asa-navy);
  padding: 14px var(--gutter);
  font-family: var(--ff-sans);
  font-size: 12px; letter-spacing: var(--tr-4); text-transform: uppercase;
  text-align: center;
  border-bottom: 1px solid rgba(27,58,87,0.10);
}
.truststrip-inner { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; max-width: 1320px; margin: 0 auto; }
.truststrip-item { display: inline-flex; gap: 10px; align-items: center; opacity: 0.95; }
.truststrip-item .star { color: #c8941f; }
.truststrip-item .pipe { color: rgba(27,58,87,0.30); }
@media (max-width: 700px) {
  .truststrip .trust-hide-sm { display: none; }
  .truststrip { padding: 9px var(--gutter); font-size: 11px; }
  .truststrip-inner { gap: 0; }
}

/* =========================================================================
   SECTION SCAFFOLDING
   ========================================================================= */
.section { padding: 80px var(--gutter); }
.section-tight { padding: 56px var(--gutter); }
.section-inner { max-width: var(--container); margin: 0 auto; }
.section-wide  { max-width: 1320px; margin: 0 auto; }
.section-header { text-align: center; margin: 0 auto 48px; max-width: 720px; }
.section-icon { width: 64px; height: auto; margin: 0 auto 14px; display: block; }
@media (max-width: 700px) { .section-icon { width: 52px; } }
.section-eyebrow {
  font-family: var(--ff-sans);
  font-size: 12px; font-weight: 500;
  letter-spacing: var(--tr-5); text-transform: uppercase;
  color: var(--asa-coastal-blue);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ""; height: 1px; width: 28px; background: currentColor; opacity: 0.6;
}
.section-h2 {
  font-family: var(--ff-display); font-style: italic; font-weight: 400;
  font-size: clamp(30px, 3.6vw, 44px); line-height: 1.1; letter-spacing: -0.01em;
  margin: 0 0 16px; color: var(--asa-navy);
}
.section-sub {
  font-family: var(--ff-text); font-size: 18px; line-height: 1.55; color: var(--fg-2);
  margin: 0 auto; max-width: 640px;
}

/* =========================================================================
   PRODUCT CARDS — magazine-style overlay (photo dominates, title on photo)
   Updated 2026-05 — older buyers don't want a marketing paragraph on a card.
   The photo identifies the product; the big italic title confirms it.
   Body blurbs hidden visually but kept in markup for SEO + screen readers.
   ========================================================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
/* Modifier: 2x2 layout when there are exactly 4 cards (avoids the orphan in a 3-col grid). */
.products-grid--four { grid-template-columns: repeat(2, 1fr); gap: 22px; }

.product-card {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  background-color: var(--asa-stone-300);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--asa-white);
  box-shadow: 0 6px 18px rgba(27,58,87,0.10);
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(27,58,87,0.22); }

.product-card .img {
  position: absolute; inset: 0;
  background-color: var(--asa-stone-300);
  background-size: cover;
  background-position: center;
}
/* Bottom-anchored darkening gradient — keeps title readable over any photo */
.product-card .img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(27,58,87,0)    40%,
    rgba(27,58,87,0.10) 55%,
    rgba(27,58,87,0.55) 82%,
    rgba(27,58,87,0.82) 100%);
  pointer-events: none;
}
.product-card .copy {
  position: absolute;
  left: 24px; right: 24px; bottom: 22px;
  z-index: 2;
}
.product-card h3 {
  font-family: var(--ff-display); font-style: italic; font-weight: 400;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.05;
  color: var(--asa-white);
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.40);
  letter-spacing: -0.005em;
}
/* Body blurb — visually hidden but kept for SEO and screen readers */
.product-card p {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
/* "More →" sub-label sits under the title for clickable cards. Hidden on non-clickable variants. */
.product-card .more {
  font-family: var(--ff-sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: var(--tr-4); text-transform: uppercase;
  color: rgba(255,255,255,0.86);
  text-shadow: 0 1px 3px rgba(0,0,0,0.45);
  display: block;
  margin-top: 6px;
}
/* When the wrapper is <article> (non-clickable), the arrow indicator doesn't apply */
article.product-card .more { display: none; }

@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .products-grid--four { grid-template-columns: repeat(2, 1fr); }
  .product-card h3 { font-size: 22px; }
  .product-card .copy { left: 20px; right: 20px; bottom: 18px; }
}
@media (max-width: 500px) {
  .products-grid,
  .products-grid--four { grid-template-columns: 1fr; gap: 12px; }
  .product-card { aspect-ratio: 16/11; }
  .product-card h3 { font-size: 24px; }
}

/* =========================================================================
   PROCESS STRIP — "visit · measure · install" 3-step block
   ========================================================================= */
.process-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1080px; margin: 0 auto;
}
.process-step {
  text-align: center;
  padding: 8px;
}
.process-step .num {
  display: inline-flex; width: 48px; height: 48px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--asa-cream);
  color: var(--asa-navy);
  font-family: var(--ff-display); font-style: italic;
  font-size: 24px;
  margin: 0 0 14px;
}
.process-step h4 {
  font-family: var(--ff-display); font-style: italic; font-weight: 400;
  font-size: 22px; color: var(--asa-navy);
  margin: 0 0 8px;
}
.process-step p {
  font-family: var(--ff-sans); font-size: 14px; line-height: 1.55;
  color: var(--fg-2); margin: 0;
}
@media (max-width: 800px) { .process-strip { grid-template-columns: 1fr; gap: 24px; } }

/* =========================================================================
   CTA BANNER — "Ready when you are" call-to-action above footer
   ========================================================================= */
.cta-banner {
  background: var(--asa-navy);
  color: var(--asa-white);
  padding: 56px var(--gutter);
  text-align: center;
}
.cta-banner .inner { max-width: 720px; margin: 0 auto; }
.cta-banner h2 {
  font-family: var(--ff-display); font-style: italic; font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--asa-white);
}
.cta-banner p {
  font-family: var(--ff-sans);
  font-size: 16px; line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0 0 26px;
}
.cta-banner .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================================
   CONSULT FORM SECTION — Acadia-style two-column (form + trust card)
   ========================================================================= */
.consult-section {
  background: var(--asa-off-white);
  padding: 80px var(--gutter);
}
.consult-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}
.consult-form {
  background: var(--asa-white);
  border-radius: 14px;
  border-top: 3px solid var(--asa-cream);
  padding: 32px 32px 28px;
  box-shadow: 0 4px 12px rgba(27,58,87,0.08), 0 24px 48px -20px rgba(27,58,87,0.30);
}
.consult-form h2 {
  font-family: var(--ff-display); font-style: italic; font-weight: 400;
  font-size: 30px; line-height: 1.1;
  color: var(--asa-navy);
  margin: 0 0 8px;
}
.consult-form .hf-sub { font-family: var(--ff-sans); font-size: 14px; color: var(--fg-3); margin: 0 0 22px; }
.consult-form label {
  display: block;
  font-family: var(--ff-sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: var(--tr-4); text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 5px;
}
.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--ff-sans);
  font-size: 15px;
  color: var(--asa-navy);
  background: var(--asa-off-white);
  border: 1px solid rgba(27,58,87,0.16);
  border-radius: 8px;
  transition: border-color 180ms ease, background 180ms ease;
}
.consult-form textarea { min-height: 92px; resize: vertical; }
.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus {
  outline: none;
  border-color: var(--asa-navy);
  background: var(--asa-white);
}
.consult-form .hf-row { margin-bottom: 12px; }
.consult-form .hf-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.consult-form .hf-submit {
  width: 100%; margin-top: 8px;
  padding: 14px 20px;
  font-family: var(--ff-sans);
  font-size: 12px; font-weight: 500;
  letter-spacing: var(--tr-4); text-transform: uppercase;
  border: 1px solid var(--asa-navy);
  background: var(--asa-navy);
  color: var(--asa-white);
  border-radius: 999px;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}
.consult-form .hf-submit:hover { background: transparent; color: var(--asa-navy); }
.consult-form .hf-privacy {
  font-family: var(--ff-sans);
  font-size: 11px; color: var(--fg-3);
  text-align: center; margin: 12px 0 0; line-height: 1.5;
}

.consult-aside {
  padding: 8px 0;
}
.consult-aside h3 {
  font-family: var(--ff-display); font-style: italic; font-weight: 400;
  font-size: 26px; color: var(--asa-navy);
  margin: 0 0 14px;
}
.consult-aside p {
  font-family: var(--ff-sans);
  font-size: 15px; line-height: 1.6;
  color: var(--fg-2);
  margin: 0 0 14px;
}
.consult-aside .trust-list {
  list-style: none; padding: 0; margin: 18px 0 0;
}
.consult-aside .trust-list li {
  font-family: var(--ff-sans);
  font-size: 14px; line-height: 1.5;
  color: var(--fg-2);
  padding: 6px 0 6px 26px;
  position: relative;
}
.consult-aside .trust-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 6px;
  color: var(--asa-coastal-blue); font-weight: 600;
}
.consult-aside .phone-block {
  margin-top: 22px;
  padding: 18px 20px;
  background: var(--asa-white);
  border-radius: 10px;
  border-left: 3px solid var(--asa-cream);
}
.consult-aside .phone-block small {
  font-family: var(--ff-sans);
  font-size: 10px; letter-spacing: var(--tr-4); text-transform: uppercase;
  color: var(--fg-3); display: block; margin-bottom: 4px;
}
.consult-aside .phone-block a {
  font-family: var(--ff-display); font-style: italic;
  font-size: 24px; color: var(--asa-navy); text-decoration: none;
}
@media (max-width: 900px) {
  .consult-grid { grid-template-columns: 1fr; gap: 32px; }
  .consult-section { padding: 56px var(--gutter); }
}

/* =========================================================================
   FAQ ACCORDION
   ========================================================================= */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid rgba(27,58,87,0.12);
  padding: 4px 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(27,58,87,0.12); }
.faq-q {
  width: 100%; text-align: left;
  background: transparent; border: 0; cursor: pointer;
  padding: 22px 40px 22px 0;
  font-family: var(--ff-display); font-style: italic; font-weight: 400;
  font-size: 21px;
  color: var(--asa-navy);
  position: relative;
}
.faq-q::after {
  content: "+";
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-family: var(--ff-sans); font-style: normal; font-weight: 300;
  font-size: 26px; color: var(--asa-coastal-blue);
  transition: transform 180ms ease;
}
.faq-item[open] .faq-q::after { content: "−"; }
.faq-a {
  font-family: var(--ff-sans);
  font-size: 15px; line-height: 1.65;
  color: var(--fg-2);
  padding: 0 0 22px;
  max-width: 720px;
}

/* =========================================================================
   FOOTER (mirrors homepage)
   ========================================================================= */
.footer {
  background: #0e1a26;
  color: rgba(255,255,255,0.72);
  padding: 64px var(--gutter) 28px;
  font-family: var(--ff-sans); font-size: 13px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 40px; border-bottom: 1px solid var(--rule-on-navy);
}
.footer h5 {
  font-family: var(--ff-sans);
  font-size: 11px; letter-spacing: var(--tr-4); text-transform: uppercase;
  color: var(--asa-cream); margin: 0 0 14px; font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; line-height: 2; }
.footer a { color: rgba(255,255,255,0.84); text-decoration: none; }
.footer a:hover { color: var(--asa-cream); }
.footer .brand-block .logo-line {
  font-family: var(--ff-display); font-style: italic;
  font-size: 22px; color: var(--asa-white); margin-bottom: 4px;
}
.footer .brand-block .tag {
  font-size: 10px; letter-spacing: var(--tr-4); text-transform: uppercase;
  color: var(--asa-cream); margin-bottom: 18px;
}
.footer .brand-block address {
  font-style: normal; font-size: 13px; line-height: 1.7;
  color: rgba(255,255,255,0.74); margin-bottom: 14px;
}
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding-top: 22px;
  font-size: 11px; letter-spacing: var(--tr-3); text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.footer-bottom .legal { display: flex; gap: 18px; flex-wrap: wrap; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   RELATED CARDS GRID — "you might also like" sliver on product / service pages
   ========================================================================= */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px; margin: 0 auto;
}
@media (max-width: 800px) { .related-grid { grid-template-columns: 1fr; gap: 14px; } }

/* =========================================================================
   META TILE — generic info card with icon + line of text
   Used in service-area pages and trust strips
   ========================================================================= */
.meta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px; margin: 0 auto;
}
.meta-tile {
  background: var(--asa-white);
  border-radius: 12px;
  padding: 26px 24px;
  text-align: center;
  border: 1px solid rgba(27,58,87,0.06);
}
.meta-tile h4 {
  font-family: var(--ff-display); font-style: italic; font-weight: 400;
  font-size: 22px; color: var(--asa-navy);
  margin: 0 0 8px;
}
.meta-tile p {
  font-family: var(--ff-sans);
  font-size: 14px; line-height: 1.5;
  color: var(--fg-2); margin: 0;
}
@media (max-width: 800px) { .meta-row { grid-template-columns: 1fr; gap: 12px; } }

/* =========================================================================
   PROSE — long-form body copy on About / blog / service area pages
   ========================================================================= */
.prose {
  max-width: 720px; margin: 0 auto;
  font-family: var(--ff-text);
  font-size: 18px; line-height: 1.7;
  color: var(--fg-2);
}
.prose p { margin: 0 0 22px; }
.prose p:last-child { margin-bottom: 0; }
.prose h3 {
  font-family: var(--ff-display); font-style: italic; font-weight: 400;
  font-size: 28px; color: var(--asa-navy);
  margin: 36px 0 14px;
}
.prose a { color: var(--asa-navy); text-decoration: underline; text-decoration-color: var(--asa-cream); text-underline-offset: 3px; }
.prose a:hover { text-decoration-color: var(--asa-navy); }

/* =========================================================================
   CITY GRID — for service-area hub & community lists
   ========================================================================= */
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1100px; margin: 0 auto;
}
.city-tile {
  background: var(--asa-white);
  border: 1px solid rgba(27,58,87,0.10);
  border-radius: 8px;
  padding: 16px 18px;
  font-family: var(--ff-sans);
  text-decoration: none;
  color: var(--asa-navy);
  transition: border-color 180ms ease, background 180ms ease;
}
.city-tile:hover { border-color: var(--asa-navy); background: var(--asa-cream); }
.city-tile strong { display: block; font-size: 15px; font-weight: 600; }
.city-tile small {
  display: block;
  font-size: 11px; letter-spacing: var(--tr-3); text-transform: uppercase;
  color: var(--fg-3); margin-top: 2px;
}
@media (max-width: 900px) { .city-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .city-grid { grid-template-columns: 1fr; } }
