/* =========================================================
   Queen City Movers — Charlotte, NC
   Palette: soft teal-slate + antique gold on warm paper
   Type: Google Sans (display · body · labels)
   ========================================================= */

:root {
  --paper:      #F5F4F2;
  --paper-2:    #ECEAE6;
  --white:      #FFFFFF;
  --ink:        #1C2529;
  --ink-2:      #29363C;
  --royal:      #37636F;
  --royal-deep: #234952;
  --gold:       #C4A052;
  --gold-soft:  #E3D2A0;
  --muted:      #5E6B70;
  --muted-ink:  #B7C4C9;
  --line:       #E1DED8;
  --line-ink:   rgba(255,255,255,.14);

  --maxw: 1180px;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 18px 50px -24px rgba(28,37,41,.4);
  --shadow-sm: 0 6px 20px -12px rgba(28,37,41,.35);

  --ff-display: "Google Sans", "Product Sans", "Poppins", "Roboto", system-ui, sans-serif;
  --ff-body: "Google Sans", "Product Sans", "Poppins", "Roboto", system-ui, sans-serif;
  --ff-mono: "Google Sans", "Product Sans", "Poppins", "Roboto", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: var(--radius);
}
.skip-link:focus { left: 16px; top: 16px; }

:focus-visible { outline: 2.5px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* ---------- Shared type ---------- */
.eyebrow {
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--gold-soft); }
.eyebrow--gold { color: var(--gold); }

.section-title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.section { padding: clamp(64px, 8vw, 108px) 0; }
.section--soft { background: var(--paper-2); }
.section--ink { background: var(--ink); color: #fff; }

.section-head { max-width: 640px; margin: 0 auto clamp(40px, 5vw, 60px); text-align: center; }
.section-head--left { text-align: left; margin-inline: 0; }
.section-head--light .section-title { color: #fff; }
.section-lede { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }
.section-head--light .section-lede { color: var(--muted-ink); }

.stars { color: var(--gold); letter-spacing: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--ff-body); font-weight: 600; font-size: .95rem;
  padding: 13px 22px; border-radius: var(--radius); border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn--gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--gold:hover { background: #d3b264; transform: translateY(-1px); }
.btn--ink { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--ink:hover { background: var(--royal-deep); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: currentColor; border-color: currentColor; }
.btn--ghost:hover { background: rgba(255,255,255,.08); }
.btn--outline { background: transparent; color: var(--royal); border-color: var(--line); }
.btn--outline:hover { border-color: var(--royal); background: #fff; }
.btn--full { width: 100%; }
.btn--lg { padding: 16px 30px; font-size: 1rem; }

/* ---------- Topbar ---------- */
.topbar { background: var(--royal-deep); color: #e9e1f4; font-size: .82rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 40px; gap: 16px; }
.topbar__lic { font-family: var(--ff-mono); letter-spacing: .02em; display: flex; align-items: center; gap: 9px; }
.topbar__lic .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: none; }
.topbar__right { display: flex; align-items: center; gap: 22px; }
.topbar__right a:hover { color: #fff; }
.topbar__phone { font-weight: 600; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,242,247,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; gap: 24px; min-height: 74px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { color: var(--royal); flex: none; }
.brand__name { font-family: var(--ff-display); font-weight: 600; font-size: 1.18rem; line-height: 1.1; color: var(--ink); }
.brand__tag { display: block; font-family: var(--ff-mono); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a { font-weight: 500; font-size: .95rem; color: var(--ink-2); position: relative; padding: 4px 0; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--gold); transition: width .2s ease; }
.nav a:hover { color: var(--royal); }
.nav a:hover::after { width: 100%; }

.site-header__cta { display: flex; gap: 10px; }
.site-header__cta .btn--ghost { color: var(--ink); border-color: var(--line); }
.site-header__cta .btn--ghost:hover { border-color: var(--royal); color: var(--royal); background: transparent; }

.hamburger { display: none; margin-left: auto; background: none; border: 0; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }
.hamburger span + span { margin-top: 5px; }

.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 16px 24px 24px; border-bottom: 1px solid var(--line); background: var(--paper); }
.mobile-nav a { padding: 12px 4px; font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-nav .btn { margin-top: 12px; }
.mobile-nav[hidden] { display: none; }
.mobile-nav.open { display: flex; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(55,99,111,.55), transparent 60%),
    linear-gradient(160deg, var(--royal-deep), var(--ink) 70%);
  color: #fff;
}
.hero__crown { position: absolute; top: -140px; right: -120px; color: rgba(196,160,82,.12); pointer-events: none; }
.hero__inner {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center;
  padding: clamp(56px, 8vw, 104px) 24px;
  position: relative; z-index: 1;
}
.hero__title {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(2.6rem, 6.4vw, 4.6rem); line-height: 1.02; letter-spacing: -0.015em;
  margin-bottom: 22px;
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__lede { font-size: 1.14rem; color: #e5ddf1; max-width: 46ch; margin-bottom: 30px; }

.hero__trust { display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: center; }
.hero__trust li { display: flex; align-items: center; gap: 8px; font-size: .95rem; color: #efeaf7; }
.hero__trust strong { font-weight: 700; }
.hero__trust .check { color: var(--gold); font-weight: 700; }
.hero__trust .stars { font-size: .9rem; }

/* Quote card */
.quote {
  background: var(--white); color: var(--ink);
  border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.quote__head { margin-bottom: 22px; }
.quote__title { font-family: var(--ff-display); font-weight: 600; font-size: 1.5rem; line-height: 1.15; }
.quote__sub { color: var(--muted); font-size: .92rem; margin-top: 6px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field > span { font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.field input, .field select {
  font-family: var(--ff-body); font-size: .95rem; color: var(--ink);
  padding: 11px 12px; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: var(--paper); width: 100%;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--royal); background: #fff; }
.quote__form .btn { margin-top: 6px; }
.quote__fineprint { font-size: .72rem; color: var(--muted); text-align: center; margin-top: 12px; }

/* Special-offer card (hero, right side) */
.offer {
  position: relative;
  background: var(--white); color: var(--ink);
  border-radius: var(--radius-lg); padding: 36px 32px 30px;
  box-shadow: var(--shadow); border-top: 4px solid var(--gold);
}
.offer__ribbon {
  position: absolute; top: -13px; right: 26px;
  font-family: var(--ff-mono); font-size: .64rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--royal); color: #fff; padding: 6px 14px; border-radius: 20px;
}
.offer__eyebrow {
  font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--royal); margin-bottom: 10px;
}
.offer__title {
  font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.15rem); line-height: 1.1; letter-spacing: -.01em;
}
.offer__title span { color: var(--gold); }
.offer__sub { color: var(--muted); font-size: .96rem; margin-top: 12px; }
.offer__perks { display: flex; flex-direction: column; gap: 10px; margin: 22px 0 24px; }
.offer__perks li {
  position: relative; padding-left: 26px; font-size: .95rem;
  font-weight: 500; color: var(--ink-2);
}
.offer__perks li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--gold); font-weight: 700;
}
.offer__fineprint { font-size: .72rem; color: var(--muted); text-align: center; margin-top: 14px; }
.offer__fineprint strong { color: var(--ink); }

/* ---------- Stats ---------- */
.stats { background: var(--ink-2); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 34px 20px; text-align: center; border-left: 1px solid var(--line-ink); }
.stat:first-child { border-left: 0; }
.stat__num { font-family: var(--ff-display); font-weight: 500; font-size: clamp(2rem, 4vw, 2.9rem); display: block; line-height: 1; }
.stat__num span { font-size: .5em; color: var(--gold); margin-left: 2px; }
.stat__label { font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-ink); margin-top: 10px; display: block; }

/* ---------- Services ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 26px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--gold-soft); }
.card__icon {
  display: inline-flex; width: 52px; height: 52px; align-items: center; justify-content: center;
  border-radius: var(--radius); background: var(--paper-2); color: var(--royal); margin-bottom: 18px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-family: var(--ff-display); font-weight: 600; font-size: 1.28rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .96rem; }

/* ---------- Why ---------- */
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 48px; }
.why__item { border-top: 1px solid var(--line-ink); padding-top: 20px; }
.why__no { font-family: var(--ff-mono); font-size: .8rem; color: var(--gold); letter-spacing: .1em; }
.why__item h3 { font-family: var(--ff-display); font-weight: 500; font-size: 1.3rem; margin: 10px 0 8px; color: #fff; }
.why__item p { color: var(--muted-ink); font-size: .95rem; }

/* ---------- Pricing ---------- */
.tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.tier {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 24px; display: flex; flex-direction: column; position: relative;
}
.tier--featured { border-color: var(--royal); box-shadow: var(--shadow); }
.tier--custom { background: var(--ink); color: #fff; border-color: var(--ink); }
.tier__badge {
  position: absolute; top: -12px; left: 24px;
  font-family: var(--ff-mono); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase;
  background: var(--royal); color: #fff; padding: 5px 12px; border-radius: 20px;
}
.tier__for { font-family: var(--ff-mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; min-height: 2.2em; }
.tier--custom .tier__for { color: var(--gold-soft); }
.tier__price { font-family: var(--ff-display); font-weight: 500; font-size: 2.9rem; line-height: 1; margin-bottom: 22px; }
.tier__cur { font-size: 1.3rem; vertical-align: super; margin-right: 2px; }
.tier__per { font-family: var(--ff-body); font-size: 1rem; font-weight: 500; color: var(--muted); }
.tier__price--flat { font-size: 2rem; color: var(--gold); }
.tier__list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; flex: 1; }
.tier__list li { font-size: .93rem; padding-left: 22px; position: relative; color: var(--ink-2); }
.tier--custom .tier__list li { color: #e5ddf1; }
.tier__list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%; border: 2px solid var(--gold); }
.tier--custom .btn--outline { color: #fff; border-color: var(--line-ink); }
.tier--custom .btn--outline:hover { border-color: var(--gold); background: transparent; color: var(--gold); }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; counter-reset: none; }
.step { position: relative; padding-top: 24px; border-top: 2px solid var(--gold); }
.step__no { font-family: var(--ff-display); font-weight: 500; font-size: 2.6rem; color: var(--royal); display: block; line-height: 1; margin-bottom: 12px; }
.step h3 { font-family: var(--ff-display); font-weight: 600; font-size: 1.4rem; margin-bottom: 8px; }
.step p { color: var(--muted); }

/* ---------- Areas ---------- */
.areas__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.areas__copy .btn { margin-top: 24px; }
.areas__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--line); }
.areas__list li {
  background: var(--white); padding: 16px 14px; font-size: .9rem; font-weight: 500;
  text-align: center; color: var(--ink-2); transition: background .15s ease, color .15s ease;
}
.areas__list li:hover { background: var(--royal); color: #fff; }

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  background: var(--ink-2); border: 1px solid var(--line-ink); border-radius: var(--radius-lg);
  padding: 30px 26px; display: flex; flex-direction: column;
}
.review .stars { font-size: 1rem; margin-bottom: 16px; }
.review blockquote { font-family: var(--ff-display); font-weight: 400; font-size: 1.12rem; line-height: 1.45; color: #f2ecf9; flex: 1; }
.review figcaption { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line-ink); }
.review figcaption strong { display: block; font-weight: 600; }
.review figcaption span { font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .06em; color: var(--muted-ink); text-transform: uppercase; }

/* ---------- About ---------- */
.about__inner { display: grid; grid-template-columns: 200px 1fr; gap: 56px; align-items: center; }
.about__mark { color: var(--gold); }
.about__copy p { color: var(--muted); margin-top: 16px; font-size: 1.02rem; }
.about__copy p:first-of-type { margin-top: 24px; }

/* ---------- FAQ ---------- */
.faq__inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.accordion { display: flex; flex-direction: column; gap: 12px; }
.acc { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.acc summary {
  cursor: pointer; list-style: none; padding: 20px 24px;
  font-family: var(--ff-display); font-weight: 500; font-size: 1.1rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; font-family: var(--ff-body); font-weight: 400; font-size: 1.6rem; color: var(--royal); line-height: 1; transition: transform .2s ease; flex: none; }
.acc[open] summary::after { transform: rotate(45deg); }
.acc__body { padding: 0 24px 22px; }
.acc__body p { color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(140deg, var(--royal), var(--royal-deep)); color: #fff; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: clamp(48px, 6vw, 76px) 24px; flex-wrap: wrap; }
.cta-band__title { font-family: var(--ff-display); font-weight: 500; font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.05; }
.cta-band__sub { color: #e6ddf3; margin-top: 10px; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band .btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #cfc7e0; padding: 60px 0 30px; }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line-ink); }
.site-footer__brand .brand__mark { color: var(--gold); margin-bottom: 12px; }
.site-footer__brand .brand__name { font-family: var(--ff-display); font-weight: 600; font-size: 1.2rem; color: #fff; }
.site-footer__blurb { font-size: .92rem; margin-top: 12px; max-width: 34ch; }
.site-footer__lic { font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .06em; color: var(--muted-ink); margin-top: 16px; }
.site-footer__col h3 { font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.site-footer__col li { margin-bottom: 9px; }
.site-footer__col a:hover { color: #fff; }
.site-footer__contact p { margin-bottom: 8px; }
.site-footer__contact a { font-weight: 500; color: #fff; }
.site-footer__contact address { font-style: normal; margin: 8px 0; }
.site-footer__hours { font-family: var(--ff-mono); font-size: .78rem; color: var(--muted-ink); }
.site-footer__bar { display: flex; justify-content: space-between; gap: 16px; padding-top: 24px; font-size: .82rem; color: var(--muted-ink); flex-wrap: wrap; }
.site-footer__bar a:hover { color: #fff; }

/* =========================================================
   Subpages (locations, services, legal, 404)
   ========================================================= */

/* ---------- Breadcrumbs (always left-aligned) ---------- */
.breadcrumbs { background: var(--paper-2); border-bottom: 1px solid var(--line); }
.breadcrumbs ol {
  display: flex; flex-wrap: wrap; align-items: center; gap: 9px;
  padding: 13px 0; text-align: left;
  font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--muted);
}
.breadcrumbs li { display: flex; align-items: center; gap: 9px; }
.breadcrumbs li + li::before { content: "/"; color: var(--line); }
.breadcrumbs a { color: var(--royal); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs [aria-current="page"] { color: var(--ink); }

/* ---------- Page hero (compact) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(55,99,111,.5), transparent 60%),
    linear-gradient(160deg, var(--royal-deep), var(--ink) 75%);
  color: #fff;
}
.page-hero__crown { position: absolute; top: -120px; right: -100px; color: rgba(196,160,82,.1); pointer-events: none; }
.page-hero__inner { position: relative; z-index: 1; padding: clamp(48px, 7vw, 88px) 24px; max-width: var(--maxw); margin-inline: auto; }
.page-hero h1 {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.04; letter-spacing: -.015em; max-width: 20ch;
}
.page-hero__lede { color: #e5ddf1; font-size: 1.1rem; max-width: 62ch; margin-top: 18px; }
.page-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.page-hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); }

/* ---------- Prose (legal + long copy) ---------- */
.prose { max-width: 74ch; }
.prose h2 { font-family: var(--ff-display); font-weight: 600; font-size: 1.55rem; margin: 38px 0 12px; }
.prose h3 { font-family: var(--ff-display); font-weight: 600; font-size: 1.18rem; margin: 26px 0 8px; }
.prose p { color: var(--muted); margin-bottom: 14px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.prose li { color: var(--muted); margin-bottom: 8px; }
.prose a { color: var(--royal); text-decoration: underline; }
.prose strong { color: var(--ink); }
.prose__updated {
  font-family: var(--ff-mono); font-size: .74rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid var(--line);
}

/* ---------- Location grid ---------- */
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.loc-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 24px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.loc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--gold-soft); }
.loc-card h3 { font-family: var(--ff-display); font-weight: 600; font-size: 1.3rem; margin-bottom: 6px; }
.loc-card p { color: var(--muted); font-size: .94rem; flex: 1; }
.loc-card__link { margin-top: 16px; font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--royal); }
.loc-card:hover .loc-card__link { color: var(--gold); }

/* ---------- Neighborhood chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips a {
  border: 1px solid var(--line); border-radius: 20px; padding: 8px 16px;
  font-size: .88rem; font-weight: 500; color: var(--ink-2); transition: border-color .15s ease, color .15s ease;
}
.chips a:hover { border-color: var(--royal); color: var(--royal); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info dt { font-family: var(--ff-mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: 22px; }
.contact-info dt:first-of-type { margin-top: 0; }
.contact-info dd { font-size: 1.05rem; margin-top: 4px; }
.contact-info dd a { color: var(--royal); font-weight: 600; }
.contact-info address { font-style: normal; }

/* ---------- 404 ---------- */
.errorpage .page-hero__inner { text-align: center; }
.error-code { font-family: var(--ff-display); font-weight: 500; font-size: clamp(5rem, 18vw, 11rem); line-height: .9; color: var(--gold); }
.error-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav, .site-header__cta { display: none; }
  .hamburger { display: block; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .cards, .why__grid, .tiers, .steps, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .areas__inner, .about__inner, .faq__inner { grid-template-columns: 1fr; gap: 36px; }
  .about__mark { display: none; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .topbar__lic { display: none; }
  .topbar__inner { justify-content: center; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--line-ink); }
  .stat:nth-child(odd) { border-left: 0; }
  .cards, .why__grid, .tiers, .steps, .review-grid { grid-template-columns: 1fr; }
  .areas__list { grid-template-columns: repeat(2, 1fr); }
  .loc-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .quote { padding: 24px; }
}
