/* =================================================================
   Mindy Doan, CPA — V2 Editorial
   Design: warm ivory canvas, charcoal ink, gold + sage accents.
   Type:  Cormorant Garamond (display) / Plus Jakarta Sans (text).
   ================================================================= */

/* ---------- Tokens ---------- */
:root {
  --ivory:        #f7f3ee;
  --ivory-deep:   #efe8de;
  --paper:        #fbf9f5;
  --charcoal:     #1c1c1c;
  --charcoal-80:  rgba(28, 28, 28, .80);
  --charcoal-55:  rgba(28, 28, 28, .55);
  --charcoal-30:  rgba(28, 28, 28, .30);
  --gold:         #c8a96e;
  --gold-deep:    #b08f4f;
  --sage:         #4a5c4a;
  --sage-deep:    #384636;
  --line:         rgba(28, 28, 28, .12);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1240px;
  --gutter: clamp(1.4rem, 5vw, 5rem);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

::selection { background: var(--gold); color: var(--charcoal); }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}

.display {
  font-size: clamp(2.8rem, 7.5vw, 6.4rem);
  font-weight: 700;
}
.h2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
.h3 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); }

.lede {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.6;
  color: var(--charcoal-80);
  font-weight: 400;
}

.overline {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-block;
  max-width: 100%;
}
.overline::before {
  content: "";
  display: inline-block;
  width: 2.2rem; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: .85rem;
  margin-bottom: .18em;
}
.overline.no-rule::before { display: none; }

em, .italic { font-style: italic; }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { position: relative; }

.section-pad   { padding-block: clamp(4.5rem, 11vw, 9rem); }
.section-pad-s { padding-block: clamp(3.2rem, 7vw, 5.5rem); }

.rule { height: 1px; background: var(--line); border: 0; }
.rule-gold { height: 2px; width: 56px; background: var(--gold); border: 0; }

/* Ghost section numbers */
.ghost-num {
  position: absolute;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(9rem, 22vw, 20rem);
  line-height: .8;
  color: var(--charcoal);
  opacity: .035;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  top: -.18em;
}
.ghost-num.right { right: var(--gutter); }
.ghost-num.left  { left: var(--gutter); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--charcoal);
  --fg: var(--ivory);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 1.05rem 1.9rem;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bg);
  border-radius: 0;
  transition: transform .4s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn .arw { transition: transform .4s var(--ease); }
.btn:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.btn:hover .arw { transform: translateX(5px); }
.btn:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }

.btn-ghost {
  --bg: transparent;
  --fg: var(--charcoal);
  border-color: var(--charcoal-30);
}
.btn-ghost:hover { background: var(--charcoal); border-color: var(--charcoal); color: var(--ivory); }

.btn-light {
  --bg: var(--ivory);
  --fg: var(--charcoal);
}
.btn-light:hover { background: var(--gold); border-color: var(--gold); }

.btn-outline-light {
  --bg: transparent;
  --fg: var(--ivory);
  border-color: rgba(247,243,238,.35);
}
.btn-outline-light:hover { background: var(--ivory); border-color: var(--ivory); color: var(--charcoal); }

/* Text link with animated underline */
.tlink {
  position: relative;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--charcoal);
}
.tlink::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.tlink:hover::after { transform: scaleX(1); }
.tlink .arw { transition: transform .35s var(--ease); }
.tlink:hover .arw { transform: translateX(4px); }

/* =================================================================
   Navigation
   ================================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 238, .82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 30px rgba(28,28,28,.05);
}
.nav-inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 1.05rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Monogram */
.brand { display: flex; align-items: center; gap: .85rem; }
.monogram {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1.5px solid var(--charcoal);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .02em;
  color: var(--charcoal);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.brand:hover .monogram { background: var(--charcoal); color: var(--gold); }
.brand-name {
  display: flex; flex-direction: column; line-height: 1.05;
}
.brand-name b {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0;
}
.brand-name span {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.6vw, 2.6rem);
}
.nav-links a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--charcoal-80);
  position: relative;
  padding-block: .3rem;
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--charcoal); }

.nav-cta {
  display: flex; align-items: center; gap: 1.4rem;
}
.nav-phone {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .9rem; font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
}
.nav-phone svg { color: var(--gold-deep); }
.nav-phone:hover { color: var(--gold-deep); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: none; border: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block; height: 1.5px; width: 26px;
  background: var(--charcoal);
  transition: transform .4s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =================================================================
   Hero (home)
   ================================================================= */
.hero { padding-top: clamp(3rem, 7vw, 6rem); padding-bottom: clamp(3.5rem, 8vw, 7rem); overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: end;
}
.hero h1 { margin-top: 1.6rem; }
.hero h1 em {
  color: var(--gold-deep);
  font-style: italic;
  font-weight: 500;
}
.hero-lede { margin-top: 1.8rem; max-width: 32ch; }
.hero-actions { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.hero-aside {
  position: relative;
  padding-bottom: .5rem;
}
.hero-figure {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(180deg, rgba(28,28,28,0) 40%, rgba(28,28,28,.28) 100%),
    url("assets/accounting-desk.jpg") center/cover no-repeat;
  border: 1px solid var(--line);
}
.hero-badge {
  position: absolute;
  left: -1.4rem; bottom: 2rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 1.1rem 1.4rem;
  box-shadow: 0 24px 50px -28px rgba(28,28,28,.45);
}
.hero-badge .n {
  font-family: var(--serif); font-weight: 700;
  font-size: 2.6rem; line-height: 1; color: var(--sage);
}
.hero-badge .l {
  font-size: .68rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--charcoal-55); margin-top: .35rem;
}

/* credential strip under hero */
.cred-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.cred-strip ul {
  display: flex; flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.2rem 2rem;
  padding-block: 1.5rem;
}
.cred-strip li {
  display: flex; align-items: baseline; gap: .7rem;
  font-size: .85rem; letter-spacing: .04em;
  color: var(--charcoal-80);
}
.cred-strip li b {
  font-family: var(--serif); font-weight: 700;
  font-size: 1.05rem; color: var(--charcoal);
}

/* =================================================================
   Stats
   ================================================================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}
.stat { position: relative; z-index: 1; }
.stat .num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(3.4rem, 7vw, 5.4rem);
  line-height: .9;
  color: var(--charcoal);
  display: flex; align-items: flex-start;
}
.stat .num .suf { color: var(--gold-deep); font-size: .55em; margin-left: .08em; line-height: 1.5; }
.stat .lbl {
  margin-top: 1rem;
  font-size: .82rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--charcoal-55);
}
.stat .desc { margin-top: .7rem; color: var(--charcoal-80); font-size: .98rem; max-width: 32ch; }

/* =================================================================
   Section headers
   ================================================================= */
.sec-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.sec-head .h2 { margin-top: 1.2rem; }
.sec-head .sec-aside { padding-bottom: .4rem; }

/* =================================================================
   Services
   ================================================================= */
.svc-list { border-top: 1px solid var(--line); position: relative; z-index: 1; }
.svc-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.2rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(1.8rem, 3.5vw, 2.6rem);
  border-bottom: 1px solid var(--line);
  transition: padding-inline .45s var(--ease), background .45s var(--ease);
}
.svc-row .idx {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold-deep);
  width: 2.5rem;
}
.svc-row .body h3 { transition: color .35s var(--ease); }
.svc-row .body p { margin-top: .55rem; color: var(--charcoal-80); max-width: 60ch; }
.svc-row .go {
  width: 48px; height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--charcoal);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
  flex-shrink: 0;
}
.svc-row:hover { background: var(--paper); padding-inline: clamp(.6rem, 2vw, 1.6rem); }
.svc-row:hover .body h3 { color: var(--gold-deep); }
.svc-row:hover .go { background: var(--charcoal); color: var(--gold); border-color: var(--charcoal); transform: rotate(-45deg); }

/* Full service blocks (services page) */
.svc-block {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(1.5rem, 5vw, 4.5rem);
  padding-block: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
  align-items: start;
}
.svc-block:last-of-type { border-bottom: 1px solid var(--line); }
.svc-block .lead { position: sticky; top: 110px; }
.svc-block .lead .idx {
  font-family: var(--serif); font-weight: 700;
  font-size: 1rem; color: var(--gold-deep);
  letter-spacing: .1em;
}
.svc-block .lead h2 { margin-top: 1rem; }
.svc-block .lead .tag {
  margin-top: 1.2rem;
  display: inline-block;
  font-size: .72rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--sage);
  padding: .4rem .8rem; border: 1px solid rgba(74,92,74,.3);
}
.svc-block .detail p { color: var(--charcoal-80); }
.svc-block .detail p + p { margin-top: 1rem; }
.svc-block .detail .feats {
  margin-top: 1.6rem;
  display: grid; gap: .85rem;
  border-top: 1px solid var(--line); padding-top: 1.6rem;
}
.svc-block .detail .feats li {
  display: flex; gap: .85rem; align-items: flex-start;
  font-size: .98rem; color: var(--charcoal);
}
.svc-block .detail .feats li svg { color: var(--gold-deep); margin-top: .28rem; flex-shrink: 0; }

/* =================================================================
   Cards / generic
   ================================================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 30px 50px -34px rgba(28,28,28,.4); }
.card .ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  color: var(--gold-deep);
  margin-bottom: 1.3rem;
}
.card h3 { font-size: 1.45rem; }
.card p { margin-top: .6rem; color: var(--charcoal-80); font-size: .98rem; }

/* =================================================================
   About teaser (home) + About page
   ================================================================= */
.split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split.flip { grid-template-columns: 1.08fr .92fr; }

.portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background: url("assets/signing.jpg") center/cover no-repeat;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  overflow: hidden;
}
.portrait::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,.88) 0%, rgba(20,20,20,.40) 45%, rgba(20,20,20,.12) 100%);
  z-index: 1;
}
.portrait .ph-mono { display: none; }
.portrait .ph-cap {
  position: absolute; bottom: 1.6rem; left: 1.6rem; right: 1.6rem;
  display: flex; justify-content: space-between; align-items: flex-end;
  font-size: .72rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(247,243,238,.85);
  z-index: 2;
}
.portrait .stamp {
  position: absolute; top: 1.4rem; right: 1.4rem;
  width: 84px; height: 84px; border-radius: 50%;
  border: 1px solid rgba(200,169,110,.7);
  display: grid; place-items: center; text-align: center;
  font-size: .56rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
  line-height: 1.4;
  background: rgba(20,20,20,.45);
  z-index: 2;
}

/* ---------- Photo mosaic strip ---------- */
.photo-strip { overflow: hidden; }
.photo-strip-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  height: clamp(200px, 26vw, 360px);
}
.ps-img {
  background-size: cover;
  background-position: center;
  transition: transform .65s var(--ease);
  overflow: hidden;
}
.ps-img:hover { transform: scale(1.04); }

.about-body h2 { margin-top: 1.2rem; }
.about-body .lede { margin-top: 1.5rem; }
.about-body p + p { margin-top: 1.1rem; }
.about-body p { color: var(--charcoal-80); }
.about-sign {
  margin-top: 2.2rem; display: flex; align-items: center; gap: 1.1rem;
}
.about-sign .sig {
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: 2rem; color: var(--charcoal);
}
.about-sign .who { font-size: .82rem; color: var(--charcoal-55); letter-spacing: .04em; }
.about-sign .who b { display:block; font-size: .92rem; color: var(--charcoal); letter-spacing: 0; }

/* Credentials list */
.creds {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.creds li {
  padding: 1.7rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.creds li .k { font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); }
.creds li .v { font-family: var(--serif); font-weight: 700; font-size: 1.7rem; margin-top: .5rem; line-height: 1.1; }
.creds li .s { font-size: .88rem; color: var(--charcoal-55); margin-top: .35rem; }

/* Pull quote */
.pullquote {
  text-align: center;
  max-width: 22ch;
  margin-inline: auto;
}
.pullquote .mark {
  font-family: var(--serif); font-size: 5rem; line-height: .5;
  color: var(--gold); display: block; height: .6em;
}
.pullquote blockquote {
  font-family: var(--serif);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.8rem, 4.2vw, 3.2rem);
  line-height: 1.18;
  color: var(--charcoal);
}
.pullquote cite {
  display: block; margin-top: 2rem;
  font-family: var(--sans); font-style: normal;
  font-size: .78rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--charcoal-55);
}

/* Office card (about) */
.office-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
}
.office-card h3 { font-size: 1.7rem; }
.office-card .oc-row {
  display: flex; gap: 1rem; align-items: flex-start;
  padding-block: 1.1rem; border-bottom: 1px solid var(--line);
}
.office-card .oc-row:last-child { border-bottom: 0; padding-bottom: 0; }
.office-card .oc-row:first-of-type { border-top: 1px solid var(--line); margin-top: 1.5rem; }
.office-card .oc-row .ic { color: var(--gold-deep); flex-shrink: 0; margin-top: .15rem; }
.office-card .oc-row .k { font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--charcoal-55); }
.office-card .oc-row .v { margin-top: .25rem; font-size: 1rem; }
.office-card .oc-row .v a:hover { color: var(--gold-deep); }

/* =================================================================
   Trust strip
   ================================================================= */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.trust .cell {
  background: var(--ivory);
  padding: clamp(1.6rem, 3vw, 2.4rem);
}
.trust .cell .ic { color: var(--gold-deep); margin-bottom: 1rem; }
.trust .cell h4 { font-family: var(--serif); font-weight: 700; font-size: 1.35rem; }
.trust .cell p { margin-top: .5rem; font-size: .92rem; color: var(--charcoal-80); }

/* =================================================================
   Dark CTA banner / dark sections
   ================================================================= */
.dark {
  background: var(--charcoal);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.dark h2, .dark h3 { color: var(--ivory); }
.dark .overline { color: var(--gold); }
.dark .overline::before { background: var(--gold); }
.dark .lede { color: rgba(247,243,238,.72); }
.dark .ghost-num { color: #fff; opacity: .04; }
.dark .pullquote blockquote { color: var(--ivory); }
.dark .pullquote cite { color: rgba(247,243,238,.6); }

.cta-banner { text-align: center; }
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(20,20,20,.78);
  z-index: 0;
}
.cta-banner .ghost-num { position: relative; z-index: 1; }
.cta-banner .inner { max-width: 42ch; margin-inline: auto; position: relative; z-index: 1; }
.cta-banner h2 { margin-top: 1.4rem; }
.cta-banner .lede { margin-top: 1.4rem; }
.cta-banner .actions { margin-top: 2.4rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-banner .phones {
  margin-top: 2.6rem; padding-top: 2rem;
  border-top: 1px solid rgba(247,243,238,.16);
  display: flex; gap: clamp(1.5rem,5vw,3.5rem); justify-content: center; flex-wrap: wrap;
}
.cta-banner .phones a {
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
}
.cta-banner .phones .k { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.cta-banner .phones .v { font-family: var(--serif); font-size: 1.55rem; font-weight: 700; }
.cta-banner .phones a:hover .v { color: var(--gold); }

/* =================================================================
   Page hero (interior pages)
   ================================================================= */
.page-hero { padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.page-hero .crumbs {
  font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--charcoal-55); margin-bottom: 1.8rem;
}
.page-hero .crumbs a:hover { color: var(--gold-deep); }
.page-hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(1.5rem,4vw,3.5rem); align-items: end; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); margin-top: 1.2rem; }
.page-hero .lede { margin-top: 1.6rem; }

/* =================================================================
   FAQ
   ================================================================= */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: clamp(1.4rem, 3vw, 2rem) 0;
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  color: var(--charcoal);
  transition: color .3s var(--ease);
}
.faq-q:hover { color: var(--gold-deep); }
.faq-q .pm {
  position: relative; width: 22px; height: 22px; flex-shrink: 0;
}
.faq-q .pm::before, .faq-q .pm::after {
  content: ""; position: absolute; background: var(--gold-deep);
  left: 50%; top: 50%; transition: transform .4s var(--ease);
}
.faq-q .pm::before { width: 16px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-q .pm::after  { width: 1.5px; height: 16px; transform: translate(-50%,-50%); }
.faq-q[aria-expanded="true"] .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .5s var(--ease);
}
.faq-a .inner { padding-bottom: clamp(1.4rem, 3vw, 2rem); color: var(--charcoal-80); max-width: 70ch; }

/* =================================================================
   Contact
   ================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contact-info .row {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.contact-info .row:first-of-type { border-top: 1px solid var(--line); }
.contact-info .row .ic {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--gold-deep);
}
.contact-info .row .k { font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--charcoal-55); }
.contact-info .row .v { margin-top: .3rem; font-size: 1.05rem; line-height: 1.5; }
.contact-info .row .v a { font-weight: 500; }
.contact-info .row .v a:hover { color: var(--gold-deep); }

.fb-link {
  margin-top: 2rem; display: inline-flex; align-items: center; gap: .7rem;
  font-size: .85rem; font-weight: 600; letter-spacing: .04em;
}
.fb-link:hover { color: var(--gold-deep); }

/* Form */
.form {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(1.6rem, 4vw, 3rem);
}
.form .field { margin-bottom: 1.4rem; }
.form .two { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form label {
  display: block; font-size: .74rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--charcoal-55); margin-bottom: .55rem;
}
.form label .req { color: var(--gold-deep); }
.form input, .form select, .form textarea {
  width: 100%;
  font-family: var(--sans); font-size: 1rem;
  color: var(--charcoal);
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: .95rem 1rem;
  border-radius: 0;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,.18);
  background: var(--paper);
}
.form textarea { resize: vertical; min-height: 130px; }
.form .btn { width: 100%; justify-content: center; margin-top: .4rem; }
.form .fine { margin-top: 1.1rem; font-size: .82rem; color: var(--charcoal-55); text-align: center; }
.form-status {
  margin-top: 1.2rem; padding: 1rem 1.2rem;
  border: 1px solid var(--sage); background: rgba(74,92,74,.08);
  color: var(--sage-deep); font-size: .95rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.err { border-color: #a0493b; background: rgba(160,73,59,.08); color: #8a3d31; }

.map-card {
  margin-top: 2.5rem;
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(45deg, rgba(28,28,28,.02) 0 14px, transparent 14px 28px),
    linear-gradient(160deg, var(--ivory-deep), #e6ddce);
  aspect-ratio: 16 / 7;
  position: relative;
  display: grid; place-items: center;
  overflow: hidden;
}
.map-card .pin {
  text-align: center; position: relative; z-index: 1;
}
.map-card .pin .dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--sage); margin: 0 auto .8rem;
  box-shadow: 0 0 0 6px rgba(74,92,74,.18), 0 0 0 14px rgba(74,92,74,.08);
}
.map-card .pin .t { font-family: var(--serif); font-weight: 700; font-size: 1.25rem; }
.map-card .pin .s { font-size: .85rem; color: var(--charcoal-80); margin-top: .2rem; }
.map-card .open-map {
  position: absolute; bottom: 1rem; right: 1rem; z-index: 1;
  font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  background: var(--ivory); border: 1px solid var(--line);
  padding: .6rem .9rem;
}
.map-card .open-map:hover { background: var(--charcoal); color: var(--ivory); }

/* =================================================================
   Footer
   ================================================================= */
.footer {
  background: var(--charcoal);
  color: rgba(247,243,238,.72);
  padding-top: clamp(3.5rem, 7vw, 6rem);
}
.footer h4 { color: var(--ivory); }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: clamp(1.8rem, 4vw, 3rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(247,243,238,.14);
}
.footer .f-brand .monogram {
  border-color: var(--gold); color: var(--gold); margin-bottom: 1.4rem;
}
.footer .f-brand .fname { font-family: var(--serif); font-weight: 700; font-size: 1.7rem; color: var(--ivory); line-height: 1.1; }
.footer .f-brand .fsub { font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-top: .5rem; }
.footer .f-brand p { margin-top: 1.3rem; font-size: .95rem; max-width: 34ch; }

.footer .f-col h4 {
  font-family: var(--sans); font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.3rem;
}
.footer .f-col ul { display: grid; gap: .8rem; }
.footer .f-col a, .footer .f-col li { font-size: .95rem; }
.footer .f-col a { transition: color .3s var(--ease); display: inline-flex; align-items: center; gap: .5rem; }
.footer .f-col a:hover { color: var(--gold); }
.footer address { font-style: normal; line-height: 1.8; font-size: .95rem; }
.footer address a:hover { color: var(--gold); }

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
  padding-block: 1.8rem;
  font-size: .8rem; letter-spacing: .03em;
  color: rgba(247,243,238,.5);
}
.footer-bottom .licenses { display: flex; gap: 1.4rem; flex-wrap: wrap; }

/* =================================================================
   Reveal animation
   ================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

/* =================================================================
   Responsive
   ================================================================= */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-aside { max-width: 420px; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .sec-head { grid-template-columns: 1fr; }
  .split, .split.flip { grid-template-columns: 1fr; }
  .split .portrait { max-width: 460px; order: -1; }
  .svc-block { grid-template-columns: 1fr; gap: 1.5rem; }
  .svc-block .lead { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links, .nav-phone, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }

  .nav-drawer {
    position: fixed; inset: 0 0 0 auto;
    width: min(82vw, 360px);
    background: var(--ivory);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform .5s var(--ease);
    z-index: 200;
    display: flex; flex-direction: column;
    padding: 6rem var(--gutter) 2.5rem;
    box-shadow: -30px 0 60px -30px rgba(28,28,28,.4);
  }
  .nav-drawer.open { transform: none; }
  .nav-drawer a.dl {
    font-family: var(--serif); font-weight: 700; font-size: 1.9rem;
    padding-block: .7rem; border-bottom: 1px solid var(--line);
    display: flex; justify-content: space-between; align-items: center;
  }
  .nav-drawer a.dl[aria-current="page"] { color: var(--gold-deep); }
  .nav-drawer .d-foot { margin-top: auto; padding-top: 2rem; }
  .nav-drawer .d-foot .dp {
    display: block; font-family: var(--serif); font-weight: 700;
    font-size: 1.5rem; margin-bottom: .3rem;
  }
  .nav-drawer .d-foot .dp:hover { color: var(--gold-deep); }
  .nav-drawer .d-foot .de { font-size: .9rem; color: var(--charcoal-80); }
  .scrim {
    position: fixed; inset: 0; background: rgba(28,28,28,.45);
    opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
    z-index: 150;
  }
  .scrim.open { opacity: 1; visibility: visible; }

  .stats-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stat { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem 1.5rem; align-items: baseline; }
  .stat .lbl, .stat .desc { grid-column: 2; }
  .svc-row { grid-template-columns: auto 1fr; }
  .svc-row .go { display: none; }
  .form .two { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .trust { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .creds { grid-template-columns: 1fr; }
  .hero-badge { left: 0; }
}

@media (min-width: 761px) {
  .nav-drawer, .scrim { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn, .tlink, .svc-row, .go, .card { transition: none !important; }
}

/* =================================================================
   V3 — Multi-page component library
   (services hub, dropdown nav, image bands, process, industries,
    service-detail layout, FAQ page, related links)
   ================================================================= */

/* ---------- Nav dropdown ---------- */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > a { display: inline-flex; align-items: center; gap: .35rem; }
.nav-item .chev { transition: transform .3s var(--ease); color: var(--gold-deep); }
.nav-item:hover .chev, .nav-item:focus-within .chev { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: calc(100% + .9rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 320px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -34px rgba(28,28,28,.5);
  padding: .6rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  z-index: 120;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown::before {
  content: ""; position: absolute; top: -1.1rem; left: 0; right: 0; height: 1.1rem;
}
.dropdown a {
  display: flex; align-items: center; gap: .8rem;
  padding: .7rem .85rem;
  text-transform: none; letter-spacing: 0;
  font-size: .92rem; font-weight: 500; color: var(--charcoal-80);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.dropdown a::after { display: none; }
.dropdown a .di { color: var(--gold-deep); flex-shrink: 0; display: grid; place-items: center; width: 18px; }
.dropdown a:hover { background: var(--ivory); color: var(--charcoal); }
.dropdown .dd-sep { height: 1px; background: var(--line); margin: .5rem .85rem; }
.dropdown a.dd-all { font-weight: 600; color: var(--charcoal); }

/* ---------- Services hub cards ---------- */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.svc-cards .scard {
  background: var(--ivory);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  display: flex; flex-direction: column;
  transition: background .4s var(--ease);
}
.svc-cards .scard:hover { background: var(--paper); }
.scard .top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.4rem; }
.scard .ico {
  width: 52px; height: 52px; flex-shrink: 0;
  display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--gold-deep);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.scard:hover .ico { background: var(--charcoal); color: var(--gold); border-color: var(--charcoal); }
.scard .num { font-family: var(--serif); font-weight: 700; font-size: 1.05rem; color: var(--charcoal-30); }
.scard h3 { font-size: 1.55rem; }
.scard p { margin-top: .7rem; color: var(--charcoal-80); font-size: .98rem; flex-grow: 1; }
.scard .more {
  margin-top: 1.4rem; display: inline-flex; align-items: center; gap: .5rem;
  font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--charcoal); transition: gap .35s var(--ease), color .35s var(--ease);
}
.scard:hover .more { color: var(--gold-deep); gap: .85rem; }

/* ---------- Image band ---------- */
.imgband {
  position: relative;
  min-height: clamp(320px, 46vw, 520px);
  display: grid; align-items: center;
  overflow: hidden;
  color: var(--ivory);
}
.imgband .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.imgband .bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,20,20,.86) 0%, rgba(20,20,20,.62) 48%, rgba(20,20,20,.30) 100%);
}
.imgband .wrap { position: relative; z-index: 1; padding-block: clamp(3rem, 6vw, 5rem); }
.imgband .ib-inner { max-width: 44ch; }
.imgband h2, .imgband h3 { color: var(--ivory); }
.imgband .overline { color: var(--gold); }
.imgband .overline::before { background: var(--gold); }
.imgband p { color: rgba(247,243,238,.82); margin-top: 1.2rem; }
.imgband .actions { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Figure with frame (service detail) ---------- */
.framed {
  position: relative;
  aspect-ratio: 4 / 3;
  background-size: cover; background-position: center;
  border: 1px solid var(--line);
}
.framed.tall { aspect-ratio: 4 / 5; }
.framed::after { content: ""; position: absolute; inset: .8rem; border: 1px solid rgba(247,243,238,.35); pointer-events: none; }

/* ---------- Process steps ---------- */
.steps { display: grid; gap: 0; border-top: 1px solid var(--line); counter-reset: step; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(1.2rem, 4vw, 3.5rem);
  padding-block: clamp(1.8rem, 3.5vw, 2.8rem);
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.step .st-n {
  font-family: var(--serif); font-weight: 700; line-height: 1;
  font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--gold);
  width: clamp(3rem, 7vw, 5rem);
}
.step h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.step p { margin-top: .7rem; color: var(--charcoal-80); max-width: 62ch; }
.step .st-meta {
  margin-top: 1rem; font-size: .74rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--sage);
}

/* ---------- Industries grid ---------- */
.industries {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.ind {
  background: var(--ivory); padding: clamp(1.6rem, 3vw, 2.2rem);
  transition: background .4s var(--ease);
}
.ind:hover { background: var(--paper); }
.ind .ico { color: var(--gold-deep); margin-bottom: 1rem; }
.ind h3 { font-size: 1.3rem; }
.ind p { margin-top: .5rem; font-size: .92rem; color: var(--charcoal-80); }

/* ---------- Generic prose ---------- */
.prose { max-width: 70ch; }
.prose p { color: var(--charcoal-80); }
.prose p + p { margin-top: 1.1rem; }
.prose h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 2.4rem; margin-bottom: .8rem; }
.prose ul.bullets { margin-top: 1rem; display: grid; gap: .7rem; }
.prose ul.bullets li { display: flex; gap: .8rem; color: var(--charcoal-80); }
.prose ul.bullets li::before { content: "—"; color: var(--gold-deep); flex-shrink: 0; }

/* ---------- Checklist (boxed feature list) ---------- */
.checklist { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.checklist li {
  background: var(--ivory); padding: 1.15rem 1.3rem;
  display: flex; gap: .9rem; align-items: flex-start; font-size: .98rem;
}
.checklist li svg { color: var(--gold-deep); margin-top: .25rem; flex-shrink: 0; }
.checklist li b { font-weight: 600; }

/* ---------- Service detail layout ---------- */
.sd-intro {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.sd-two {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: start;
}
.sd-two h2 { margin-bottom: 1.2rem; }

/* info columns (who it's for / what you get) */
.infogrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 4vw, 3rem); }
.infocol h3 { font-size: 1.4rem; margin-bottom: 1.1rem; }

/* aside CTA card */
.aside-cta {
  background: var(--charcoal); color: var(--ivory);
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
}
.aside-cta .overline { color: var(--gold); }
.aside-cta .overline::before { background: var(--gold); }
.aside-cta h3 { color: var(--ivory); font-size: 1.7rem; margin-top: .9rem; }
.aside-cta p { color: rgba(247,243,238,.74); margin-top: .8rem; font-size: .96rem; }
.aside-cta .btn { margin-top: 1.5rem; width: 100%; justify-content: center; }
.aside-cta .ac-ph {
  margin-top: 1.5rem; padding-top: 1.3rem; border-top: 1px solid rgba(247,243,238,.16);
  display: grid; gap: .5rem;
}
.aside-cta .ac-ph a { font-family: var(--serif); font-weight: 700; font-size: 1.25rem; }
.aside-cta .ac-ph a:hover { color: var(--gold); }

/* sticky aside wrapper */
.sd-aside { position: sticky; top: 104px; display: grid; gap: 1.4rem; }

/* ---------- Related services ---------- */
.related {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.related a {
  background: var(--ivory); padding: clamp(1.4rem, 3vw, 2rem);
  display: flex; flex-direction: column; gap: .5rem;
  transition: background .35s var(--ease);
}
.related a:hover { background: var(--paper); }
.related a .rk { font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); }
.related a h4 { font-family: var(--serif); font-weight: 700; font-size: 1.3rem; }
.related a .rgo { margin-top: .4rem; font-size: .8rem; color: var(--charcoal-55); display: inline-flex; gap: .4rem; transition: gap .3s var(--ease); }
.related a:hover .rgo { gap: .75rem; color: var(--gold-deep); }

/* ---------- Value / approach grid ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.4rem); }
.value {
  border-top: 2px solid var(--gold); padding-top: 1.3rem;
}
.value .vn { font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--charcoal-55); }
.value h3 { font-size: 1.4rem; margin-top: .6rem; }
.value p { margin-top: .6rem; color: var(--charcoal-80); font-size: .96rem; }

/* ---------- Page hero with media ---------- */
.page-hero.has-media .ph-fig {
  aspect-ratio: 16 / 10;
  background-size: cover; background-position: center;
  border: 1px solid var(--line);
}

/* ---------- Pills / tag rows ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.pill {
  font-size: .76rem; font-weight: 600; letter-spacing: .06em;
  color: var(--sage-deep); background: rgba(74,92,74,.08);
  border: 1px solid rgba(74,92,74,.22);
  padding: .45rem .9rem;
}

/* ---------- Local / area list ---------- */
.area-list { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; margin-top: 1.4rem; }
.area-list span { font-size: .92rem; color: var(--charcoal-80); display: inline-flex; align-items: center; gap: .5rem; }
.area-list span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); display: inline-block; }

/* =================================================================
   V3 Responsive
   ================================================================= */
@media (max-width: 1000px) {
  .svc-cards { grid-template-columns: repeat(2, 1fr); }
  .industries { grid-template-columns: repeat(2, 1fr); }
  .related { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .sd-intro { grid-template-columns: 1fr; }
  .sd-two { grid-template-columns: 1fr; gap: 2rem; }
  .infogrid { grid-template-columns: 1fr; }
  .sd-aside { position: static; }
  .sd-layout { grid-template-columns: 1fr !important; }
}
@media (max-width: 760px) {
  .nav-item .dropdown { display: none; }
  .svc-cards { grid-template-columns: 1fr; }
  .industries { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: .4rem; }
  .step .st-n { font-size: 2.4rem; }
  .imgband .bg::after { background: linear-gradient(180deg, rgba(20,20,20,.74), rgba(20,20,20,.82)); }
}

/* service-detail two-column page shell */
.sd-layout { display: grid; grid-template-columns: 1fr 340px; gap: clamp(2rem, 5vw, 4rem); align-items: start; }

/* =================================================================
   V4 — Graphics layer: hero texture, dividers, reviews, nationwide
   ================================================================= */

/* ---------- Subtle hero dot-grid texture ---------- */
.hero::before {
  content: "";
  position: absolute;
  top: -8%; right: -4%;
  width: min(46vw, 560px); aspect-ratio: 1;
  background-image: radial-gradient(var(--gold) 1.2px, transparent 1.3px);
  background-size: 22px 22px;
  opacity: .14;
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, transparent 70%);
          mask-image: radial-gradient(circle at center, #000 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }

/* ---------- Decorative divider ---------- */
.divider {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  padding-block: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--gold);
}
.divider span {
  height: 1px; width: clamp(48px, 16vw, 150px);
  background: linear-gradient(90deg, transparent, var(--gold-deep));
}
.divider span:last-child { background: linear-gradient(90deg, var(--gold-deep), transparent); }
.divider svg { opacity: .9; }

/* ---------- Social / review-profile buttons ---------- */
.social-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .82rem; font-weight: 600; letter-spacing: .02em;
  padding: .7rem 1.05rem;
  border: 1px solid var(--line);
  background: var(--ivory); color: var(--charcoal);
  transition: background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.social-btn .si { display: grid; place-items: center; line-height: 0; }
.social-btn .ext { color: var(--charcoal-55); font-size: .8em; }
.social-btn:hover { background: var(--paper); border-color: var(--gold); transform: translateY(-2px); }

/* footer variant — sits on the dark footer */
.f-social { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.f-social .social-btn {
  background: transparent; color: var(--ivory);
  border-color: rgba(247,243,238,.22);
}
.f-social .social-btn .ext { color: rgba(247,243,238,.5); }
.f-social .social-btn:hover { background: rgba(247,243,238,.06); border-color: var(--gold); }

/* contact "Find Us" row */
.find-us { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.4rem; }

/* ---------- Nationwide graphic ---------- */
.nationwide {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem); align-items: center;
}
.nw-figure {
  position: relative; aspect-ratio: 5 / 3;
  border: 1px solid var(--line); background: var(--paper);
  display: grid; place-items: center; overflow: hidden;
}
.nw-figure::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(var(--charcoal-30) 1px, transparent 1.4px);
  background-size: 26px 26px; opacity: .5;
  -webkit-mask-image: linear-gradient(120deg, #000 30%, transparent 90%);
          mask-image: linear-gradient(120deg, #000 30%, transparent 90%);
}
.nw-figure .nw-num {
  position: relative; z-index: 1; text-align: center;
}
.nw-figure .nw-num b {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(4rem, 12vw, 8rem); line-height: .9; color: var(--charcoal);
  display: block;
}
.nw-figure .nw-num span {
  font-size: .8rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-deep);
}
.nw-figure .nw-pin {
  position: absolute; z-index: 1; width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(200,169,110,.18), 0 0 0 11px rgba(200,169,110,.08);
}
.nw-figure .nw-pin.p1 { top: 26%; left: 18%; }
.nw-figure .nw-pin.p2 { top: 62%; left: 30%; background: var(--sage); box-shadow: 0 0 0 5px rgba(74,92,74,.16), 0 0 0 11px rgba(74,92,74,.07); }
.nw-figure .nw-pin.p3 { top: 34%; right: 16%; }
.nw-figure .nw-pin.p4 { top: 70%; right: 26%; background: var(--sage); box-shadow: 0 0 0 5px rgba(74,92,74,.16), 0 0 0 11px rgba(74,92,74,.07); }

.nw-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.6rem; margin-top: 1.8rem; }
.nw-list li { display: flex; gap: .7rem; align-items: flex-start; color: var(--charcoal-80); font-size: .96rem; }
.nw-list li svg { color: var(--gold-deep); flex-shrink: 0; margin-top: .15rem; }

@media (max-width: 1000px) {
  .nationwide { grid-template-columns: 1fr; }
  .nationwide .nw-figure { order: -1; max-width: 520px; }
}
@media (max-width: 760px) {
  .nw-list { grid-template-columns: 1fr; }
}

/* ---------- Reviews / testimonials ---------- */
.reviews-sec { background: var(--paper); border-block: 1px solid var(--line); }
.reviews-sec .ghost-num { font-size: clamp(8rem, 18vw, 16rem); color: var(--gold); opacity: .07; top: .05em; }

.stars { display: inline-flex; gap: 2px; color: var(--gold); line-height: 0; }
.g-badge {
  margin-top: 1.4rem; display: inline-flex; align-items: center; gap: .7rem;
  font-size: .9rem; color: var(--charcoal-80);
}
.g-badge b { color: var(--charcoal); }

.review-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.review {
  position: relative; background: var(--ivory);
  padding: clamp(1.7rem, 3vw, 2.4rem);
  display: flex; flex-direction: column; gap: 1rem;
  transition: background .4s var(--ease);
}
.review:hover { background: var(--paper); }
.review .r-quote {
  position: absolute; top: 1.1rem; right: 1.3rem;
  color: var(--gold); opacity: .22; line-height: 0;
}
.review blockquote {
  font-family: var(--serif); font-weight: 500; font-style: italic;
  font-size: clamp(1.15rem, 1.7vw, 1.4rem); line-height: 1.4;
  color: var(--charcoal);
}
.review figcaption {
  margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: .2rem;
}
.review .r-name { font-weight: 600; font-size: .98rem; }
.review .r-meta {
  font-size: .74rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--charcoal-55);
}

.reviews-foot {
  margin-top: 2.6rem; display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 1.2rem;
}
.f-social.light { margin-top: 0; }
.f-social.light .social-btn { background: var(--ivory); color: var(--charcoal); border-color: var(--line); }
.f-social.light .social-btn .ext { color: var(--charcoal-55); }
.f-social.light .social-btn:hover { background: var(--paper); border-color: var(--gold); }

/* Featured pull review (reviews page, on dark) */
.review-feature { text-align: center; max-width: 60ch; margin-inline: auto; }
.review-feature .stars { justify-content: center; font-size: 1.4rem; margin-bottom: .4rem; }
.review-feature blockquote {
  font-family: var(--serif); font-weight: 600; font-style: italic;
  font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.2; margin-top: 1.4rem;
}
.review-feature figcaption {
  margin-top: 1.8rem; font-size: .78rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: rgba(247,243,238,.6);
}

@media (max-width: 1000px) {
  .review-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .review-grid { grid-template-columns: 1fr; }
  .reviews-foot { flex-direction: column; align-items: flex-start; }
}

/* Photo strip mobile */
@media (max-width: 640px) {
  .photo-strip-grid {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }
  .ps-img { height: 180px; }
  .ps-img:last-child { grid-column: span 2; }
}

/* Mobile drawer service sub-links */
.nav-drawer .dl-sub {
  font-family: var(--sans); font-size: .82rem; font-weight: 500;
  letter-spacing: .04em; text-transform: none;
  padding: .5rem 0 .5rem 0; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; color: var(--charcoal-80);
}
.nav-drawer .dl-group {
  font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep); margin-top: 1.2rem; margin-bottom: .4rem;
}
