/* ==========================================================================
   Brothers Legacy™ — Moving & Junk Removal  |  MATRIX-WARM identity
   V2.0  •  Warm editorial luxury (bone + Playfair + champagne gold; navy = trust)
   Mobile-first static site. Class names preserved from V1 so all markup inherits.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Warm surfaces (the Matrix house) */
  --bone: #F5F0E8;       /* base background */
  --paper: #FCFAF6;      /* cards / lightest */
  --wash: #EFE8DC;       /* warm recessed tint */
  --wash-2: #FAF7F1;     /* soft warm */
  --white: #FFFFFF;

  /* Champagne gold — the single jewelry accent */
  --gold: #C8A86A;
  --gold-600: #BFA15A;
  --gold-glow: #D8BE86;

  /* Navy / Carolina — deep TRUST tones, dark bands & sparing accents only */
  --navy: #123A63;
  --navy-700: #0e2e4e;
  --carolina: #4B9CD3;
  --carolina-600: #3a87bd;
  /* legacy surface-tint names remapped WARM so existing markup warms up */
  --carolina-100: #EFE8DC;
  --carolina-050: #FAF7F1;

  /* Warm ink */
  --ink: #1A1A1A;        /* headlines */
  --ink-soft: #3D3D3D;   /* body */
  --muted: #6E6A60;      /* captions — AA floor */
  --line: rgba(26, 26, 26, 0.10);

  /* Type */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-head: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container: 1140px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  /* Warm-tinted depth (no cold blue shadows) */
  --shadow-sm: 0 2px 12px rgba(60, 48, 30, 0.06);
  --shadow: 0 14px 34px rgba(60, 48, 30, 0.12);
  --shadow-lg: 0 26px 60px rgba(60, 48, 30, 0.16);
  --ring: 0 0 0 4px rgba(200, 168, 106, 0.30);

  color-scheme: light;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--ink-soft);
  background: var(--bone);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--navy); text-decoration: none; transition: color .15s; }
a:hover { color: var(--gold-600); }
/* In-copy links — AA-safe navy with gold underline */
.lead a, .card p a, .faq-a-inner a, .note-banner a, .svc p a { color: var(--navy); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 2px; }
.lead a:hover, .card p a:hover, .faq-a-inner a:hover, .note-banner a:hover, .svc p a:hover { color: var(--gold-600); }
ul { padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-wrap: balance;
}

.tm { font-size: 0.5em; vertical-align: super; font-weight: 600; opacity: 0.7; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding-block: clamp(60px, 9vw, 112px); position: relative; }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.section--white { background: var(--paper); }
.section--soft { background: linear-gradient(180deg, var(--wash), var(--bone)); }
.section--navy { background: linear-gradient(160deg, var(--navy), var(--navy-700)); color: #dbe6f1; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

/* .section--sky removed (unused) */

/* Warm dot-grid (planning texture behind forms / area panels) */
.section--blueprint { position: relative; }
.section--blueprint > .container { position: relative; z-index: 1; }
.section--blueprint::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.3;
  background-image: radial-gradient(circle, rgba(200,168,106,0.18) 1.4px, transparent 1.6px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 38%, #000 0%, rgba(0,0,0,0.35) 55%, transparent 80%);
          mask-image: radial-gradient(120% 100% at 50% 38%, #000 0%, rgba(0,0,0,0.35) 55%, transparent 80%);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.76rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }
.section--navy .eyebrow { color: var(--gold-glow); }

.section-head { max-width: 700px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(1.9rem, 4.6vw, 2.9rem); }
.lead { font-size: clamp(1.02rem, 2.2vw, 1.18rem); color: var(--muted); margin-top: 16px; }
.section--navy .lead { color: #cddcea; }
.muted { color: var(--muted); }
.text-center { text-align: center; }
.gold-rule { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-glow)); border-radius: 3px; border: 0; margin: 20px 0; opacity: 0.9; }
.section-head--center .gold-rule { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
  padding: 14px 26px; border-radius: var(--radius-pill); border: 1.5px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  text-align: center; line-height: 1.1; letter-spacing: 0.01em;
}
.btn svg { width: 19px; height: 19px; }
/* Primary — confident warm ink, warms to gold on hover */
.btn--gold { background: var(--ink); color: var(--bone); box-shadow: 0 10px 26px -14px rgba(26,26,26,0.5); }
.btn--gold:hover { background: var(--gold-600); color: var(--ink); transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(200,168,106,0.55); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline { background: transparent; color: var(--ink); border-color: rgba(26,26,26,0.2); }
.btn--outline:hover { border-color: var(--gold); color: var(--navy); transform: translateY(-2px); }
.btn--light { background: var(--paper); color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--gold); }
.btn--ghost-light { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.45); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
.btn--lg { padding: 16px 32px; font-size: 1.04rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(245,240,232,0.9);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 18px; min-height: 76px; }

.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark { width: 46px; height: 46px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.1rem, 4.2vw, 1.32rem); color: var(--navy); letter-spacing: 0; white-space: nowrap; }
.brand-sub { font-family: var(--font-head); font-size: 0.6rem; color: var(--muted); font-weight: 600; letter-spacing: 0.14em; margin-top: 5px; white-space: nowrap; text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > a { font-family: var(--font-head); font-weight: 500; font-size: 0.94rem; color: var(--ink-soft); padding: 9px 12px; border-radius: 9px; transition: color .15s, background .15s; }
.nav-menu > a:hover { color: var(--ink); background: var(--wash-2); }
.nav-menu > a.is-active { color: var(--ink); font-weight: 600; }
.nav-menu > a.is-active::after { content: ""; display: block; height: 2px; background: var(--gold); border-radius: 2px; margin-top: 4px; }
.nav-menu .nav-quote { margin-left: 8px; padding: 10px 20px; background: #6E6A60; color: var(--bone); box-shadow: none; }
.nav-menu .nav-quote:hover { background: var(--gold-600); color: var(--ink); }
.nav-call { display: inline-flex; align-items: center; gap: 7px; color: var(--navy) !important; font-weight: 600 !important; }
.nav-call svg { width: 17px; height: 17px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 46px; height: 44px;
  background: var(--wash-2); border: 1px solid var(--line); border-radius: 11px;
  align-items: center; justify-content: center; cursor: pointer;
}
.nav-toggle span { width: 22px; height: 2.4px; background: var(--navy); border-radius: 3px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 14px 22px 22px; box-shadow: var(--shadow); z-index: 70;
    transform: translateY(-14px); opacity: 0; visibility: hidden; transition: .22s;
  }
  .nav-menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-menu > a { padding: 13px 12px; font-size: 1.05rem; border-bottom: 1px solid var(--wash); }
  .nav-menu > a.is-active::after { display: none; }
  .nav-menu .nav-quote { margin: 12px 0 0; padding: 14px; }
  .nav-call { justify-content: center; background: var(--wash-2); border-radius: 10px; margin-top: 8px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--wash) 0%, var(--bone) 52%, var(--paper) 100%);
  padding-block: clamp(60px, 9vw, 112px);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(640px 280px at 8% 0%, rgba(255,251,244,0.85), transparent 72%),
    radial-gradient(560px 240px at 94% -6%, rgba(255,251,244,0.7), transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; position: relative; z-index: 2; }
.hero h1 { font-size: clamp(2.3rem, 6vw, 3.8rem); color: var(--ink); line-height: 1.06; }
.hero .lead { color: var(--ink-soft); max-width: 520px; }
.hero-brand { max-width: 640px; }
.brand-display { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 8.5vw, 4.4rem); line-height: 1.02; letter-spacing: -0.015em; color: var(--navy); margin-top: 4px; }
.brand-display .tm-lg { font-size: 0.28em; vertical-align: super; color: var(--gold-600); font-weight: 700; letter-spacing: 0; }
.brand-tagline { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(1.3rem, 3.6vw, 1.95rem); color: var(--navy); margin-top: 12px; }
.brand-tagline .tm-sm { font-size: 0.45em; vertical-align: super; }
.brand-accent { width: 68px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-glow)); border-radius: 3px; margin: 20px 0 16px; }
.brand-service { font-family: var(--font-head); font-weight: 600; font-size: clamp(0.9rem, 2vw, 1.02rem); letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.hero-cta { margin-top: 30px; }
.hero-rating { display: flex; align-items: center; gap: 12px; margin-top: 26px; font-size: 0.95rem; color: var(--ink-soft); font-weight: 500; }
.hero-rating .stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }

.hero-visual { position: relative; }
.hero-card {
  background: var(--paper); border-radius: 20px; box-shadow: var(--shadow-lg);
  padding: 28px; border: 1px solid var(--line);
}
.hero-card h3, .hero-card .hero-card__title { font-size: 1.22rem; margin-bottom: 4px; font-family: var(--font-display); font-weight: 600; color: var(--ink); }
.hero-card .price-note { color: var(--muted); font-size: 0.92rem; margin-bottom: 18px; }
.hero-card ul li { display: flex; align-items: center; gap: 11px; padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: 0.96rem; }
.hero-card ul li:last-child { border-bottom: 0; }
.hero-card .chk { color: var(--gold-600); flex: none; }
.hero-truck { margin-top: 18px; }
.hero-photo { width: 100%; height: 300px; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow-lg); margin-bottom: 20px; }
.media-frame { width: 100%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* clouds retired for editorial cleanliness */
.cloud { display: none !important; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--navy); }
.trustbar .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 30px; padding-block: 18px; }
.trustbar .ti { display: flex; align-items: center; gap: 9px; color: #eaf2fa; font-family: var(--font-head); font-weight: 500; font-size: 0.94rem; }
.trustbar .ti svg { color: var(--gold); width: 19px; height: 19px; flex: none; }

/* ---------- Grids / Cards ---------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s;
  height: 100%;
}
.card--hover:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(200,168,106,0.4); }
.card h3 { font-size: 1.24rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.97rem; }

.icon-badge {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--wash), var(--paper)); color: var(--navy);
  border: 1px solid var(--line); margin-bottom: 20px;
}
.icon-badge svg { width: 26px; height: 26px; }
.icon-badge--gold { background: linear-gradient(150deg, #F5ECD8, var(--paper)); border-color: rgba(200,168,106,0.5); color: var(--gold-600); }

.tag { display: inline-block; font-family: var(--font-head); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); background: var(--wash); border: 1px solid rgba(200,168,106,0.35); padding: 4px 12px; border-radius: var(--radius-pill); }

/* feature list with checks */
.feature-list li { display: flex; gap: 12px; padding: 9px 0; align-items: flex-start; }
.feature-list li svg { color: var(--gold-600); flex: none; margin-top: 3px; width: 20px; height: 20px; }
.section--navy .feature-list li svg { color: var(--gold); }

/* service detail row */
.svc { display: grid; grid-template-columns: 64px 1fr; gap: 20px; }
.svc .icon-badge { margin: 0; }
.svc h3 { font-size: 1.32rem; }
.svc .svc-meta { margin: 12px 0; display: flex; flex-wrap: wrap; gap: 8px; }
.svc .svc-cta { margin-top: 14px; }
.svc-uses { margin-top: 10px; color: var(--muted); font-size: 0.95rem; }
.svc-uses strong { color: var(--navy); font-weight: 600; }

/* ---------- Promise band ---------- */
.promise { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.promise-quote { font-family: var(--font-display); font-size: clamp(1.5rem, 3.4vw, 2.15rem); color: var(--ink); font-weight: 600; line-height: 1.25; }
.promise-quote .hl { color: var(--gold-600); font-style: italic; }
.promise-card { background: linear-gradient(160deg, var(--navy), var(--navy-700)); color: #dbe6f1; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.promise-card h3 { color: #fff; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.stat { text-align: center; padding: 8px; }
.stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 4vw, 2.6rem); color: #fff; }
.stat .num .gold { color: var(--gold); }
.stat .lbl { color: #cddcea; font-size: 0.9rem; margin-top: 4px; }

/* ---------- Estimator chips ---------- */
.estimator { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.chips { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 6px; }
.chip {
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
  padding: 16px 10px; border: 1.5px solid var(--line); border-radius: 14px; background: var(--wash-2);
  cursor: pointer; font-family: var(--font-head); font-weight: 500; color: var(--ink); font-size: 0.92rem;
  transition: .16s;
}
.chip svg { width: 26px; height: 26px; color: var(--navy); }
.chip:hover { border-color: var(--gold); background: #F5ECD8; transform: translateY(-2px); }
.chip.is-selected { border-color: var(--gold); background: #F5ECD8; box-shadow: 0 8px 18px rgba(200,168,106,0.22); }
.chip.is-selected svg { color: var(--gold-600); }

/* ---------- Steps / process ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.step { position: relative; padding-top: 8px; }
.step .step-num {
  width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: var(--ink);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; }
.step p { color: var(--ink-soft); font-size: 0.93rem; }

/* ---------- Reviews ---------- */
.review-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); height: 100%; display: flex; flex-direction: column; }
.review-card .stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 14px; }
.review-card blockquote { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--ink); line-height: 1.55; flex: 1; }
.review-card .rv-who { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.review-card .rv-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(150deg, var(--gold-600), var(--navy)); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.review-card .rv-name { font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: 0.96rem; }
.review-card .rv-meta { font-size: 0.82rem; color: var(--muted); }
.note-banner { background: var(--wash-2); border: 1px dashed rgba(200,168,106,0.5); border-radius: var(--radius-sm); padding: 16px 20px; color: var(--ink-soft); font-size: 0.95rem; display: flex; gap: 12px; align-items: flex-start; }
.note-banner svg { color: var(--gold-600); flex: none; margin-top: 2px; }

/* ---------- Founder note ---------- */
.founder-card { max-width: 760px; margin-inline: auto; text-align: center; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(32px, 5vw, 54px); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.founder-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-glow)); }
.founder-avatar { width: 86px; height: 86px; border-radius: 50%; margin: 0 auto 22px; display: grid; place-items: center; background: linear-gradient(150deg, var(--gold-600), var(--navy)); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 2.1rem; box-shadow: 0 0 0 6px var(--paper), 0 0 0 8px var(--gold); }
.founder-card .eyebrow { justify-content: center; }
.founder-quote { font-family: var(--font-display); font-size: clamp(1.15rem, 2.6vw, 1.42rem); color: var(--ink); line-height: 1.55; font-style: italic; }
.founder-quote .hl { color: var(--gold-600); font-style: normal; font-weight: 600; }
.founder-sign { margin-top: 24px; }
.founder-sign .sig { font-family: 'Dancing Script', 'Playfair Display', cursive; font-weight: 700; font-size: 2.6rem; color: var(--navy); line-height: 1; }
.founder-sign .who { display: block; margin-top: 8px; font-family: var(--font-head); font-weight: 600; color: var(--muted); font-size: 0.9rem; letter-spacing: 0.03em; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; background: none; border: 0; cursor: pointer; padding: 20px 22px; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--ink); }
.faq-q .chev { flex: none; transition: transform .25s; color: var(--gold-600); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 22px 20px; color: var(--muted); }

/* ---------- Forms ---------- */
.form-wrap { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 4vw, 38px); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.field label .req { color: var(--navy); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid rgba(26,26,26,0.16); border-radius: 11px; background: var(--wash-2); width: 100%;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: var(--ring); background: var(--paper); }
.field .hint { font-size: 0.8rem; color: var(--muted); }
.form-success { display: none; text-align: center; padding: 14px 6px; }
.form-success.show { display: block; animation: pop .3s ease; }
.form-success .ok-icon { width: 70px; height: 70px; border-radius: 50%; background: #eef3ea; color: #6b7f52; display: grid; place-items: center; margin: 0 auto 18px; }
.form-success h3 { font-size: 1.5rem; }
@keyframes pop { from { transform: scale(.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.consent { font-size: 0.82rem; color: var(--muted); display: flex; gap: 10px; align-items: flex-start; }
.consent input { width: auto; margin-top: 4px; }

/* ---------- Map / Areas ---------- */
.map-panel { position: relative; background: linear-gradient(160deg, var(--wash), var(--paper)); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; overflow: hidden; box-shadow: var(--shadow-sm); }
.map-panel::after { content:""; position:absolute; inset:0; background-image: radial-gradient(circle, rgba(200,168,106,.18) 1.5px, transparent 1.6px); background-size: 26px 26px; opacity:.28; pointer-events:none; }
.area-grid { display: flex; flex-wrap: wrap; gap: 12px; position: relative; z-index: 1; }
.area-pill { flex: 0 1 auto; }
.area-pill { display: flex; align-items: center; gap: 10px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 11px 18px; font-family: var(--font-head); font-weight: 500; color: var(--ink); box-shadow: var(--shadow-sm); transition: transform .16s, border-color .16s, color .16s, box-shadow .16s; }
.area-pill svg { color: var(--gold-600); width: 18px; height: 18px; flex: none; }
a.area-pill:hover { border-color: var(--gold); color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow); }
span.area-pill { opacity: 0.6; box-shadow: none; }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: linear-gradient(180deg, var(--wash), var(--bone) 70%, var(--paper)); position: relative; overflow: hidden; padding-block: clamp(52px, 7vw, 88px); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.1rem); color: var(--ink); }
.page-hero .lead { color: var(--ink-soft); max-width: 640px; }
.crumbs { font-family: var(--font-head); font-size: 0.82rem; color: var(--muted); margin-bottom: 16px; letter-spacing: 0.02em; }
.crumbs a { color: var(--navy); }
.crumbs a:hover { color: var(--gold-600); text-decoration: underline; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(150deg, rgba(18,58,99,0.90), rgba(14,46,78,0.94)), url("../images/atlanta-skyline.webp") center/cover no-repeat; color: #fff; border-radius: var(--radius); padding: clamp(32px, 5vw, 56px); text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.cta-band::before { content:""; position:absolute; inset:0; pointer-events:none; background: radial-gradient(600px 200px at 50% -10%, rgba(200,168,106,0.18), transparent 70%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.4rem); }
.cta-band p { color: #dbe9f6; max-width: 560px; margin: 14px auto 28px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-700); color: #aebfd0; padding-top: 68px; position: relative; overflow: hidden; }
.site-footer::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(200,168,106,0.5), transparent);
}
.site-footer .container { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.site-footer h4 { color: #fff; font-family: var(--font-display); font-size: 1.08rem; margin-bottom: 16px; letter-spacing: 0.01em; }
.site-footer a { color: #aebfd0; }
.site-footer a:hover { color: #fff; }
.footer-links li { padding: 5px 0; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: #8ba3bd; }
.footer-promise { margin-top: 16px; font-size: 0.95rem; color: #c2d3e4; max-width: 320px; }
.footer-promise strong { color: var(--gold); }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; padding: 6px 0; font-size: 0.95rem; }
.footer-contact svg { color: var(--gold); flex: none; margin-top: 3px; width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 46px; padding: 22px 0 26px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: 0.85rem; color: #8ba3bd; }
.footer-bottom .gold { color: var(--gold); }

/* ---------- Sticky mobile call ---------- */
.sticky-call { display: none; }
@media (max-width: 720px) {
  .sticky-call {
    display: flex; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 80;
    gap: 10px;
  }
  .sticky-call a { flex: 1; box-shadow: var(--shadow-lg); }
  body { padding-bottom: 98px; }
}

/* ---------- Motion (Elroy: calm, reduced-motion safe) ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s cubic-bezier(0.22,1,0.36,1), transform .8s cubic-bezier(0.22,1,0.36,1); will-change: opacity, transform; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* focus-visible — gold ring */
:where(a, button, input, select, textarea, [tabindex]):focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
::selection { background: rgba(200,168,106,0.3); color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { max-width: 460px; margin-inline: auto; width: 100%; }
  .hero h1 { font-size: clamp(2.1rem, 8vw, 2.8rem); }
  .promise { grid-template-columns: 1fr; gap: 28px; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .area-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .chips { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .svc { grid-template-columns: 1fr; }
  .btn--lg { padding: 15px 24px; }
}

/* ============================================================
   Level-100 cinematic layer — Spider × Matrix
   (hero scene · gold web · fireworks · tilt proof gallery · lightbox)
   ============================================================ */

/* Hero as a living scene */
.hero { perspective: 1400px; }
.hero .container { position: relative; z-index: 2; }
.hero-web, .fireworks { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero-web { z-index: 0; display: none; }
.fireworks { z-index: 1; }
@media (min-width: 921px) { .hero-web { display: block; } }
.hero-glow { position: absolute; z-index: 0; pointer-events: none; top: 4%; right: 2%; width: 62%; height: 72%;
  background: radial-gradient(closest-side, rgba(200,168,106,0.2), transparent 72%); }
.hero-glow--soft { position: absolute; inset: 0; z-index: 0; opacity: 0.7;
  background: radial-gradient(60% 55% at 50% 10%, rgba(200,168,106,0.16), transparent 72%); }

/* Hero visual — 3D tilt frame + glass proof card */
.hero-visual { position: relative; transform-style: preserve-3d; will-change: transform; transition: transform .2s ease-out; }
.hero-photo-frame { position: relative; margin: 0; aspect-ratio: 4 / 5; border-radius: 22px; overflow: hidden;
  box-shadow: 0 34px 80px -34px rgba(60,48,30,0.55); outline: 1px solid rgba(200,168,106,0.28); outline-offset: -1px; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo-badge { position: absolute; left: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(18,24,20,0.5); backdrop-filter: blur(10px); color: #fff; font-family: var(--font-head); font-weight: 600;
  font-size: 0.74rem; letter-spacing: 0.02em; padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.16); }
.hero-photo-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(200,168,106,0.28); }
.hero-visual .hero-card { position: relative; z-index: 3; margin: -56px 14px 0;
  background: rgba(252,250,246,0.88); backdrop-filter: blur(12px); border: 1px solid rgba(200,168,106,0.28); }

/* Proof gallery — dark cinematic band */
.section--proof { background: linear-gradient(165deg, #0f2136, var(--navy-700)); color: #dbe6f1; position: relative; overflow: hidden; }
.section--proof .section-title { color: #fff; }
.section--proof .eyebrow { color: var(--gold-glow); }
.section--proof .lead { color: #b9cbdd; }
.section--proof .btn--outline { color: #fff; border-color: rgba(255,255,255,0.4); }
.section--proof .btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; margin-top: 44px; perspective: 1200px; }
.proof-card { position: relative; margin: 0; padding: 0; border: 1px solid rgba(200,168,106,0.22); background: #0d1a2b; border-radius: 16px;
  overflow: hidden; cursor: pointer; grid-row: span 1; transform-style: preserve-3d; will-change: transform;
  transition: box-shadow .28s ease, border-color .28s ease, transform .12s ease-out; box-shadow: 0 14px 34px -20px rgba(0,0,0,0.6); }
.proof-card--tall { grid-row: span 2; }
.proof-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(0.22,1,0.36,1); }
.proof-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 45%); pointer-events: none; }
.proof-card .proof-cap { position: absolute; left: 13px; bottom: 12px; z-index: 2; color: #fff; font-family: var(--font-head);
  font-weight: 600; font-size: 0.8rem; letter-spacing: 0.02em; text-shadow: 0 1px 6px rgba(0,0,0,0.6); }
.proof-card:hover img { transform: scale(1.07); }
.proof-card:hover, .proof-card.is-tilting { border-color: var(--gold);
  box-shadow: 0 26px 56px -22px rgba(0,0,0,0.7), 0 0 0 1px var(--gold), 0 12px 44px -12px rgba(200,168,106,0.4); }

/* Finale CTA fireworks */
.cta-band--finale { position: relative; }
.cta-band--finale .fireworks { z-index: 0; border-radius: var(--radius); }
.cta-band--finale > *:not(.fireworks) { position: relative; z-index: 1; }

/* Cinematic lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  background: rgba(8,8,11,0.93); backdrop-filter: blur(6px); opacity: 0; visibility: hidden; transition: opacity .3s ease; padding: 24px; }
.lightbox.open { opacity: 1; visibility: visible; }
.lb-img { max-width: min(92vw, 1080px); max-height: 84vh; border-radius: 12px; box-shadow: 0 30px 90px -20px rgba(0,0,0,0.85); outline: 1px solid rgba(200,168,106,0.3); }
.lb-close { position: absolute; top: 16px; right: 22px; background: none; border: 0; color: #fff; font-size: 2.6rem; line-height: 1; cursor: pointer; opacity: .8; }
.lb-close:hover { opacity: 1; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.22);
  color: #fff; width: 54px; height: 54px; border-radius: 50%; font-size: 1.8rem; cursor: pointer; transition: .2s; }
.lb-prev { left: 20px; } .lb-next { right: 20px; }
.lb-nav:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.lb-cap { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); max-width: min(86vw, 620px); text-align: center; color: #fff; font-family: var(--font-head); font-weight: 600; letter-spacing: .02em; text-shadow: 0 1px 6px rgba(0,0,0,0.72); background: rgba(8,8,11,0.58); backdrop-filter: blur(10px); padding: 7px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.14); }

/* Cinematic responsive */
@media (max-width: 860px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .hero-visual .hero-card { margin: -44px 6px 0; }
}
@media (max-width: 620px) {
  .proof-grid { grid-auto-rows: 148px; gap: 12px; }
  .lb-nav { width: 44px; height: 44px; font-size: 1.4rem; }
}

/* Motion-safety — kill the spectacle for reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .hero-web, .fireworks { display: none !important; }
  .hero-visual, .proof-card, .proof-card img { transition: none !important; }
}

/* Real-photo band (interior pages) */
.photo-band { position: relative; margin: 0; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5 / 3; max-height: 460px; }
.photo-band img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; display: block; }
.photo-band--portrait { aspect-ratio: 4 / 3; max-height: 620px; }
.photo-band--portrait img { object-position: center 58%; }
.photo-band--faces img { object-position: center 24%; }
.photo-band figcaption { position: absolute; left: 16px; bottom: 14px; display: inline-flex; align-items: center; gap: 8px; background: rgba(18,24,20,0.5); backdrop-filter: blur(10px); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.02em; padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.16); }
.photo-band figcaption .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(200,168,106,0.28); }
