/* ────────────────────────────────────────────────────────────
   METRO DETROIT HOME INSPECTOR — DESIGN SYSTEM
   A premium, minimalist, service-firm aesthetic.
   Restraint over decoration. Typography over ornament.
   ──────────────────────────────────────────────────────────── */

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

:root {
  /* CORE PALETTE — restrained, premium, deeply considered */
  --ink:        #0b1f33;   /* primary navy — used sparingly */
  --ink-2:      #14304c;
  --ink-3:      #1d4063;
  --bone:       #f6f3ee;   /* warm off-white background */
  --paper:      #ffffff;
  --linen:      #ece6dd;
  --rule:       #ddd6c9;   /* subtle dividers */
  --gold:       #b8893e;   /* aged brass — not yellow */
  --gold-deep:  #8e6a2f;
  --forest:     #1f4f3f;   /* deep, calm green */
  --forest-dk:  #163d31;
  --char:       #1a1814;   /* near-black text */
  --char-2:     #3a3833;
  --mute:       #6f6a61;   /* secondary text */
  --mute-2:     #9a9388;

  /* TYPOGRAPHY */
  --serif: 'Cormorant Garamond', 'Garamond', 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  /* SPACING */
  --gutter: 32px;
  --radius: 4px;
  --radius-md: 10px;
}

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

body {
  font-family: var(--sans);
  background: var(--bone);
  color: var(--char);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: var(--ink); }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── TYPOGRAPHY PRIMITIVES ─────────────────────────────────── */

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow--center { text-align: center; display: block; }
.eyebrow--light { color: var(--gold); }

.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin: 18px 0 28px;
}
.display em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.h2--center { text-align: center; max-width: 760px; margin: 14px auto 0; }
.h2 em { font-style: italic; color: var(--gold-deep); }

.lede {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(246, 243, 238, 0.78);
  max-width: 560px;
  font-weight: 300;
}
.lede--muted { color: var(--mute); max-width: 640px; margin-top: 14px; }

.prose {
  font-size: 17px;
  line-height: 1.75;
  color: var(--char-2);
  margin-bottom: 18px;
  font-weight: 400;
}

/* ── BUTTONS ───────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--primary:hover { background: var(--ink-2); border-color: var(--ink-2); }
.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(246, 243, 238, 0.32);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--block { width: 100%; }
.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--lg { padding: 18px 36px; font-size: 15px; }
.btn__icon { font-size: 12px; }

/* ── LINK ARROW ───────────────────────────────────────────── */

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: gap 0.2s ease, color 0.2s ease;
}
.link-arrow:hover { gap: 12px; color: var(--gold-deep); }
.link-arrow--sm { font-size: 13px; }

/* ── NAV ──────────────────────────────────────────────────── */

.nav {
  background: var(--ink);
  border-bottom: 1px solid rgba(184, 137, 62, 0.18);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(11, 31, 51, 0.96);
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand__logo {
  display: block;
  height: 78px;
  width: auto;
  margin: -8px 0;
}
.nav__inner { height: 84px; overflow: visible; }
.nav { overflow: visible; }
.brand { overflow: visible; }
@media (max-width: 768px) {
  .brand__logo { height: 64px; margin: -6px 0; }
  .nav__inner { height: 72px; }
}
@media (max-width: 480px) {
  .brand__logo { height: 50px; margin: -4px 0; }
  .nav__inner { height: 60px; }
}
.nav__links {
  display: flex;
  gap: 36px;
  justify-content: center;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(246, 243, 238, 0.78);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--paper); }
.nav__links a.active { color: var(--paper); }
.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}
.nav__cta {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav__phone {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}
.nav__phone:hover { color: var(--paper); }

/* Schedule button on dark nav — gold accent */
.nav__cta .btn--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.nav__cta .btn--primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--paper);
}

/* ── HERO ─────────────────────────────────────────────────── */

.hero {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--paper);
  padding: 100px var(--gutter) 120px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(184, 137, 62, 0.08), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(31, 79, 63, 0.18), transparent 60%);
  pointer-events: none;
}
.hero__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__copy { max-width: 720px; }
.hero .eyebrow { color: var(--gold); }
.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero__signal {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid rgba(246, 243, 238, 0.12);
}
.signal__stars { color: var(--gold); letter-spacing: 0.1em; font-size: 14px; }
.signal__text { font-size: 13px; color: rgba(246, 243, 238, 0.7); letter-spacing: 0.02em; }

/* CRED CARD */
.hero__credential { display: flex; justify-content: center; }
.cred {
  background: rgba(246, 243, 238, 0.04);
  border: 1px solid rgba(246, 243, 238, 0.12);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  width: 280px;
  backdrop-filter: blur(10px);
}
.cred__photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 2px solid var(--gold);
  overflow: hidden;
  background: linear-gradient(160deg, var(--ink-2), var(--ink-3));
}
.cred__photo img {
  width: 115%;
  height: 115%;
  object-fit: cover;
  display: block;
  transform: scaleX(-1);
  margin-left: 0;
  margin-top: -7.5%;
}
.cred__name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--paper);
  margin-bottom: 4px;
}
.cred__role {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.cred__line {
  font-size: 12px;
  color: rgba(246, 243, 238, 0.6);
  letter-spacing: 0.04em;
  padding-top: 14px;
  border-top: 1px solid rgba(246, 243, 238, 0.1);
}

/* ── PROMISE STRIP ────────────────────────────────────────── */

.promise {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 48px var(--gutter);
}
.promise__line {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.005em;
  position: relative;
}
.promise__mark {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.4em;
  vertical-align: -0.1em;
  margin: 0 8px;
}

/* ── TRUST PILLARS ────────────────────────────────────────── */

.pillars {
  background: var(--bone);
  padding: 110px 0;
}
.pillars__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.pillar {
  background: var(--bone);
  padding: 44px 36px;
  transition: background 0.3s ease;
}
.pillar:hover { background: var(--paper); }
.pillar__num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.pillar__title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.2;
}
.pillar__body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--char-2);
}

/* ── FOUNDER ──────────────────────────────────────────────── */

.founder {
  background: var(--paper);
  padding: 120px var(--gutter);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.founder__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 96px;
  align-items: center;
}
.founder__media { text-align: center; }
.founder__photo {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  margin: 0 auto 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 60%, var(--ink-3) 100%);
}
.founder__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}
.founder__photo::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(184, 137, 62, 0.55);
  pointer-events: none;
}
.founder__caption { padding-top: 18px; border-top: 1px solid var(--rule); margin: 0 32px; }
.founder__name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 4px;
}
.founder__role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
.founder__copy { max-width: 600px; }
.founder__copy .h2 { margin-top: 14px; margin-bottom: 28px; }
.founder__creds {
  list-style: none;
  margin: 28px 0 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.founder__creds li {
  font-size: 14px;
  color: var(--char-2);
  padding: 10px 0;
  padding-left: 22px;
  position: relative;
}
.founder__creds li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

/* ── SERVICES ─────────────────────────────────────────────── */

.services {
  background: var(--bone);
  padding: 120px 0;
}
.services__head { max-width: 720px; }
.services__head .h2 { margin-top: 14px; }
.services__grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.service {
  background: var(--paper);
  padding: 48px 44px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.service:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.service__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.service__title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}
.service__body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--char-2);
  margin-bottom: 24px;
}

/* ── PROCESS ──────────────────────────────────────────────── */

.process {
  background: var(--paper);
  padding: 120px 0;
  border-top: 1px solid var(--rule);
}
.process__head { text-align: center; max-width: 640px; margin: 0 auto; }
.process__head .h2 { margin-top: 14px; }
.process__steps {
  list-style: none;
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  left: 5%;
  right: 5%;
  top: 22px;
  height: 1px;
  background: var(--rule);
}
.process__step {
  text-align: center;
  padding: 0 18px;
  position: relative;
  z-index: 1;
}
.process__num {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 42px;
  text-align: center;
  border-radius: 50%;
  background: var(--bone);
  border: 1px solid var(--rule);
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 24px;
}
.process__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
}
.process__body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--mute);
}

/* ── DIFFERENTIATOR ───────────────────────────────────────── */

.diff {
  background: var(--ink);
  color: var(--paper);
  padding: 130px var(--gutter);
  position: relative;
  overflow: hidden;
}
.diff::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(184, 137, 62, 0.06), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(31, 79, 63, 0.16), transparent 50%);
  pointer-events: none;
}
.diff__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.diff__headline {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin: 18px 0 32px;
}
.diff__headline em {
  font-style: italic;
  color: var(--gold);
}
.diff__copy {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(246, 243, 238, 0.78);
  max-width: 720px;
  margin: 0 auto;
  font-weight: 300;
}
.diff__pillars {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: left;
}
.diff__pillar {
  padding: 28px 24px;
  border-left: 1px solid rgba(184, 137, 62, 0.4);
}
.diff__pTitle {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 10px;
}
.diff__pBody {
  font-size: 14px;
  color: rgba(246, 243, 238, 0.7);
  line-height: 1.6;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */

.testimonials {
  background: var(--bone);
  padding: 120px 0;
}
.testimonials__head { max-width: 720px; margin-bottom: 64px; }
.testimonials__head .h2 { margin-top: 14px; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.quote {
  background: var(--paper);
  padding: 40px 36px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.quote--featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.quote__stars {
  color: var(--gold);
  letter-spacing: 0.1em;
  font-size: 14px;
  margin-bottom: 22px;
}
.quote__body {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.55;
  color: var(--char);
  margin-bottom: 28px;
}
.quote--featured .quote__body { color: var(--paper); }
.quote__attr {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.quote--featured .quote__attr {
  color: rgba(246, 243, 238, 0.6);
  border-top-color: rgba(246, 243, 238, 0.15);
}
.testimonials__foot {
  margin-top: 56px;
  text-align: center;
}

/* ── LEAD MAGNET ──────────────────────────────────────────── */

.magnet {
  background: var(--paper);
  padding: 110px var(--gutter);
  border-top: 1px solid var(--rule);
}
.magnet__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.magnet__copy .h2 { margin: 14px 0 24px; }
.magnet__list {
  list-style: none;
  margin-top: 24px;
}
.magnet__list li {
  padding: 12px 0 12px 24px;
  position: relative;
  font-size: 15px;
  color: var(--char-2);
  border-bottom: 1px solid var(--rule);
}
.magnet__list li:last-child { border-bottom: none; }
.magnet__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--gold);
  font-size: 14px;
}
.magnet__form {
  background: var(--bone);
  padding: 40px 36px;
  border-radius: var(--radius);
  border: 1px solid var(--rule);
}
.magnet__formTitle {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 24px;
}

/* ── FORM FIELDS (shared) ────────────────────────────────── */

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.field input,
.field select {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--char);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
}
.field input:focus,
.field select:focus { border-color: var(--ink); }
.field--full { width: 100%; }
.field__hint {
  font-size: 12px;
  color: var(--mute);
  text-align: center;
  margin-top: 14px;
}

/* ── SCHEDULE ─────────────────────────────────────────────── */

.schedule {
  background: var(--ink);
  color: var(--paper);
  padding: 120px var(--gutter);
}
.schedule__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: start;
}
.schedule__copy { padding-top: 12px; }
.schedule__h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin: 18px 0 24px;
}
.schedule__sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(246, 243, 238, 0.72);
  font-weight: 300;
}
.schedule__list {
  list-style: none;
  margin: 36px 0;
  padding-top: 28px;
  border-top: 1px solid rgba(246, 243, 238, 0.14);
}
.schedule__list li {
  padding: 10px 0;
  font-size: 15px;
  color: rgba(246, 243, 238, 0.85);
}
.schedule__list li span {
  color: var(--gold);
  margin-right: 12px;
  font-size: 18px;
}
.schedule__contact {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(246, 243, 238, 0.14);
}
.schedule__phone {
  display: inline-block;
  font-family: var(--serif);
  font-size: 32px;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.schedule__hours {
  font-size: 13px;
  color: rgba(246, 243, 238, 0.6);
  letter-spacing: 0.04em;
}

.schedule__form {
  background: var(--bone);
  color: var(--char);
  padding: 44px 40px;
  border-radius: var(--radius);
}
.form-title {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-sub {
  font-size: 13px;
  color: var(--mute);
  margin-bottom: 24px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.error-msg {
  display: none;
  background: #fdeceb;
  color: #8b1f1a;
  font-size: 13px;
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 14px;
  border: 1px solid #f4c0bd;
}
.form-privacy {
  font-size: 12px;
  color: var(--mute);
  text-align: center;
  margin-top: 14px;
}
.success-msg {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 0;
}
.success-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--paper);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.success-msg h3 {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 10px;
}
.success-msg p {
  font-size: 15px;
  color: var(--char-2);
  max-width: 320px;
  line-height: 1.6;
}
.success-call { margin-top: 24px; font-size: 14px; }
.success-call a { color: var(--ink); font-weight: 600; }

/* ── SERVICE AREA ─────────────────────────────────────────── */

.area {
  background: var(--bone);
  padding: 110px 0;
  text-align: center;
}
.area__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--mute);
  margin: 28px 0 40px;
  letter-spacing: 0.02em;
}
.area__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto;
}
.area__tag {
  display: inline-block;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 10px 20px;
  font-size: 13px;
  color: var(--char-2);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
a.area__tag:hover {
  border-color: var(--gold);
  background: var(--ink);
  color: var(--paper);
}
.area__tag:not(a) { opacity: 0.75; }

/* ── FINAL CTA ────────────────────────────────────────────── */

.finalcta {
  background: var(--ink);
  color: var(--paper);
  padding: 130px var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.finalcta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184, 137, 62, 0.08), transparent 70%);
  pointer-events: none;
}
.finalcta__inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }
.finalcta__h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin: 18px 0 44px;
}
.finalcta__h em { font-style: italic; color: var(--gold); }
.finalcta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ───────────────────────────────────────────────── */

.footer {
  background: #08172a;
  color: rgba(246, 243, 238, 0.7);
  padding: 80px var(--gutter) 0;
}
.footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(246, 243, 238, 0.1);
}
.footer__wordmark {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--paper);
  margin-bottom: 12px;
}
.footer__wordmark span { color: var(--gold); font-style: italic; font-size: 16px; }
.footer__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: rgba(246, 243, 238, 0.6);
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__head {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.footer__col a, .footer__col p {
  font-size: 14px;
  color: rgba(246, 243, 238, 0.7);
  text-decoration: none;
  line-height: 1.6;
}
.footer__col a:hover { color: var(--paper); }
.footer__legal {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 0;
  font-size: 12px;
  color: rgba(246, 243, 238, 0.4);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ── WORK SHOWCASE ────────────────────────────────────────── */

.work {
  background: var(--paper);
  padding: 120px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.work__head { max-width: 720px; margin-bottom: 56px; }
.work__head .h2 { margin-top: 14px; }
.work__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.work__tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--linen);
}
.work__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.work__tile:hover img { transform: scale(1.04); }
.work__tile::after {
  content: attr(data-caption);
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-size: 11px;
  color: var(--paper);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  z-index: 2;
}
.work__tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,31,51,0.5) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.work__tile:hover::after,
.work__tile:hover::before { opacity: 1; }

.work__tile--lg { grid-column: span 3; grid-row: span 2; }
.work__tile--md { grid-column: span 2; grid-row: span 2; }
.work__tile--sm { grid-column: span 2; grid-row: span 1; }
.work__tile--wide { grid-column: span 3; grid-row: span 1; }

.work__caption {
  margin-top: 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--mute);
  text-align: center;
}

@media (max-width: 980px) {
  .work__grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 160px; }
  .work__tile--lg { grid-column: span 4; grid-row: span 2; }
  .work__tile--md { grid-column: span 2; grid-row: span 1; }
  .work__tile--sm { grid-column: span 2; grid-row: span 1; }
  .work__tile--wide { grid-column: span 4; }
}
@media (max-width: 640px) {
  .work__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .work__tile--lg, .work__tile--md, .work__tile--sm, .work__tile--wide { grid-column: span 2; grid-row: span 1; }
}

/* ── STICKY MOBILE CTA ────────────────────────────────────── */

.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--ink);
  border-top: 1px solid rgba(184, 137, 62, 0.32);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
}
.mobile-cta[role] {
  gap: 10px;
}
.mobile-cta a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 10px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease;
}
.mobile-cta a:active { transform: scale(0.98); }
.mobile-cta__call {
  background: var(--gold);
  color: var(--ink);
}
.mobile-cta__schedule {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(246, 243, 238, 0.32);
}
.mobile-cta__icon {
  font-size: 15px;
  line-height: 1;
}
/* Pad body so content isn't hidden behind the bar */
@media (max-width: 768px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 76px; }
  .finalcta { padding-bottom: 80px; }
}

/* ────────────────────────────────────────────────────────────
   INTERIOR PAGE COMPONENTS
   ──────────────────────────────────────────────────────────── */

.page-hero {
  background: linear-gradient(180deg, var(--ink), var(--ink-2));
  color: var(--paper);
  padding: 110px var(--gutter) 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184, 137, 62, 0.08), transparent 60%);
  pointer-events: none;
}
.page-hero__inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero__h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--paper);
  margin: 16px 0 22px;
}
.page-hero__h em { font-style: italic; color: var(--gold); }
.page-hero__sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(246, 243, 238, 0.75);
  max-width: 620px;
  margin: 0 auto;
  font-weight: 300;
}

.section {
  padding: 110px 0;
  background: var(--bone);
}
.section--paper { background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }

/* About page bio block */
.bio {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.bio__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 60%, var(--ink-3) 100%);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.bio__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}
.bio__photo::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(184, 137, 62, 0.55);
  pointer-events: none;
}
.bio__caption {
  text-align: center;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}
.bio__name {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
}
.bio__role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 4px;
}
.bio__copy .h2 { margin-bottom: 28px; margin-top: 14px; }
.bio__pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
}

/* Services page detail blocks */
.svc-block {
  padding: 64px 0;
  border-bottom: 1px solid var(--rule);
  max-width: 820px;
  margin: 0 auto;
}
.svc-block:last-child { border-bottom: none; }
.svc-block__title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.15;
}
.svc-block__body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--char-2);
  margin-bottom: 20px;
  max-width: 640px;
}
.svc-block__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
  max-width: 640px;
  margin-top: 18px;
}
.svc-block__list li {
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: 14px;
  color: var(--char-2);
}
.svc-block__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 1px;
  background: var(--gold);
}

/* Reviews page wall */
.reviews-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
}

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 32px 0;
}
.faq-item__q {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.3;
}
.faq-item__a {
  font-size: 16px;
  line-height: 1.75;
  color: var(--char-2);
}

/* ────────────────────────────────────────────────────────────
   SERVICE AREAS
   ──────────────────────────────────────────────────────────── */

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 40px;
  max-width: 960px;
  margin: 0 auto;
}
.areas-county__h {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.areas-county__count {
  font-size: 14px;
  color: var(--mute);
  margin-bottom: 20px;
  letter-spacing: .02em;
}
.areas-county__list {
  list-style: none;
  columns: 2;
  column-gap: 24px;
}
.areas-county__list li {
  padding: 6px 0;
  border-bottom: 1px solid var(--rule);
  break-inside: avoid;
}
.areas-county__list a {
  color: var(--char-2);
  text-decoration: none;
  font-size: 15px;
  transition: color .2s;
}
.areas-county__list a:hover {
  color: var(--gold);
}

/* ────────────────────────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────────────────────────── */

@media (max-width: 980px) {
  .hero__inner,
  .founder__inner,
  .magnet__inner,
  .schedule__inner,
  .footer__inner,
  .bio { grid-template-columns: 1fr; gap: 48px; }

  .pillars__grid,
  .services__grid,
  .testimonials__grid,
  .reviews-wall,
  .diff__pillars,
  .footer__cols { grid-template-columns: repeat(2, 1fr); }

  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 48px 24px; }
  .process__steps::before { display: none; }

  .nav__links { display: none; }
  .nav__inner { grid-template-columns: auto 1fr; }

  .svc-block__list { grid-template-columns: 1fr; }

  .areas-grid { grid-template-columns: 1fr; gap: 40px; }
  .areas-county__list { columns: 2; }
}

@media (max-width: 640px) {
  .hero { padding: 64px var(--gutter) 80px; }
  .pillars, .services, .process, .testimonials, .area, .section { padding: 72px 0; }
  .founder, .magnet, .schedule, .finalcta, .diff { padding: 80px var(--gutter); }

  .pillars__grid,
  .services__grid,
  .testimonials__grid,
  .reviews-wall,
  .diff__pillars,
  .footer__cols { grid-template-columns: 1fr; }

  .process__steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }

  .areas-county__list { columns: 1; }

  .schedule__form { padding: 32px 24px; }
  .pillar { padding: 36px 28px; }
  .service { padding: 36px 28px; }
}
