/* ==========================================================================
   Kings Excavation & Construction — site stylesheet
   Palette: ink black / paper white / grey accents only
   Type: Cinzel (display, matches logo) + Archivo (body)
   ========================================================================== */

:root {
  --ink: #0d0d0d;
  --charcoal: #1a1a1a;
  --graphite: #2e2e2e;
  --steel: #6e6e6e;
  --silver: #a3a3a1;
  --concrete: #e9e9e7;
  --fog: #f6f6f4;
  --paper: #ffffff;
  --line: #dededc;
  --line-dark: #3a3a3a;

  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "Archivo", "Helvetica Neue", Arial, sans-serif;

  --track-caps: 0.26em;
  --container: 1180px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-pad: clamp(72px, 9vw, 128px);
  --speed: 220ms;
  --ease: cubic-bezier(0.25, 0.6, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}
img, video { max-width: 100%; display: block; }
h1, h2, h3, h4, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; padding: 0; cursor: pointer; color: inherit; }

:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }

::selection { background: var(--ink); color: var(--paper); }

/* ---------- Type ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.015em;
  text-wrap: balance;
}
h1.display { font-size: clamp(2.1rem, 5.4vw, 4rem); }
h2.display { font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
h3.display { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 600; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  flex: none;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  flex: none;
}

.lede { font-size: clamp(1.02rem, 1.5vw, 1.15rem); color: var(--graphite); max-width: 62ch; }
.muted { color: var(--steel); }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-pad); }
.section--fog { background: var(--fog); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink .eyebrow { color: var(--silver); }
.section--ink .lede { color: var(--concrete); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .display { margin-bottom: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 34px;
  border: 1px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--speed) var(--ease), color var(--speed) var(--ease), border-color var(--speed) var(--ease);
}
.btn--solid { background: var(--ink); color: var(--paper); }
.btn--solid:hover { background: transparent; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--solid-light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--solid-light:hover { background: transparent; color: var(--paper); }
.btn--ghost-light { border-color: rgba(255, 255, 255, 0.65); color: var(--paper); }
.btn--ghost-light:hover { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: opacity var(--speed) var(--ease);
}
.text-link:hover { opacity: 0.55; }
.text-link svg { width: 14px; height: 14px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--speed) var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.site-header__inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand img { height: 30px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: 0.12em;
}
.brand__tag {
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--steel);
  white-space: nowrap;
}

.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 32px); margin-left: clamp(24px, 4vw, 60px); margin-right: auto; }
.site-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 8px 2px;
  border-bottom: 1px solid transparent;
  transition: border-color var(--speed) var(--ease), color var(--speed) var(--ease);
}
.site-nav a:hover { border-bottom-color: var(--ink); }
.site-nav a[aria-current="page"] { border-bottom-color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: clamp(14px, 1.6vw, 24px); }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.header-phone svg { width: 15px; height: 15px; }
.btn--sm { min-height: 46px; padding: 0 24px; font-size: 0.72rem; letter-spacing: 0.16em; }
.header-cta { white-space: nowrap; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 76px 0 0 0;
  z-index: 99;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(28px, 6vw, 48px) var(--gutter);
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-menu a[aria-current="page"] { color: var(--silver); }
.mobile-menu .mobile-menu__phone {
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  border-bottom: none;
  color: var(--silver);
  margin-top: 12px;
}
.mobile-menu__cta {
  margin-top: 22px;
  border-bottom: none !important;
  width: 100%;
}
body.menu-open { overflow: hidden; }
body.menu-open .mobile-menu { display: flex; }
body.menu-open .nav-toggle .icon-open { display: none; }
body.menu-open .nav-toggle .icon-close { display: block; }

@media (max-width: 1419px) {
  .header-phone .header-phone__num { display: none; }
  .site-nav { margin-left: 24px; }
}

@media (max-width: 1200px) {
  .site-nav, .header-actions { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Hero (home) — copy left, lead form right ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--paper);
  overflow: hidden;
  background: var(--ink);
  padding: 120px 0 68px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(13, 13, 13, 0.9) 0%, rgba(13, 13, 13, 0.66) 40%, rgba(13, 13, 13, 0.34) 100%);
}
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}
.hero__copy { max-width: 42ch; }
.hero__copy .eyebrow { color: rgba(255, 255, 255, 0.72); }
.hero__copy h1 { margin-bottom: 22px; }
.hero__sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  max-width: 46ch;
}
.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.hero__phone svg { width: 15px; height: 15px; }
.hero__phone strong { font-weight: 700; color: var(--paper); letter-spacing: 0.04em; font-size: 0.95rem; }

/* Lead form card (hero + reusable) */
.lead-form {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(24px, 2.6vw, 34px);
  border: 1px solid var(--line);
  box-shadow: 0 34px 70px -34px rgba(0, 0, 0, 0.65);
}
.lead-form__head { margin-bottom: 20px; }
.lead-form__head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  letter-spacing: 0.01em;
}
.lead-form__head p { font-size: 0.9rem; color: var(--steel); margin-top: 7px; }
.lead-form .form-field { margin-bottom: 14px; }
.lead-form .form-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 14px; }
.lead-form .form-field input,
.lead-form .form-field textarea { min-height: 48px; }
.lead-form .form-field textarea { min-height: 96px; }
.lead-form .btn { width: 100%; margin-top: 4px; }
.lead-form__micro { margin-top: 14px; font-size: 0.82rem; color: var(--steel); text-align: center; }
.lead-form__micro a { font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); }

@media (max-width: 900px) {
  .hero { min-height: 0; padding: 104px 0 64px; }
  .hero__grid { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .hero__grid > * { min-width: 0; }
  .hero__copy { max-width: none; }
  .hero__sub { max-width: none; }
  .hero::after { background: linear-gradient(180deg, rgba(13, 13, 13, 0.72) 0%, rgba(13, 13, 13, 0.58) 100%); }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
}
.page-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.page-hero__img--top { object-position: center 15%; }
.page-hero__img--low { object-position: center 80%; }
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.38) 0%, rgba(13, 13, 13, 0.72) 100%);
}
.page-hero .container { position: relative; z-index: 2; width: 100%; padding-top: 150px; padding-bottom: clamp(44px, 6vw, 72px); }
.page-hero .eyebrow { color: rgba(255, 255, 255, 0.78); }
.page-hero .lede { color: rgba(255, 255, 255, 0.88); margin-top: 16px; }

/* ---------- Audience cards ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
}
.audience-card {
  position: relative;
  display: block;
  border: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
}
.audience-card__media { aspect-ratio: 4 / 5; overflow: hidden; }
.audience-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.audience-card:hover .audience-card__media img { transform: scale(1.045); }
.audience-card__body { padding: 24px 26px 28px; border-top: 1px solid var(--line); }
.audience-card__label {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.audience-card__body p { font-size: 0.94rem; color: var(--steel); }

/* ---------- Feature split (welcome/about blocks) ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}
.split__media { position: relative; }
.split__media img { width: 100%; height: auto; border: 1px solid var(--line); }
.split__media::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--concrete);
  z-index: -1;
}
.split__body .display { margin-bottom: 20px; }
.split__body p + p { margin-top: 16px; }
.split__body .text-link { margin-top: 30px; }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
}
.service-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  transition: border-color var(--speed) var(--ease);
}
.service-card:hover { border-color: var(--steel); }
.service-card__media { aspect-ratio: 3 / 2; overflow: hidden; }
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.service-card:hover .service-card__media img { transform: scale(1.045); }
.service-card__body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.service-card__body p { font-size: 0.94rem; color: var(--steel); flex: 1; }
.service-card__body .text-link { align-self: flex-start; margin-top: 8px; font-size: 0.7rem; }

/* ---------- Service detail sections ---------- */
.service-detail { padding-block: clamp(56px, 7vw, 96px); border-top: 1px solid var(--line); scroll-margin-top: 96px; }
.service-detail:first-of-type { border-top: none; }
.service-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}
.service-detail--flip .service-detail__grid > .service-detail__media { order: 2; }
.service-detail__media img { width: 100%; height: auto; border: 1px solid var(--line); }
.service-detail__body .display { margin-bottom: 18px; }
.service-detail__body p + p { margin-top: 14px; }
.scope-list { margin-top: 24px; display: grid; gap: 10px; }
.scope-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--graphite);
}
.scope-list li::before {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--ink);
  flex: none;
  transform: translateY(-4px);
}

/* Anchor chips under services hero */
.anchor-bar { border-bottom: 1px solid var(--line); background: var(--paper); }
.anchor-bar__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 18px var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}
.anchor-bar a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color var(--speed) var(--ease), border-color var(--speed) var(--ease);
}
.anchor-bar a:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* ---------- Values ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
}
.value-card { border: 1px solid var(--line); padding: 36px 30px; background: var(--paper); }
.value-card svg { width: 30px; height: 30px; margin-bottom: 20px; }
.value-card h3 { margin-bottom: 10px; }
.value-card p { font-size: 0.94rem; color: var(--steel); }

/* ---------- Gallery strip ---------- */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.8vw, 20px);
}
.gallery-strip figure { margin: 0; overflow: hidden; border: 1px solid var(--line-dark); }
.gallery-strip img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.gallery-strip figure:hover img { transform: scale(1.04); }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band__crown { height: 42px; width: auto; margin: 0 auto 26px; }
.cta-band .display { margin-bottom: 14px; }
.cta-band .lede { margin-inline: auto; margin-bottom: 36px; }
.cta-band .btn-row { justify-content: center; }
.cta-band__phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 34px;
  transition: opacity var(--speed) var(--ease);
}
.cta-band__phone:hover { opacity: 0.7; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}
.contact-channels { display: grid; gap: 14px; margin-top: 34px; }
.contact-channel {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  padding: 22px 24px;
  transition: border-color var(--speed) var(--ease);
}
.contact-channel:hover { border-color: var(--steel); }
.contact-channel svg { width: 22px; height: 22px; flex: none; }
.contact-channel__label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--steel);
  display: block;
  margin-bottom: 3px;
}
.contact-channel__value { font-size: 1.02rem; font-weight: 600; letter-spacing: 0.02em; }
.contact-note { margin-top: 26px; font-size: 0.9rem; color: var(--steel); max-width: 44ch; }

.contact-form { border: 1px solid var(--line); padding: clamp(28px, 4vw, 44px); background: var(--paper); }
.form-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; min-width: 0; }
.form-field label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.form-field label .req { color: var(--steel); letter-spacing: 0; }
.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--fog);
  border: 1px solid var(--line);
  padding: 13px 16px;
  min-height: 50px;
  width: 100%;
  min-width: 0;
  border-radius: 0;
  transition: border-color var(--speed) var(--ease), background var(--speed) var(--ease);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--paper);
}
.form-hint { font-size: 0.82rem; color: var(--steel); margin-top: 14px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--paper); border-top: 1px solid var(--line-dark); }
.site-footer__main {
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(56px, 7vw, 88px) var(--gutter) clamp(40px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 6vw, 72px);
}
.site-footer h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 20px;
}
.site-footer li + li { margin-top: 12px; }
.site-footer li a {
  font-size: 0.92rem;
  color: var(--concrete);
  transition: color var(--speed) var(--ease);
}
.site-footer li a:hover { color: var(--paper); }
.site-footer__contact li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 0.92rem;
  color: var(--concrete);
}
.site-footer__contact .label { color: var(--silver); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; flex: none; width: 52px; }
.site-footer__bottom { border-top: 1px solid var(--line-dark); }
.site-footer__bottom-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 22px var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--silver);
  letter-spacing: 0.04em;
}

/* ---------- Process steps (how we get started) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.6vw, 36px);
}
.step { padding-top: 26px; border-top: 2px solid var(--ink); }
.step__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 2.4vw, 2.3rem);
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 10px; }
.step p { font-size: 0.94rem; color: var(--steel); }

/* ---------- Why homeowners pick us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.why-card { border: 1px solid var(--line-dark); padding: 32px 28px; }
.why-card svg { width: 28px; height: 28px; margin-bottom: 20px; stroke: var(--paper); }
.why-card h3 { margin-bottom: 10px; }
.why-card p { font-size: 0.92rem; color: var(--silver); }

/* ---------- Before / after projects ---------- */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}
.ba-card { border: 1px solid var(--line); background: var(--paper); overflow: hidden; }
.ba-imgs { display: grid; grid-template-columns: 1fr 1fr; }
.ba-imgs figure { position: relative; margin: 0; overflow: hidden; }
.ba-imgs figure:first-child { border-right: 2px solid var(--paper); }
.ba-imgs img { width: 100%; height: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block; }
.ba-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(13, 13, 13, 0.84);
  color: var(--paper);
  padding: 5px 9px;
}
.ba-body { padding: 20px 22px 24px; border-top: 1px solid var(--line); }
.ba-body h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; letter-spacing: 0.02em; margin-bottom: 5px; }
.ba-body p { font-size: 0.86rem; color: var(--steel); }

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}
.review {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.review__stars { display: flex; gap: 3px; color: var(--ink); }
.review__stars svg { width: 17px; height: 17px; }
.review p { font-size: 0.98rem; line-height: 1.62; color: var(--graphite); flex: 1; }
.review__who { display: flex; align-items: center; gap: 13px; }
.review__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  flex: none;
}
.review__name { font-weight: 600; font-size: 0.9rem; }
.review__src { font-size: 0.76rem; color: var(--steel); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 24px 44px 24px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  letter-spacing: 0.01em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--steel);
}
.faq__item[open] summary::after { content: "\2013"; }
.faq__item p { padding: 0 44px 26px 0; margin: 0; color: var(--steel); font-size: 0.98rem; line-height: 1.65; }

/* ---------- Diagonal line texture (CTA + footer) ---------- */
.crosshatch { position: relative; }
.crosshatch::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 16px);
}
.crosshatch > * { position: relative; z-index: 1; }

@media (max-width: 960px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .steps, .why-grid, .ba-grid { grid-template-columns: 1fr; }
  .ba-card { max-width: 440px; margin-inline: auto; }
}

/* ---------- Reveal animation (soft, luxe, staggered) ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 900ms cubic-bezier(0.16, 0.7, 0.3, 1), transform 900ms cubic-bezier(0.16, 0.7, 0.3, 1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
/* Cascade grid children as a group enters */
:is(.services-grid, .audience-grid, .why-grid, .steps, .ba-grid, .greviews__grid, .values-grid) > .reveal:nth-child(2) { transition-delay: 100ms; }
:is(.services-grid, .audience-grid, .why-grid, .steps, .ba-grid, .greviews__grid, .values-grid) > .reveal:nth-child(3) { transition-delay: 200ms; }
:is(.services-grid, .audience-grid, .why-grid, .steps, .ba-grid, .greviews__grid, .values-grid) > .reveal:nth-child(4) { transition-delay: 300ms; }
:is(.services-grid, .audience-grid, .why-grid, .steps, .ba-grid, .greviews__grid, .values-grid) > .reveal:nth-child(5) { transition-delay: 400ms; }
:is(.services-grid, .audience-grid, .why-grid, .steps, .ba-grid, .greviews__grid, .values-grid) > .reveal:nth-child(6) { transition-delay: 500ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .audience-card:hover .audience-card__media img,
  .service-card:hover .service-card__media img,
  .gallery-strip figure:hover img { transform: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- Crown section-break divider ---------- */
.section-crown {
  position: relative;
  z-index: 6;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.section-crown img { width: clamp(46px, 5.5vw, 64px); height: auto; flex: none; }

/* ---------- Google-style reviews ---------- */
.greviews__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
  flex-wrap: wrap;
  padding-bottom: 26px;
  margin-bottom: clamp(28px, 3.4vw, 44px);
  border-bottom: 1px solid var(--line);
}
.greviews__rating { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.greviews__glogo { width: 30px; height: 30px; flex: none; }
.greviews__label { font-size: 1.05rem; font-weight: 600; }
.greviews__score { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; line-height: 1; }
.gstars { display: inline-flex; gap: 2px; color: #f5a623; }
.gstars svg { width: 19px; height: 19px; }
.greviews__count { font-size: 0.85rem; color: var(--steel); }
.greviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 26px); }
.greviews__grid--two { grid-template-columns: repeat(2, 1fr); max-width: 940px; margin-inline: auto; }
.greview { border: 1px solid var(--line); background: var(--paper); padding: 26px 26px 22px; display: flex; flex-direction: column; gap: 15px; }
.greview__top { display: flex; align-items: center; gap: 12px; }
.greview__avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--paper); flex: none; }
.greview__name { font-weight: 600; font-size: 0.95rem; }
.greview__meta { display: flex; align-items: center; gap: 9px; margin-top: 3px; }
.greview__meta .gstars svg { width: 14px; height: 14px; }
.greview__date { font-size: 0.76rem; color: var(--steel); }
.greview p { font-size: 0.95rem; line-height: 1.6; color: var(--graphite); flex: 1; margin: 0; }
.greview__src { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--steel); }
.greview__src svg { width: 17px; height: 17px; }

/* ---------- Instagram showcase (About) ---------- */
.ig-showcase { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 36px); }
.ig-copy { flex: 0 1 440px; max-width: 440px; }
.ig-copy .display { margin-bottom: 18px; }
.ig-copy p { color: var(--steel); margin-bottom: 28px; }
.ig-connector { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 15px; color: var(--steel); }
.ig-connector__handle { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; white-space: nowrap; }
.ig-connector__arrow { width: 100%; max-width: 210px; height: auto; color: var(--graphite); }
.iphone {
  flex: 0 0 300px;
  justify-self: center;
  width: 300px;
  max-width: 100%;
  background: #0d0d0d;
  border: 1px solid #2c2c2c;
  border-radius: 46px;
  padding: 11px;
  box-shadow: 0 44px 80px -34px rgba(0, 0, 0, 0.55);
}
.iphone__screen { position: relative; background: #fff; border-radius: 36px; overflow: hidden; aspect-ratio: 9 / 19; }
.iphone__notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 116px; height: 24px; background: #0d0d0d; border-radius: 0 0 15px 15px; z-index: 5; }
.ig { height: 100%; display: flex; flex-direction: column; color: #111; overflow-y: auto; }
.ig__topbar { display: flex; align-items: center; justify-content: space-between; padding: 34px 14px 10px; }
.ig__handle { display: flex; align-items: center; gap: 5px; font-weight: 700; font-size: 0.9rem; }
.ig__handle svg { width: 12px; height: 12px; }
.ig__topbar-ico { display: flex; gap: 14px; color: #111; }
.ig__topbar-ico svg { width: 17px; height: 17px; }
.ig__profile { display: flex; align-items: center; gap: 16px; padding: 6px 14px 10px; }
.ig__avatar { width: 58px; height: 58px; border-radius: 50%; background: var(--ink); display: flex; align-items: center; justify-content: center; flex: none; padding: 3px; box-shadow: 0 0 0 2px #fff, 0 0 0 4px #dbdbdb; }
.ig__avatar img { width: 74%; height: auto; }
.ig__stats { display: flex; flex: 1; justify-content: space-around; text-align: center; }
.ig__stat b { display: block; font-size: 0.92rem; font-weight: 700; }
.ig__stat span { font-size: 0.66rem; color: #333; }
.ig__bio { padding: 0 14px 12px; font-size: 0.72rem; line-height: 1.4; }
.ig__bio b { font-size: 0.76rem; }
.ig__bio .ig__cat { color: #385898; }
.ig__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: auto; }
.ig__grid img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }

/* ---------- "Let's talk" two-column form CTA ---------- */
.talk-grid { display: grid; grid-template-columns: 1fr minmax(0, 440px); gap: clamp(34px, 6vw, 80px); align-items: center; }
.talk-copy { max-width: 46ch; }
.talk-copy .display { margin-bottom: 18px; }
.talk-copy .lede { margin-bottom: 28px; }
.talk-copy .cta-band__phone { display: inline-block; margin-bottom: 24px; }

/* ---------- Form privacy disclaimer ---------- */
.form-disclaimer { margin-top: 12px; font-size: 0.76rem; line-height: 1.5; color: var(--steel); }
.lead-form .form-disclaimer { text-align: center; }

/* ---------- License badge ---------- */
.license-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  border: 1px solid var(--line);
  padding: 10px 16px;
}
.license-note svg { width: 16px; height: 16px; flex: none; }

/* About "how we work" now holds 4 standards */
.values-grid { grid-template-columns: repeat(auto-fit, minmax(216px, 1fr)); }

@media (max-width: 900px) {
  .greviews__grid { grid-template-columns: 1fr; }
  .talk-grid { grid-template-columns: 1fr; }
  .ig-showcase { flex-direction: column; align-items: stretch; }
  .ig-connector { display: none; }
  .ig-copy { flex-basis: auto; max-width: none; }
  .iphone { align-self: center; }
  .talk-copy { max-width: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .split, .service-detail__grid, .contact-grid { grid-template-columns: 1fr; }
  .service-detail--flip .service-detail__grid > .service-detail__media { order: 0; }
  .split__media::after { display: none; }
  .site-footer__main { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
@media (max-width: 720px) {
  .audience-grid, .services-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr; }
  .gallery-strip img { aspect-ratio: 3 / 2; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .site-footer__main { grid-template-columns: 1fr; text-align: center; gap: 30px; max-width: 320px; }
  .site-footer__contact li { justify-content: center; }
}
@media (max-width: 560px) {
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
}

/* ---------- Gallery ---------- */
.gallery-masonry { column-count: 3; column-gap: clamp(12px, 1.6vw, 20px); }
@media (max-width: 900px) { .gallery-masonry { column-count: 2; } }
@media (max-width: 560px) { .gallery-masonry { column-count: 1; } }
.gallery-item {
  break-inside: avoid;
  display: block;
  width: 100%;
  margin: 0 0 clamp(12px, 1.6vw, 20px);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--fog);
}
.gallery-item img { width: 100%; height: auto; display: block; transition: transform 600ms var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0);
  transition: background var(--speed) var(--ease);
  pointer-events: none;
}
.gallery-item:hover::after { background: rgba(13, 13, 13, 0.14); }
.gallery-item__zoom {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 13, 13, 0.55);
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--speed) var(--ease), transform var(--speed) var(--ease);
  pointer-events: none;
}
.gallery-item:hover .gallery-item__zoom { opacity: 1; transform: none; }
.gallery-item__zoom svg { width: 16px; height: 16px; }
.gallery-item:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

/* Reel (videos) */
.reel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 24px);
  max-width: 860px;
  margin-inline: auto;
}
@media (max-width: 760px) { .reel-grid { grid-template-columns: 1fr; max-width: 330px; } }
.reel-card {
  position: relative;
  border: 1px solid var(--line-dark);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: var(--ink);
}
.reel-card video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel-card__tag {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 8px 14px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(13, 13, 13, 0.72));
  width: 100%;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 8, 0.93);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: clamp(16px, 4vw, 56px);
}
.lightbox.is-open { display: flex; }
body.lightbox-open { overflow: hidden; }
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
}
.lightbox__btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--speed) var(--ease);
}
.lightbox__btn:hover { background: rgba(255, 255, 255, 0.2); }
.lightbox__btn svg { width: 22px; height: 22px; }
.lightbox__close { top: clamp(14px, 3vw, 28px); right: clamp(14px, 3vw, 28px); }
.lightbox__prev { left: clamp(8px, 2vw, 24px); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: clamp(8px, 2vw, 24px); top: 50%; transform: translateY(-50%); }
.lightbox__count {
  position: absolute;
  bottom: clamp(14px, 3vw, 26px);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
}
@media (max-width: 560px) {
  .lightbox__prev, .lightbox__next { top: auto; bottom: 16px; transform: none; }
  .lightbox__prev { left: 16px; }
  .lightbox__next { right: 16px; }
  .lightbox__count { bottom: auto; top: 18px; left: 16px; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-item:hover img { transform: none; }
}

/* ---------- Service detail carousel ---------- */
.svc-carousel__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--fog);
  cursor: pointer;
}
.service-detail__media .svc-carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  opacity: 0;
  transition: opacity 520ms var(--ease);
  pointer-events: none;
}
.service-detail__media .svc-carousel__slide.is-active { opacity: 1; }
.svc-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 13, 13, 0.5);
  color: #fff;
  cursor: pointer;
  transition: background var(--speed) var(--ease);
}
.svc-carousel__arrow:hover { background: rgba(13, 13, 13, 0.82); }
.svc-carousel__arrow svg { width: 20px; height: 20px; }
.svc-carousel__arrow--prev { left: 0; }
.svc-carousel__arrow--next { right: 0; }
.svc-carousel__count {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(13, 13, 13, 0.5);
  padding: 5px 10px;
}
.svc-carousel__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
  padding: 7px 12px;
  background: rgba(13, 13, 13, 0.4);
  border-radius: 100px;
}
.svc-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background var(--speed) var(--ease), transform var(--speed) var(--ease);
}
.svc-carousel__dot.is-active { background: #fff; transform: scale(1.35); }
@media (prefers-reduced-motion: reduce) {
  .service-detail__media .svc-carousel__slide { transition: none; }
}

/* ---- American flag accents (client request 2026-07-21) ---- */
.brand img.brand__flag { height: 15px; width: auto; border-radius: 2px; flex: none; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }
.footer-usa { display: inline-flex; align-items: center; gap: 8px; }
.footer-usa img { width: 22px; height: auto; border-radius: 2px; box-shadow: 0 0 0 1px rgba(255,255,255,.12); }
.flag-inline { width: 20px; height: auto; vertical-align: -3px; margin-right: 6px; border-radius: 2px; }

/* ---- Nextdoor featured review ---- */
.ndlogo { width: 28px; height: 28px; flex: none; }
.greview--feature { max-width: 760px; margin: 0 auto; }
.greview--feature .greview__quote { font-size: 19px; line-height: 1.65; margin: 16px 0 10px; font-style: normal; }
.greview__work { color: #6b6b6b; font-size: 13.5px; }

/* ---- Page hero video (Services) ---- */
video.page-hero__img { object-position: center; }

/* Form success state (shown after /api/lead accepts the submission) */
.form-success { padding: 22px 0 10px; font-size: 15.5px; line-height: 1.65; }
.form-success strong { font-family: var(--font-display); font-size: 19px; display: block; margin-bottom: 8px; }
.form-success a { font-weight: 600; text-decoration: underline; }
