/* =========================================================
   JACK WARD & SONS PLUMBING — design system
   Authentic brand · Fire-engine Red + Ink Black + Bone · Since 1947
   (palette + slab type matched to their real 1947 logo & red fleet)
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&display=swap');

:root{
  /* "navy" vars repurposed as INK/CHARCOAL — kept name to cascade cleanly */
  --navy:#181715;
  --navy-deep:#0C0B0A;
  --navy-tint:#2C2A27;
  /* "brass" vars repurposed as BRAND RED */
  --brass:#C8202E;
  --brass-bright:#EE4B57;
  --brass-deep:#9C1620;
  --cream:#F4F0E9;
  --cream-light:#FCFBF8;
  --ink:#1A1714;
  --mute:#6A635B;
  --mute-dark:#A89F94;
  --rule:#E6E0D6;
  --rule-dark:#34322E;
  --success:#3F6B3A;

  --font-display: 'Zilla Slab', 'Rockwell', 'Georgia', serif;
  --font-body: 'Inter Tight', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;

  --maxw: 1240px;
  --pad: clamp(20px, 4vw, 56px);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(20,18,16,.06), 0 1px 3px rgba(20,18,16,.05);
  --shadow-md: 0 4px 10px rgba(20,18,16,.08), 0 10px 30px rgba(20,18,16,.10);
  --shadow-lg: 0 10px 30px rgba(20,18,16,.12), 0 30px 80px rgba(20,18,16,.16);
}

*{box-sizing:border-box}
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%;}
body{
  margin:0;
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.55;
  color:var(--ink);
  background:var(--cream-light);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{ max-width:100%; display:block; height:auto;}
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }

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

/* ---------- TYPE ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-mono);
  font-size:11px; letter-spacing:.22em; text-transform:uppercase;
  color:var(--brass); font-weight:600;
}
.eyebrow::before{ content:""; width:28px; height:1px; background:var(--brass); }
.h-display{
  font-family:var(--font-display);
  font-weight:700;
  font-size: clamp(40px, 6.4vw, 82px);
  line-height:1.04;
  letter-spacing:-.018em;
  color:var(--cream);
  margin:0;
}
.h-display em{ font-style:italic; color:var(--brass-bright); font-weight:600;}
.h-display--ink{ color:var(--ink); }
.h-display--ink em{ color:var(--brass-deep);}
h1,h2,h3{ font-family:var(--font-display); font-weight:700; letter-spacing:-.015em; margin:0;}
.h-section{
  font-family:var(--font-display);
  font-weight:700;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height:1.1;
  margin:0 0 14px;
  color:var(--navy);
}
.h-section em{ font-style:italic; color:var(--brass-deep); font-weight:600;}
.h-section--white{ color:var(--cream); }
.h-section--white em{ color:var(--brass-bright);}
.lead{ font-size:18px; color:var(--mute); max-width:62ch; }
.lead--white{ color:rgba(245,239,226,.78); }
.kicker{
  font-family:var(--font-mono);
  font-size:11px; letter-spacing:.22em; text-transform:uppercase;
  color:var(--mute); font-weight:600;
}

/* heritage stamp text */
.stamp{
  font-family:var(--font-mono);
  font-size:10px; letter-spacing:.32em; text-transform:uppercase;
  color:var(--brass); font-weight:600;
}

/* ---------- BUTTONS (BIG TAP TARGETS) ---------- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:18px 28px;
  border-radius:8px;
  font-weight:600; font-size:15px;
  letter-spacing:.02em;
  border:0; cursor:pointer;
  min-height:56px;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space:nowrap;
  font-family:var(--font-body);
}
.btn:active{ transform: translateY(1px); }
.btn--primary{ background:var(--brass); color:var(--cream-light); box-shadow: 0 6px 16px rgba(200,32,46,.28);}
.btn--primary:hover{ background:var(--brass-deep); }
.btn--ghost{ background:transparent; color:var(--cream); border:1px solid rgba(245,239,226,.35); }
.btn--ghost:hover{ border-color:var(--brass-bright); background:rgba(200,32,46,.08); color:var(--brass-bright);}
.btn--ink{ background:var(--navy); color:var(--cream); }
.btn--ink:hover{ background:var(--navy-deep); }
.btn--block{ width:100%; justify-content:center; }
.btn--xl{ padding:22px 36px; font-size:17px; min-height:64px; }

.btn-call{
  display:inline-flex; align-items:center; gap:14px;
  background:var(--brass); color:var(--cream-light);
  padding:18px 28px; border-radius:10px;
  font-weight:700; font-size:18px;
  box-shadow: 0 8px 22px rgba(200,32,46,.32);
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  min-height:60px;
  font-family:var(--font-body);
}
.btn-call:hover{ background:var(--brass-deep); transform:translateY(-1px); }
.btn-call__icon{
  width:36px;height:36px;border-radius:50%;
  background:rgba(245,239,226,.22);
  display:grid;place-items:center;
  flex:0 0 36px;
}
.btn-call__icon svg{ width:18px; height:18px; fill:var(--cream-light); }
.btn-call__num{ font-size:20px; letter-spacing:-.01em; }
.btn-call__lab{ font-family:var(--font-mono); font-size:10px; letter-spacing:.22em; text-transform:uppercase; opacity:.85; font-weight:600; }

/* ---------- HEADER ---------- */
.site-header{
  position:sticky; top:0; z-index:80;
  background:rgba(252,251,248,.88);
  -webkit-backdrop-filter:saturate(140%) blur(10px);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid var(--rule);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-stuck{
  box-shadow: 0 6px 24px rgba(20,18,16,.10);
  border-bottom-color: rgba(200,32,46,.18);
}
.hero__bg{ will-change: transform; }
.hdr{
  display:flex; align-items:center; justify-content:space-between;
  gap:24px; height:82px;
}
.brand{ display:flex; align-items:center; gap:14px; }
/* real Jack Ward logo — multiply drops the white box on the light header */
.brand__logo{ height:44px; width:auto; display:block; mix-blend-mode:multiply; }
.brand__mark{
  width:54px;height:54px; border-radius:10px;
  background:var(--navy);
  display:grid;place-items:center;
  position:relative; overflow:hidden;
  border:1px solid var(--navy-deep);
}
.brand__mark svg{ width:38px; height:38px; }
.brand__text{ display:flex; flex-direction:column; line-height:1.05; }
.brand__name{ font-family:var(--font-display); font-weight:700; font-size:19px; letter-spacing:-.01em; color:var(--navy);}
.brand__sub{ font-family:var(--font-mono); font-size:10px; letter-spacing:.22em; text-transform:uppercase; color:var(--brass); font-weight:600; margin-top:3px;}
@media(max-width:899px){ .brand__logo{ height:38px; } }

.hdr-nav{ display:none; gap:32px; }
.hdr-nav a{
  font-family:var(--font-body);
  font-size:14px; font-weight:500; color:var(--ink);
  letter-spacing:.01em; transition:color .15s ease;
  position:relative;
}
.hdr-nav a:hover, .hdr-nav a.active{ color:var(--brass-deep); }
.hdr-nav a.active::after{
  content:""; position:absolute; left:0; right:0; bottom:-26px;
  height:2px; background:var(--brass);
}

.hdr-cta{ display:flex; align-items:center; gap:14px; }
.hdr-phone{
  display:flex; flex-direction:column; line-height:1.05;
  text-align:right;
}
.hdr-phone__lab{ font-family:var(--font-mono); font-size:9px; letter-spacing:.22em; text-transform:uppercase; color:var(--brass); font-weight:600; }
.hdr-phone__num{ font-family:var(--font-display); font-size:20px; font-weight:500; color:var(--navy); letter-spacing:-.01em; margin-top:3px; white-space:nowrap; font-variation-settings: "SOFT" 30;}
.hdr-phone__num:hover{ color:var(--brass-deep); }

@media(max-width:899px){
  .hdr-phone__lab{ display:none; }
  .hdr-phone__num{ font-family:var(--font-body); font-size:14px; padding: 13px 16px; background:var(--brass); color:var(--cream-light); border-radius:8px; box-shadow: 0 4px 10px rgba(200,32,46,.28); margin-top:0; min-height:44px; display:inline-flex; align-items:center; font-weight:700;}
  .hdr-phone__num:hover{ color:var(--cream-light); background:var(--brass-deep);}
  .brand__text{ display:none; }
  .brand__mark{ width:46px; height:46px; }
  .brand__mark svg{ width:32px; height:32px;}
}

.hdr-burger{
  width:46px;height:46px; border:1px solid var(--rule); background:var(--cream-light);
  border-radius:8px; display:grid; place-items:center; cursor:pointer;
}
.hdr-burger span{ display:block; width:18px; height:2px; background:var(--ink); position:relative;}
.hdr-burger span::before,
.hdr-burger span::after{ content:""; position:absolute; left:0; width:18px; height:2px; background:var(--ink);}
.hdr-burger span::before{ top:-6px; }
.hdr-burger span::after{ top:6px; }

@media(min-width:900px){
  .hdr-nav{ display:flex; }
  .hdr-phone{ display:flex; }
  .hdr-burger{ display:none; }
}

.mob-menu{
  display:none;
  position:fixed; inset:82px 0 auto 0; background:var(--cream-light);
  border-bottom:1px solid var(--rule);
  padding:18px var(--pad) 26px;
  z-index:79;
  box-shadow:var(--shadow-md);
}
.mob-menu.is-open{ display:block; }
.mob-menu a{
  display:block; padding:14px 0; border-bottom:1px solid var(--rule);
  font-weight:500; color:var(--ink); font-size:16px;
}
.mob-menu a:last-of-type{ border-bottom:0; }

/* ---------- HERO ---------- */
.hero{
  position:relative; overflow:hidden;
  background:var(--navy-deep);
  color:var(--cream);
  isolation:isolate;
}
.hero__bg{
  position:absolute; inset:0; z-index:-1;
  background:
    linear-gradient(180deg, rgba(12,11,10,.72) 0%, rgba(12,11,10,.90) 60%, rgba(12,11,10,.97) 100%),
    url('https://images.unsplash.com/photo-1607472586893-edb57bdc0e39?auto=format&fit=crop&w=2000&q=70') center/cover no-repeat,
    var(--navy-deep);
}
.hero__bg::after{
  content:""; position:absolute; inset:0;
  background: radial-gradient(900px 600px at 82% 18%, rgba(200,32,46,.30), transparent 62%);
}
.hero__inner{
  padding: clamp(70px, 12vw, 140px) 0 clamp(72px, 11vw, 120px);
  display:grid; gap:32px;
  max-width: 1100px;
  position:relative;
}
.hero__stamp{
  display:flex; align-items:center; gap:18px;
  width:fit-content;
}
.hero__stamp-seal{
  width:64px; height:64px;
  display:grid; place-items:center;
  position:relative;
}
.hero__stamp-seal svg{ width:100%; height:100%; }
.hero__stamp-text{
  font-family:var(--font-mono);
  font-size:11px; letter-spacing:.32em; text-transform:uppercase;
  color:var(--brass-bright); font-weight:600;
  line-height:1.6;
}
.hero__stamp-text strong{ color:var(--cream); font-weight:600;}

.hero__title{ max-width: 18ch; }
.hero__lead{ max-width: 58ch; font-size:19px;}
.hero__cta{
  display:flex; flex-wrap:wrap; gap:14px; margin-top: 6px;
}
.hero__meta{
  display:flex; flex-wrap:wrap; gap: clamp(22px, 4vw, 48px);
  padding-top:28px; margin-top: 8px;
  border-top:1px solid rgba(245,239,226,.14);
}
.hero__meta-item{
  display:flex; flex-direction:column; gap:5px;
  font-family:var(--font-body);
  font-size:13px; color:rgba(245,239,226,.7);
}
.hero__meta-item strong{
  font-family:var(--font-display);
  font-variation-settings: "SOFT" 30, "opsz" 96;
  font-size: clamp(26px, 3.2vw, 36px); font-weight:500;
  color:var(--cream); letter-spacing:-.01em;
}
.hero__meta-item small{ font-family:var(--font-mono); font-size:10px; text-transform:uppercase; letter-spacing:.22em; color:rgba(200,32,46,.85); font-weight:600;}

/* ---------- SERVICE STRIP (sticky) ---------- */
.svc-bar{
  background:var(--brass);
  color:var(--cream-light);
  position:sticky; top:82px; z-index:60;
  border-bottom: 2px solid var(--brass-deep);
}
.svc-bar__inner{
  display:flex; gap:0;
  overflow-x:auto; -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.svc-bar__inner::-webkit-scrollbar{ display:none; }
.svc-bar__item{
  flex:1 0 auto;
  display:flex; align-items:center; gap:10px;
  padding:14px 18px; min-height:54px;
  font-weight:600; font-size:14px;
  color:var(--cream-light);
  white-space:nowrap;
  border-right:1px solid rgba(245,239,226,.2);
  transition:background .15s ease;
  letter-spacing:.01em;
}
.svc-bar__item:last-child{ border-right:0; }
.svc-bar__item:hover{ background:var(--brass-deep); }
.svc-bar__item .ico{ font-size:18px; line-height:1; }
.svc-bar__item--alert{ background: var(--brass-deep); }
.svc-bar__item--alert:hover{ background:#6F562F; }

@media(min-width:900px){
  .svc-bar__inner{ justify-content:center; }
  .svc-bar__item{ flex:0 1 auto; padding:14px 28px; font-size:15px; }
}

/* ---------- SECTIONS ---------- */
.section{ padding: clamp(64px, 9vw, 110px) 0; }
.section--cream{ background:var(--cream); }
.section--cream-light{ background:var(--cream-light);}
.section--navy{ background:var(--navy); color:var(--cream); }
.section--navy-deep{ background:var(--navy-deep); color:var(--cream); }
.section-head{
  display:grid; gap:14px;
  max-width:780px; margin: 0 auto clamp(40px, 6vw, 72px);
  text-align:center;
}
.section-head--left{ margin: 0 0 clamp(40px,6vw,72px); text-align:left; max-width: 720px;}
.section-head .lead{ margin-left:auto; margin-right:auto; }

/* ---------- DIVIDER ---------- */
.divider{
  display:flex; align-items:center; justify-content:center; gap:14px;
  margin: 48px 0;
}
.divider__line{ height:1px; flex:1; background:var(--rule); max-width:140px;}
.divider__mark{
  width:14px; height:14px; border:1px solid var(--brass);
  transform:rotate(45deg);
  position:relative;
}
.divider__mark::after{
  content:""; position:absolute; inset:3px;
  background:var(--brass);
}
.section--navy .divider__line, .section--navy-deep .divider__line{ background:rgba(245,239,226,.18);}

/* ---------- SERVICES GRID ---------- */
.svc-grid{
  display:grid; gap:18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.svc-card{
  background:var(--cream-light);
  border:1px solid var(--rule);
  border-radius: var(--radius);
  padding: 30px 26px;
  display:flex; flex-direction:column; gap:14px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position:relative;
}
.section--cream .svc-card{ background:#FCFAF3; }
.svc-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-md);
  border-color: var(--brass);
}
.svc-card__icon{
  width:56px; height:56px; border-radius:12px;
  background: linear-gradient(135deg, var(--brass) 0%, var(--brass-bright) 100%);
  display:grid; place-items:center;
  box-shadow: 0 6px 14px rgba(200,32,46,.28);
}
.svc-card__icon svg{ width:28px; height:28px; fill:var(--cream-light); }
.svc-card__title{
  font-family:var(--font-display);
  font-size:22px; font-weight:500; color:var(--navy);
  letter-spacing:-.01em;
  font-variation-settings: "SOFT" 30;
}
.svc-card__blurb{ font-size:15px; color:var(--mute); line-height:1.55;}
.svc-card__list{
  list-style:none; padding:0; margin:6px 0 0;
  display:grid; gap:7px;
}
.svc-card__list li{
  font-size:13px; color:var(--ink); display:flex; gap:9px; align-items:flex-start;
}
.svc-card__list li::before{
  content:""; width:6px; height:6px; border-radius:50%;
  background:var(--brass); margin-top:8px; flex:0 0 6px;
}
.svc-card__cta{
  margin-top:auto; padding-top:6px;
  display:inline-flex; align-items:center; gap:6px;
  font-weight:600; color:var(--navy); font-size:14px;
  font-family:var(--font-body);
}
.svc-card__cta::after{ content:"→"; transition:transform .15s ease; color:var(--brass);}
.svc-card:hover .svc-card__cta::after{ transform:translateX(4px); }

/* ---------- AREAS ---------- */
.areas{
  display:grid; gap: 36px;
  grid-template-columns: 1fr;
}
@media(min-width:900px){
  .areas{ grid-template-columns: 1fr 1.4fr; gap: 64px; align-items:start;}
}
.areas-grid{
  display:grid; gap:10px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}
.area-tile{
  background:var(--cream-light);
  border:1px solid var(--rule);
  border-radius:10px;
  padding:16px 18px;
  display:flex; flex-direction:column; gap:4px;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.section--navy-deep .area-tile, .section--navy .area-tile{ background:rgba(245,239,226,.04); border-color:rgba(245,239,226,.14);}
.section--navy-deep .area-tile__name, .section--navy .area-tile__name{ color:var(--cream); }
.section--navy-deep .area-tile__note, .section--navy .area-tile__note{ color:var(--mute-dark); }
.area-tile:hover{ border-color: var(--brass); background:rgba(200,32,46,.08); transform:translateY(-2px);}
.section--navy-deep .area-tile:hover, .section--navy .area-tile:hover{ background:rgba(200,32,46,.10); border-color:var(--brass-bright);}
.area-tile__name{ font-family:var(--font-display); font-weight:500; font-size:18px; letter-spacing:-.01em; color:var(--navy); font-variation-settings: "SOFT" 30;}
.area-tile__note{ font-family:var(--font-mono); font-size:10px; color:var(--mute); letter-spacing:.18em; text-transform:uppercase;}
.area-tile--home{ background: var(--brass) !important; border-color:var(--brass) !important; }
.area-tile--home .area-tile__name, .area-tile--home .area-tile__note{ color:var(--cream-light) !important; }

/* ---------- FAMILY STORY ---------- */
.story{
  display:grid; gap:48px; align-items:center;
  grid-template-columns: 1fr;
}
@media(min-width:900px){ .story{ grid-template-columns: 1.05fr 1fr; gap: 72px;} }
.story__img{
  position:relative; border-radius: var(--radius-lg); overflow:hidden;
  aspect-ratio: 4 / 5; background: var(--navy-tint);
}
.story__img img{ width:100%; height:100%; object-fit:cover; filter: sepia(.08) saturate(.92);}
.story__img::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,27,44,.6) 100%);
}
.story__img-badge{
  position:absolute; left:20px; bottom:20px;
  background:var(--brass); color:var(--cream-light);
  padding: 12px 18px; border-radius:8px;
  font-family:var(--font-mono);
  font-size:11px; font-weight:600; letter-spacing:.18em; text-transform:uppercase;
  display:flex; align-items:center; gap:8px;
}
.story__img-badge span{ color:var(--cream-light); font-size:14px;}

.story__pillars{
  display:grid; gap:18px; margin-top:32px;
  grid-template-columns: 1fr;
}
@media(min-width:520px){ .story__pillars{ grid-template-columns: 1fr 1fr; } }
.pillar{
  background: rgba(17,40,66,.04);
  border-left: 2px solid var(--brass);
  padding: 16px 20px;
}
.pillar__lab{ font-family:var(--font-mono); font-size:10px; letter-spacing:.22em; text-transform:uppercase; color:var(--mute); font-weight:600; }
.pillar__val{ font-family:var(--font-display); font-size:28px; font-weight:500; color:var(--navy); letter-spacing:-.01em; margin-top:4px; font-variation-settings: "SOFT" 30;}

/* ---------- STORY QUOTE ---------- */
.story__quote{
  margin: 28px 0 0;
  padding: 20px 24px;
  border-left: 3px solid var(--brass);
  background: rgba(200,32,46,.07);
  border-radius: 0 6px 6px 0;
}
.story__quote p{
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  margin: 0 0 8px;
  font-variation-settings: "SOFT" 60;
}
.story__quote cite{
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 600;
  font-style: normal;
}

/* ---------- GENERATIONS TIMELINE ---------- */
.gens{
  display:grid; gap:0;
  grid-template-columns: 1fr;
  margin-top:48px;
  border-top:1px solid var(--rule);
}
@media(min-width:760px){ .gens{ grid-template-columns: repeat(3, 1fr); border-top:0;} }
.gen{
  padding: 32px 0;
  display:grid; gap:14px;
  position:relative;
  border-bottom:1px solid var(--rule);
}
@media(min-width:760px){
  .gen{ padding: 0 32px 0 0; border-bottom:0; border-right:1px solid var(--rule);}
  .gen:last-child{ border-right:0; padding-right:0;}
  .gen + .gen{ padding-left:32px; padding-right:32px;}
  .gen:last-child{ padding-right:0; padding-left:32px;}
}
.gen__num{
  font-family:var(--font-mono);
  font-size:11px; letter-spacing:.32em; text-transform:uppercase;
  color:var(--brass); font-weight:600;
}
.gen__year{
  font-family:var(--font-display);
  font-size:42px; font-weight:500; color:var(--navy); letter-spacing:-.02em;
  font-variation-settings: "SOFT" 40, "opsz" 96;
  line-height:1;
}
.gen__name{
  font-family:var(--font-display);
  font-size:22px; font-weight:500; color:var(--navy);
  font-variation-settings: "SOFT" 30;
}
.gen__role{
  font-family:var(--font-mono);
  font-size:11px; letter-spacing:.18em; text-transform:uppercase;
  color:var(--brass-deep); font-weight:600;
}
.gen__copy{ font-size:14px; color:var(--mute); line-height:1.6;}

/* ---------- PLANS ---------- */
.plans{
  display:grid; gap:20px;
  grid-template-columns: 1fr;
}
@media(min-width:760px){ .plans{ grid-template-columns: repeat(3, 1fr);} }
.plan{
  background:var(--cream-light);
  border:1px solid var(--rule);
  border-radius:14px;
  padding: 34px 28px;
  display:flex; flex-direction:column; gap:18px;
  position:relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan:hover{ transform: translateY(-3px); box-shadow: var(--shadow-md);}
.plan--highlight{
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.plan--highlight:hover{ transform: translateY(-10px); }
.plan__tier{ font-family:var(--font-mono); font-size:11px; letter-spacing:.22em; text-transform:uppercase; font-weight:600; color:var(--brass);}
.plan--highlight .plan__tier{ color:var(--brass-bright); }
.plan__tagline{
  font-family:var(--font-display);
  font-size:22px; font-weight:500;
  color:var(--navy);
  font-variation-settings: "SOFT" 30;
  margin-top:4px;
}
.plan--highlight .plan__tagline{ color:var(--cream);}
.plan__price{ display:flex; align-items:baseline; gap:4px; margin: 10px 0 2px;}
.plan__price strong{ font-family:var(--font-display); font-size: 52px; font-weight:500; line-height:1; letter-spacing:-.03em; color:var(--navy); font-variation-settings: "SOFT" 40;}
.plan--highlight .plan__price strong{ color:var(--cream);}
.plan__price span{ font-size:16px; color:var(--mute); font-weight:500;}
.plan--highlight .plan__price span{ color:rgba(245,239,226,.6);}
.plan__billed{ font-family:var(--font-mono); font-size:11px; color:var(--mute); letter-spacing:.12em; text-transform:uppercase;}
.plan--highlight .plan__billed{ color:rgba(245,239,226,.6); }
.plan__list{ list-style:none; padding:0; margin:0; display:grid; gap:10px; flex:1;}
.plan__list li{ font-size:14px; display:flex; gap:10px; align-items:flex-start; }
.plan__list li::before{
  content:""; width:18px; height:18px; border-radius:50%;
  background: var(--brass); color: var(--cream-light);
  display:inline-block; flex:0 0 18px; margin-top:2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23F5EFE2' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>");
  background-repeat:no-repeat; background-position:center; background-size:14px;
}
.plan__badge{
  position:absolute; top:-12px; right:24px;
  background:var(--brass); color:var(--cream-light);
  font-family:var(--font-mono);
  font-size:10px; letter-spacing:.22em; text-transform:uppercase; font-weight:600;
  padding: 6px 12px; border-radius:999px;
  box-shadow: 0 4px 10px rgba(200,32,46,.4);
}
.plans-note{ font-family:var(--font-mono); text-align:center; color:var(--mute); font-size:12px; margin-top:28px; letter-spacing:.08em;}

/* ---------- REVIEWS ---------- */
.reviews{
  display:grid; gap:18px;
  grid-template-columns: 1fr;
}
@media(min-width:760px){ .reviews{ grid-template-columns: repeat(3, 1fr); } }
.review{
  background:var(--cream-light);
  border:1px solid var(--rule);
  border-radius:14px;
  padding:28px 26px;
  display:flex; flex-direction:column; gap:14px;
  position:relative;
}
.section--cream .review{ background:#FCFAF3;}
.review::before{
  content:'"';
  font-family:var(--font-display);
  font-size:80px;
  color:var(--brass);
  position:absolute;
  top:-8px; left:18px;
  line-height:1;
  opacity:.4;
  font-variation-settings: "SOFT" 80;
}
.review__stars{
  display:inline-flex; gap:2px; color:var(--brass);
  font-size:16px; letter-spacing:2px;
  position:relative;
}
.review__quote{
  font-family:var(--font-display);
  font-size:17px; line-height:1.55; color:var(--ink);
  font-weight:400;
  font-variation-settings: "SOFT" 50;
  position:relative;
}
.review__author{
  display:flex; align-items:center; gap:12px; margin-top: auto;
  padding-top:16px; border-top:1px solid var(--rule);
}
.review__avatar{
  width:42px; height:42px; border-radius:50%;
  background: var(--navy);
  color:var(--cream-light);
  display:grid; place-items:center;
  font-family:var(--font-display);
  font-weight:500; font-size:15px;
  flex:0 0 42px;
}
.review__name{ font-weight:600; font-size:14px; color:var(--navy);}
.review__src{ font-family:var(--font-mono); font-size:10px; letter-spacing:.22em; text-transform:uppercase; color:var(--mute); font-weight:600;}
.reviews-strip{
  display:flex; justify-content:center; gap:36px; flex-wrap:wrap;
  margin-top: 40px; padding-top:36px;
  border-top:1px solid var(--rule);
}
.reviews-strip__item{
  display:flex; flex-direction:column; align-items:center; gap:6px;
}
.reviews-strip__rating{
  font-family:var(--font-display);
  font-size:36px; font-weight:500; color:var(--navy); letter-spacing:-.02em;
  display:flex; align-items:center; gap:6px;
  font-variation-settings: "SOFT" 40;
}
.reviews-strip__rating .star{ color:var(--brass); }
.reviews-strip__src{ font-family:var(--font-mono); font-size:10px; letter-spacing:.22em; text-transform:uppercase; color:var(--mute); font-weight:600;}

/* ---------- FINANCING / VALUE ---------- */
.financing{
  background:var(--navy-deep);
  color:var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 64px);
  display:grid; gap:36px; align-items:center;
  grid-template-columns: 1fr;
  position:relative; overflow:hidden;
}
.financing::before{
  content:""; position:absolute; inset:0;
  background: radial-gradient(800px 500px at 90% 10%, rgba(200,32,46,.16), transparent 60%);
  pointer-events:none;
}
@media(min-width:900px){ .financing{ grid-template-columns: 1.3fr 1fr;} }
.financing__title{ font-family:var(--font-display); font-size:clamp(28px,3.4vw,42px); font-weight:500; line-height:1.1; letter-spacing:-.02em; font-variation-settings: "SOFT" 30; position:relative;}
.financing__title em{ font-style:italic; color:var(--brass-bright); font-variation-settings: "SOFT" 60;}
.financing__lead{ color:rgba(245,239,226,.78); max-width: 50ch; margin-top:14px; position:relative;}
.financing__points{ list-style:none; padding:0; margin:24px 0 0; display:grid; gap:10px; position:relative;}
.financing__points li{ display:flex; gap:10px; align-items:flex-start; font-size:15px;}
.financing__points li::before{
  content:"✓"; width:24px; height:24px; border-radius:50%;
  background: var(--brass); color:var(--cream-light);
  display:grid; place-items:center; font-size:13px; font-weight:700;
  flex:0 0 24px;
}
.financing__card{
  background: rgba(245,239,226,.04);
  border:1px solid rgba(200,32,46,.24);
  border-radius:14px;
  padding: 30px 28px;
  display:grid; gap:14px;
  position:relative;
}
.financing__cardlab{ font-family:var(--font-mono); font-size:10px; letter-spacing:.22em; text-transform:uppercase; color:var(--brass-bright); font-weight:600;}
.financing__cardpct{ font-family:var(--font-display); font-size:72px; font-weight:500; line-height:1; color:var(--brass-bright); letter-spacing:-.03em; font-variation-settings: "SOFT" 40;}
.financing__cardpct sup{ font-size:32px; vertical-align: top; margin-top:14px;}
.financing__cardcopy{ color:rgba(245,239,226,.82); font-size:14px;}
.financing__cardsmall{ font-family:var(--font-mono); font-size:10px; color:rgba(245,239,226,.5); margin-top:8px; line-height:1.6; letter-spacing:.08em;}

/* ---------- QUOTE FORM ---------- */
.quote{
  display:grid; gap:48px;
  grid-template-columns: 1fr;
}
@media(min-width:900px){ .quote{ grid-template-columns: 1fr 1.1fr; gap:80px;} }
.quote__why{
  list-style:none; padding:0; margin: 28px 0 0;
  display:grid; gap:14px;
}
.quote__why li{ display:flex; gap:12px; align-items:flex-start; font-size:15px; color:var(--ink);}
.quote__why li::before{
  content:""; width:22px; height:22px; flex:0 0 22px; margin-top:1px;
  border-radius:50%; background:var(--brass);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23F5EFE2' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>");
  background-repeat:no-repeat; background-position:center; background-size:14px;
}
.form{
  background:var(--cream-light);
  border:1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
  display:grid; gap:18px;
}
.form__row{ display:grid; gap:18px; grid-template-columns: 1fr;}
@media(min-width:600px){ .form__row--2{ grid-template-columns: 1fr 1fr;} }
.field{ display:flex; flex-direction:column; gap:6px;}
.field label{
  font-family:var(--font-mono);
  font-size:11px; letter-spacing:.18em; text-transform:uppercase; font-weight:600; color:var(--navy);
}
.field input, .field select, .field textarea{
  font-family:var(--font-body); font-size:16px;
  padding:16px 18px; border-radius:8px;
  border:1px solid var(--rule); background:var(--cream-light); color:var(--ink);
  min-height:56px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:0;
  border-color: var(--brass);
  box-shadow: 0 0 0 4px rgba(200,32,46,.14);
}
.field textarea{ resize:vertical; min-height:110px; line-height:1.5;}
.form__note{ font-family:var(--font-mono); font-size:11px; color:var(--mute); letter-spacing:.06em;}

/* ---------- BRANDS STRIP ---------- */
.brands-strip{
  display:flex; flex-wrap:wrap; justify-content:center; align-items:center;
  gap: clamp(28px, 6vw, 64px);
  padding: 18px 0;
}
.brand-chip{
  font-family:var(--font-display);
  font-weight:500; letter-spacing:.02em;
  font-size: clamp(22px, 3vw, 32px);
  color:var(--navy); opacity:.55;
  font-variation-settings: "SOFT" 30;
}
.brand-chip:hover{ opacity:1; color:var(--brass-deep);}
.brand-chip--white{ color:rgba(245,239,226,.55);}
.brand-chip--white:hover{ color:var(--brass-bright); opacity:1;}

/* ---------- CTA BAND ---------- */
.cta-band{
  background: var(--brass);
  color:var(--cream-light);
  text-align:center;
  padding: clamp(60px, 7vw, 100px) 0;
  position:relative; overflow:hidden;
}
.cta-band::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(600px 300px at 30% 100%, rgba(139,110,64,.45), transparent 60%),
    radial-gradient(500px 300px at 80% 0%, rgba(245,239,226,.12), transparent 60%);
  pointer-events:none;
}
.cta-band__title{
  font-family:var(--font-display);
  font-size: clamp(34px, 4.8vw, 60px); font-weight:500;
  letter-spacing:-.02em; line-height:1.05;
  font-variation-settings: "SOFT" 40, "opsz" 144;
  position:relative;
}
.cta-band__title em{ font-style:italic; font-variation-settings: "SOFT" 60, "opsz" 144;}
.cta-band__lead{ font-size:18px; opacity:.94; max-width: 52ch; margin: 16px auto 32px; position:relative;}
.cta-band .btn-call{ background:var(--cream-light); color:var(--navy); position:relative;}
.cta-band .btn-call .btn-call__icon{ background:rgba(17,40,66,.12);}
.cta-band .btn-call .btn-call__icon svg{ fill:var(--navy);}
.cta-band .btn-call:hover{ background:var(--cream); }

/* ---------- FOOTER ---------- */
.foot{
  background:var(--navy-deep);
  color: rgba(245,239,226,.78);
  padding: clamp(60px, 7vw, 96px) 0 32px;
  border-top:4px solid var(--brass);
}
.foot__grid{
  display:grid; gap:36px;
  grid-template-columns: 1fr;
}
@media(min-width:760px){ .foot__grid{ grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;} }
.foot h4{
  font-family:var(--font-mono);
  font-size:11px; letter-spacing:.22em; text-transform:uppercase;
  color:var(--brass-bright); margin: 0 0 16px; font-weight:600;
}
.foot ul{ list-style:none; padding:0; margin:0; display:grid; gap:10px;}
.foot a, .foot li{ font-size:14px; color: rgba(245,239,226,.7); transition: color .15s ease;}
.foot a:hover{ color: var(--brass-bright);}
.foot__brand{ display:flex; align-items:center; gap:12px; margin-bottom: 18px;}
.foot__logo{ height:52px; width:auto; background:#fff; padding:11px 16px; border-radius:10px; box-shadow:0 6px 18px rgba(0,0,0,.25);}
.foot__brand .brand__mark{ width:56px; height:56px; border-color:rgba(245,239,226,.16);}
.foot__brandname{ font-family:var(--font-display); color:var(--cream); font-weight:500; font-size:20px; letter-spacing:-.01em; font-variation-settings: "SOFT" 30;}
.foot__brandsub{ font-family:var(--font-mono); font-size:10px; letter-spacing:.22em; text-transform:uppercase; color:var(--brass-bright); margin-top:4px;}
.foot__about{ font-size:14px; color: rgba(245,239,226,.7); line-height:1.6; max-width: 40ch;}
.foot__phone{
  display:flex; flex-direction:column; gap:4px; margin-bottom:14px;
  padding: 14px 18px;
  background: rgba(245,239,226,.04);
  border:1px solid rgba(245,239,226,.1);
  border-radius:10px;
}
.foot__phone .lab{ font-family:var(--font-mono); font-size:9px; letter-spacing:.22em; text-transform:uppercase; color:var(--brass-bright); font-weight:600;}
.foot__phone .num{ font-family:var(--font-display); font-size:22px; font-weight:500; color:var(--cream); letter-spacing:-.01em; font-variation-settings: "SOFT" 30;}
.foot__phone .num:hover{ color: var(--brass-bright);}
.foot__bottom{
  margin-top: 56px; padding-top: 28px;
  border-top: 1px solid rgba(245,239,226,.1);
  display:flex; flex-wrap:wrap; justify-content:space-between; gap:16px;
  font-family:var(--font-mono);
  font-size:11px; color: rgba(245,239,226,.5); letter-spacing:.08em;
}
.foot__credit{ color: rgba(245,239,226,.5);}
.foot__credit a{ color: var(--brass-bright);}

/* ---------- NASHVILLE SKYLINE BANNER ---------- */
.skyline-banner{ position:relative; overflow:hidden; }
.skyline-banner img{
  width:100%; height: clamp(220px, 34vw, 420px); object-fit:cover; display:block;
  filter: saturate(1.04) contrast(1.02);
}
.skyline-banner::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(12,11,10,.82) 0%, rgba(12,11,10,.45) 42%, rgba(12,11,10,.05) 70%);
}
.skyline-banner__cap{
  position:absolute; inset:0; z-index:1;
  display:flex; flex-direction:column; justify-content:center; gap:10px;
  max-width: var(--maxw); margin:0 auto; padding: 0 var(--pad);
}
.skyline-banner__cap p{
  font-family:var(--font-display); font-weight:700;
  color:var(--cream); font-size: clamp(20px, 3vw, 34px);
  line-height:1.15; margin:0; max-width: 22ch;
  text-shadow: 0 2px 18px rgba(0,0,0,.4);
}
.skyline-banner__cap .eyebrow{ color:var(--brass-bright); }

/* ---------- REVEAL (with fallback visibility) ---------- */
.reveal{ opacity:1; transform:none;}
.reveal--ready{ opacity:0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease;}
.reveal--in{ opacity:1; transform: translateY(0);}

/* ---------- UTILS ---------- */
.spacer-sm{ height:24px; } .spacer-md{ height:48px;} .spacer-lg{ height:72px;}
.muted{ color:var(--mute);}
.center{ text-align:center; }
.no-wrap{ white-space:nowrap; }

/* ---------- PAGE HEADERS (sub-pages) ---------- */
.page-hero{
  background: var(--navy);
  color:var(--cream);
  padding: clamp(60px, 9vw, 120px) 0 clamp(50px, 6vw, 80px);
  border-bottom: 3px solid var(--brass);
  position:relative; overflow:hidden;
}
.page-hero::before{
  content:""; position:absolute; inset:0;
  background: radial-gradient(700px 400px at 85% 30%, rgba(200,32,46,.16), transparent 60%);
  pointer-events:none;
}
.page-hero__inner{ display:grid; gap:18px; max-width: 820px; position:relative;}
.page-hero__crumbs{ font-family:var(--font-mono); font-size:11px; letter-spacing:.22em; text-transform:uppercase; color:rgba(245,239,226,.6); font-weight:600;}
.page-hero__crumbs a{ color: var(--brass-bright);}

/* ---------- ARCHIVE / SERVICE AREAS LIST ---------- */
.area-list{
  display:grid; gap:14px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.area-list__item{
  background:var(--cream-light);
  border:1px solid var(--rule);
  border-radius:10px;
  padding: 20px 22px;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.area-list__item:hover{ border-color:var(--brass); transform:translateY(-2px); box-shadow:var(--shadow-sm);}
.area-list__city{ font-family:var(--font-display); font-size:20px; color:var(--navy); font-weight:500; font-variation-settings: "SOFT" 30; letter-spacing:-.01em;}
.area-list__county{ font-family:var(--font-mono); font-size:10px; letter-spacing:.22em; text-transform:uppercase; color:var(--brass-deep); margin-top:6px; font-weight:600;}

/* ---------- SVC CARD VARIANTS ---------- */
.svc-card--alert{
  border-color: rgba(139,110,64,.5);
  background: linear-gradient(135deg, rgba(139,110,64,.06) 0%, var(--cream-light) 100%);
}
.svc-card--alert .svc-card__icon{
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-tint) 100%);
  box-shadow: 0 6px 14px rgba(17,40,66,.22);
}
.svc-card--alert .svc-card__icon svg{ fill: var(--brass-bright); stroke: none; }
.svc-card--alert .svc-card__title{ color:var(--navy-deep);}
.svc-card__cta--call{ color: var(--brass-deep) !important; font-weight:700;}
.svc-card--dark{ background:rgba(245,239,226,.04); border-color:rgba(245,239,226,.1); }
.svc-card--dark:hover{ background:rgba(245,239,226,.07); border-color:rgba(200,32,46,.4); }
.svc-card--dark .svc-card__icon svg{ fill: none; }

/* ---------- BRANDS NOTE ---------- */
.brands-note{ font-family:var(--font-mono); text-align:center; color:var(--mute); font-size:12px; margin-top:16px; letter-spacing:.08em;}

/* ---------- AREA CARDS (service areas page) ---------- */
.areas-grid{
  display:grid; gap:18px;
  grid-template-columns: 1fr;
}
@media(min-width:600px){ .areas-grid{ grid-template-columns: repeat(2, 1fr);} }
@media(min-width:960px){ .areas-grid{ grid-template-columns: repeat(3, 1fr);} }

.area-card{
  background:var(--cream-light);
  border:1px solid var(--rule);
  border-radius:var(--radius);
  padding: 26px 24px;
  display:flex; flex-direction:column; gap:12px;
  position:relative;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.area-card:hover{ border-color:var(--brass); box-shadow:var(--shadow-md); transform:translateY(-2px);}
.area-card--primary{
  background: var(--navy);
  color: var(--cream);
  border-color: var(--brass);
  grid-column: 1 / -1;
  flex-direction:column;
  gap:16px;
  padding: 36px 32px;
}
@media(min-width:960px){ .area-card--primary{ grid-column: 1 / 2; grid-row: 1 / 3;} }
.area-card__badge{
  display:inline-block;
  background:var(--brass); color:var(--cream-light);
  font-family:var(--font-mono);
  font-size:9px; letter-spacing:.22em; text-transform:uppercase; font-weight:600;
  padding: 5px 12px; border-radius:999px;
  width:fit-content;
}
.area-card__city{
  font-family:var(--font-display);
  font-size:28px; font-weight:500; letter-spacing:-.01em;
  font-variation-settings: "SOFT" 30;
  color:var(--navy); margin:0;
}
.area-card--primary .area-card__city{ font-size:36px; color:var(--cream);}
.area-card__county{
  font-family:var(--font-mono);
  font-size:10px; letter-spacing:.22em; text-transform:uppercase;
  color:var(--brass-deep); font-weight:600;
}
.area-card--primary .area-card__county{ color:var(--brass-bright);}
.area-card__copy{ font-size:14px; color:var(--mute); line-height:1.6;}
.area-card--primary .area-card__copy{ color:rgba(245,239,226,.75); font-size:16px;}
.area-card__services{
  list-style:none; padding:0; margin:0;
  display:grid; gap:8px;
}
.area-card__services li{
  font-size:14px; display:flex; gap:9px; align-items:flex-start; color:rgba(245,239,226,.8);
}
.area-card__services li::before{
  content:""; width:6px; height:6px; border-radius:50%;
  background:var(--brass-bright); margin-top:8px; flex:0 0 6px;
}

/* ---------- GENERATION TIMELINE (about page extended) ---------- */
.gen__seal{
  width:64px; height:64px;
  display:grid; place-items:center;
  flex:0 0 64px;
}
.gen__seal svg{ width:64px; height:64px; }
.gen__body{ display:grid; gap:10px;}
.gen__label{
  font-family:var(--font-mono);
  font-size:10px; letter-spacing:.22em; text-transform:uppercase;
  color:var(--brass-deep); font-weight:600;
}
.gen--current .gen__label{ color:var(--brass);}
.gen__years{
  font-family:var(--font-mono);
  font-size:11px; letter-spacing:.18em; text-transform:uppercase;
  color:var(--mute); font-weight:600;
}
.gen__marks{
  list-style:none; padding:0; margin:4px 0 0;
  display:grid; gap:7px;
}
.gen__marks li{
  font-size:13px; color:var(--mute); display:flex; gap:8px; align-items:flex-start;
}
.gen__marks li::before{
  content:""; width:6px; height:6px; border-radius:50%;
  background:var(--brass); margin-top:7px; flex:0 0 6px;
}
.gen--current{ background:rgba(17,40,66,.03); border-radius:var(--radius); padding:24px;}
@media(min-width:760px){
  .gen--current{ padding:24px 28px; margin:-24px -8px; background:rgba(17,40,66,.04); border-radius:var(--radius);}
}

/* ---------- PHOTO GRID ---------- */
.photo-grid{
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 36px;
}
@media(min-width:760px){
  .photo-grid{ grid-template-columns: 1fr 1fr; align-items:start; }
}
.photo-grid__main,
.photo-grid__item{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy-deep);
}
.photo-grid__main img,
.photo-grid__item img{
  width: 100%; height: 100%;
  object-fit: cover; display:block;
}
.photo-grid__main{ height: 360px; }
.photo-grid__side{ display:flex; flex-direction:column; gap:16px; }
.photo-grid__item{ height: 168px; }
@media(min-width:760px){
  .photo-grid__main{ height: 360px; }
}
.photo-grid__cap{
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 16px;
  background: linear-gradient(to top, rgba(10,20,36,.85), transparent);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 600;
}

/* ---------- CONTACT CHANNELS ---------- */
.contact-channels{
  display:grid; gap:18px;
  grid-template-columns: 1fr;
}
@media(min-width:600px){ .contact-channels{ grid-template-columns: repeat(2, 1fr);} }
@media(min-width:960px){ .contact-channels{ grid-template-columns: repeat(4, 1fr);} }

.channel-card{
  background:var(--cream-light);
  border:1px solid var(--rule);
  border-radius:var(--radius);
  padding: 28px 24px;
  display:flex; flex-direction:column; gap:12px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.channel-card:hover{ border-color:var(--brass); box-shadow:var(--shadow-md); transform:translateY(-2px);}
.channel-card--primary{
  background:var(--navy);
  border-color:var(--brass);
  color:var(--cream);
}
.channel-card--primary:hover{ background:var(--navy-deep);}
.channel-card__icon{
  width:48px; height:48px; border-radius:12px;
  background:linear-gradient(135deg, var(--brass) 0%, var(--brass-bright) 100%);
  display:grid; place-items:center;
  box-shadow:0 4px 12px rgba(200,32,46,.3);
}
.channel-card--primary .channel-card__icon{
  background:rgba(200,32,46,.18);
  box-shadow:none;
  border:1px solid rgba(200,32,46,.3);
}
.channel-card__icon svg{ width:24px; height:24px; stroke:var(--cream-light);}
.channel-card__label{
  font-family:var(--font-mono);
  font-size:10px; letter-spacing:.22em; text-transform:uppercase; font-weight:600;
  color:var(--brass-deep);
}
.channel-card--primary .channel-card__label{ color:var(--brass-bright);}
.channel-card__value{
  font-family:var(--font-display);
  font-size:28px; font-weight:500; color:var(--navy); letter-spacing:-.01em;
  font-variation-settings: "SOFT" 30; line-height:1.1;
  text-decoration:none;
}
.channel-card--primary .channel-card__value{ color:var(--cream); font-size:32px;}
.channel-card__value--sm{ font-size:16px; color:var(--navy); font-family:var(--font-body); font-weight:600; letter-spacing:0; font-variation-settings: normal;}
.channel-card--primary .channel-card__value--sm{ color:var(--cream); font-size:16px;}
.channel-card__value:hover{ color:var(--brass-deep);}
.channel-card--primary .channel-card__value:hover{ color:var(--brass-bright);}
.channel-card__note{ font-size:13px; color:var(--mute); line-height:1.55; flex:1;}
.channel-card--primary .channel-card__note{ color:rgba(245,239,226,.65);}
.channel-card .btn{ margin-top:auto;}

/* ---------- FAQ ---------- */
.faq-list{ display:grid; gap:0; margin-top:16px; border-top:1px solid var(--rule);}
.faq-item{ border-bottom:1px solid var(--rule); }
.faq-item__q{
  display:flex; justify-content:space-between; align-items:center;
  gap:16px; padding:22px 0;
  font-family:var(--font-display);
  font-size:18px; font-weight:500; color:var(--navy); cursor:pointer;
  font-variation-settings: "SOFT" 30;
  letter-spacing:-.01em;
  list-style:none;
}
.faq-item__q::-webkit-details-marker{ display:none;}
.faq-item__q::after{
  content:"↓"; font-family:var(--font-mono); font-size:14px;
  color:var(--brass); flex:0 0 auto;
  transition:transform .2s ease;
}
details[open] .faq-item__q::after{ transform:rotate(180deg);}
.faq-item__a{
  padding: 0 0 22px;
  font-size:15px; color:var(--mute); line-height:1.65;
  max-width:72ch;
}
.faq-item:hover .faq-item__q{ color:var(--brass-deep);}

/* ===== Mobile fixes ===== */
@media(max-width:600px){
  .hero__inner{ padding-top: 60px; padding-bottom: 64px; gap: 24px;}
  .hero__cta .btn-call{ width:100%; }
  .hero__cta .btn{ width:100%; justify-content:center; }
  .hero__meta{ gap:18px; }
  .hero__meta-item{ flex:1 1 calc(50% - 9px);}
  .svc-bar__item{ padding: 12px 14px; font-size:13px; }
  .section{ padding: 56px 0; }
  .h-display{ font-size: clamp(34px, 9vw, 44px);}
  .hero__stamp-seal{ width:54px; height:54px;}
  .area-card--primary{ grid-column:auto; }
  .channel-card{ grid-column:auto; }
}
