/*
Theme Name: Raven Black
Theme URI: https://www.ravenblackpaint.com
Author: Raven Black Painting
Author URI: https://www.ravenblackpaint.com
Description: Premium dark/gold theme for Raven Black Painting — a Dallas-Fort Worth residential painting contractor. Built for high-conversion local SEO with schema markup, service pages, gallery, and lead capture.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: raven-black
Tags: custom-background, custom-menu, featured-images, translation-ready
*/

/* ═══════════════════════════════════════════════════════════
   DESIGN TOKENS — Premium dark/gold palette
═══════════════════════════════════════════════════════════ */
:root {
  --black:      #0A0A0A;
  --charcoal:   #141414;
  --dark:       #1E1E1E;
  --mid:        #2E2E2E;
  --ash:        #4A4A4A;
  --gold:       #C9A454;
  --gold-lt:    #E2C27D;
  --gold-dk:    #9F7F36;
  --cream:      #F4EFE3;
  --warm-white: #FBF8F1;
  --paper:      #EFE9DA;
  --text-muted: #8A8A8A;
  --border-lt:  rgba(0,0,0,.08);
  --border-dk:  rgba(255,255,255,.08);

  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-ui:      "Barlow Condensed", "Arial Narrow", sans-serif;
  --ff-body:    "Barlow", -apple-system, sans-serif;
}

/* ═══════════════════════════════════════════════════════════
   RESET + BASE
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--warm-white);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════════════════════ */
.gold { color: var(--gold); }

.section-label {
  font-family: var(--ff-ui);
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.section-label.centered { justify-content: center; }
.section-label::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--ff-ui);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .9rem 2.2rem;
  transition: background .2s, color .2s;
  background: transparent;
  cursor: pointer;
}
.btn-ghost:hover { background: var(--gold); color: var(--black); }

.btn-dark {
  display: inline-block;
  background: var(--black);
  color: var(--cream);
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  transition: background .2s;
  border: none;
  cursor: pointer;
}
.btn-dark:hover { background: var(--charcoal); }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 4rem;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,164,84,.15);
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: .04em;
}
.nav-logo span { color: var(--gold); }

/* ── IMAGE LOGO (SVG in nav) ── */
.nav-logo-img {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img img {
  height: 70px;
  width: auto;
  display: block;
  transition: opacity .2s;
}
.nav-logo-img:hover img {
  opacity: .85;
}

/* ── HAMBURGER TOGGLE (mobile/tablet) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(201,164,84,.35);
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  transition: border-color .2s;
}
.nav-toggle:hover { border-color: var(--gold); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  transition: transform .25s ease, opacity .2s ease;
}
nav.site-nav.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
nav.site-nav.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
nav.site-nav.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--ff-ui);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #aaa;
  transition: color .2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-phone {
  font-family: var(--ff-ui);
  font-size: .9rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: .05em;
  white-space: nowrap;
}
.nav-phone a { color: var(--gold-lt); white-space: nowrap; }

/* ═══════════════════════════════════════════════════════════
   PAGE HEADER (for non-home pages)
═══════════════════════════════════════════════════════════ */
.page-header {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  padding: 8rem 4rem 4rem;
  overflow: hidden;
  text-align: center;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
}
.page-header-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.4), rgba(10,10,10,.9));
}
.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.page-header h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.page-header h1 em {
  font-style: italic;
  color: var(--gold-lt);
}
.page-header p {
  font-size: 1.05rem;
  color: rgba(244,239,227,.75);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}
.breadcrumbs {
  font-family: var(--ff-ui);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(244,239,227,.5);
  margin-bottom: 1.75rem;
}
.breadcrumbs a { color: var(--gold); transition: color .2s; }
.breadcrumbs a:hover { color: var(--gold-lt); }
.breadcrumbs span { margin: 0 .6rem; color: rgba(244,239,227,.3); }

/* ═══════════════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════════════ */
section { padding: 6rem 4rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 3.5rem; }
.section-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
}
.section-header p {
  margin-top: .75rem;
  font-size: 1rem;
  color: #555;
  max-width: 580px;
  line-height: 1.75;
}
.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-header.centered p { margin-left: auto; margin-right: auto; }
.section-dark { background: var(--charcoal); color: var(--cream); }
.section-dark .section-header h2 { color: var(--cream); }
.section-dark .section-header p { color: rgba(244,239,227,.6); }
.section-cream { background: var(--cream); }

/* ═══════════════════════════════════════════════════════════
   HERO (homepage)
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,.88) 45%, rgba(10,10,10,.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 4rem 4rem;
  max-width: 780px;
}
.hero-eyebrow {
  font-family: var(--ff-ui);
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--gold-lt); }
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(244,239,227,.7);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-tel {
  font-family: var(--ff-ui);
  font-size: 1rem;
  color: rgba(244,239,227,.6);
  letter-spacing: .05em;
}
.hero-tel a { color: var(--gold-lt); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(201,164,84,.2);
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1.1rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,.07);
  flex: 1;
  min-width: 200px;
  justify-content: center;
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1.4rem; line-height: 1; }
.trust-text strong {
  display: block;
  font-family: var(--ff-ui);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--cream);
  text-transform: uppercase;
}
.trust-text span {
  font-size: .72rem;
  color: var(--text-muted);
  letter-spacing: .03em;
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — Services Grid
═══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}
.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}
.service-card:hover .service-card-bg { transform: scale(1.06); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.92) 40%, rgba(10,10,10,.2) 100%);
}
.service-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
}
.service-num {
  font-family: var(--ff-ui);
  font-size: .68rem;
  letter-spacing: .25em;
  color: var(--gold);
  margin-bottom: .5rem;
}
.service-card h2 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: .75rem;
}
.service-card p {
  font-size: .85rem;
  color: rgba(244,239,227,.7);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.service-card:hover p { max-height: 8rem; }
.service-link {
  font-family: var(--ff-ui);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: gap .2s;
}
.service-card:hover .service-link { gap: .8rem; }

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — Why Us
═══════════════════════════════════════════════════════════ */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-img-wrap { position: relative; }
.why-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--mid);
  overflow: hidden;
}
.why-img-main img { width: 100%; height: 100%; object-fit: cover; }
.why-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 1;
  background: var(--charcoal);
  border: 4px solid var(--cream);
  overflow: hidden;
}
.why-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.why-stat {
  position: absolute;
  top: 2rem;
  right: -2rem;
  background: var(--gold);
  color: var(--black);
  padding: 1.2rem 1.5rem;
  text-align: center;
}
.why-stat-num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.why-stat-label {
  font-family: var(--ff-ui);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: .2rem;
}
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.why-feature {
  padding: 1.5rem;
  background: rgba(0,0,0,.04);
  border-left: 3px solid var(--gold);
}
.why-feature h3 {
  font-family: var(--ff-ui);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .4rem;
  color: var(--black);
}
.why-feature p {
  font-size: .82rem;
  color: #666;
  line-height: 1.55;
}
.why-text-block h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: .75rem;
}
.why-text-block > p {
  font-size: .95rem;
  color: #555;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — Process
═══════════════════════════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3.5rem;
}
.process-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,.07);
}
.process-step:last-child { border-right: none; }
.process-step-num {
  font-family: var(--ff-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(201,164,84,.15);
  line-height: 1;
  margin-bottom: .5rem;
}
.process-step h3 {
  font-family: var(--ff-ui);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.process-step p {
  font-size: .85rem;
  color: rgba(244,239,227,.55);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — Service Areas
═══════════════════════════════════════════════════════════ */
.areas-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.areas-layout h2 {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.areas-layout > div > p {
  font-size: .95rem;
  color: rgba(244,239,227,.6);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.area-pill {
  display: block;
  padding: .7rem 1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  font-family: var(--ff-ui);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(244,239,227,.7);
  text-align: center;
  transition: all .2s;
  text-decoration: none;
}
a.area-pill:hover {
  background: rgba(201,164,84,.12);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   SERVICE PAGE — Intro Split
═══════════════════════════════════════════════════════════ */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-split img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.intro-split h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.intro-split h2 em { color: var(--gold-dk); font-style: italic; }
.intro-split p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.intro-split ul { list-style: none; margin: 1.5rem 0; }
.intro-split li {
  padding: .6rem 0 .6rem 1.8rem;
  position: relative;
  font-size: .95rem;
  color: #333;
}
.intro-split li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: .6rem;
  color: var(--gold);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   SERVICE PAGE — Service Detail Cards
═══════════════════════════════════════════════════════════ */
.services-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.service-detail-card {
  background: #fff;
  border: 1px solid var(--border-lt);
  padding: 2.5rem 2rem;
  transition: transform .2s, box-shadow .2s;
}
.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
}
.service-detail-icon {
  width: 3rem;
  height: 3rem;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.service-detail-card h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .75rem;
}
.service-detail-card p {
  font-size: .9rem;
  color: #555;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   SERVICE PAGE — Stats
═══════════════════════════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-label {
  font-family: var(--ff-ui);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(244,239,227,.7);
}

/* ═══════════════════════════════════════════════════════════
   INTERIOR PAGE — 5-Column Process
═══════════════════════════════════════════════════════════ */
.process-5-col {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 3rem;
}
.process-step-cream {
  background: var(--cream);
  padding: 2rem;
}
.process-step-cream .num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .75rem;
}
.process-step-cream h3 {
  font-family: var(--ff-ui);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.process-step-cream p {
  font-size: .82rem;
  color: #666;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   EXTERIOR PAGE — Weather Callout
═══════════════════════════════════════════════════════════ */
.weather-callout {
  background: var(--black);
  color: var(--cream);
  padding: 4rem 3rem;
  border-left: 6px solid var(--gold);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}
.weather-callout h3 {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}
.weather-callout p {
  font-size: 1rem;
  color: rgba(244,239,227,.75);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════
   CABINETS PAGE — ROI Grid & Process
═══════════════════════════════════════════════════════════ */
.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.roi-card {
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
}
.roi-replace {
  background: var(--mid);
  color: rgba(244,239,227,.6);
}
.roi-replace::after {
  content: '✗';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: rgba(244,239,227,.3);
}
.roi-refinish {
  background: var(--gold);
  color: var(--black);
}
.roi-refinish::after {
  content: '✓';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--black);
}
.roi-label {
  font-family: var(--ff-ui);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.roi-price {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: .75rem;
}
.roi-detail {
  font-size: .9rem;
  line-height: 1.75;
  max-width: 320px;
  margin: 0 auto;
}

.process-cabinet {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 3rem;
}
.process-cab-step {
  padding: 2rem 1.25rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.process-cab-step:last-child { border-right: none; }
.process-cab-step .num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem;
}
.process-cab-step h3 {
  font-family: var(--ff-ui);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: .5rem;
}
.process-cab-step p {
  font-size: .78rem;
  color: rgba(244,239,227,.55);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════ */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-img-wrap { position: relative; }
.story-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.story-img-wrap::before {
  content: '';
  position: absolute;
  inset: -1.5rem 1.5rem 1.5rem -1.5rem;
  border: 1px solid var(--gold);
  z-index: -1;
}
.story-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.story-text h2 em { color: var(--gold-dk); font-style: italic; }
.story-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.story-signature {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--black);
  margin-top: 2rem;
}
.story-signature span {
  display: block;
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3rem;
}
.value-card {
  padding: 3rem 2.5rem;
  background: var(--cream);
  transition: background .2s;
}
.value-card:hover { background: var(--paper); }
.value-num {
  font-family: var(--ff-display);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.value-card h3 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.value-card p {
  font-size: .9rem;
  color: #555;
  line-height: 1.75;
}

.mission-callout {
  background: var(--black);
  color: var(--cream);
  padding: 5rem 4rem;
  text-align: center;
}
.mission-callout blockquote {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-style: italic;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--cream);
}
.mission-callout blockquote em {
  color: var(--gold-lt);
  font-style: italic;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.promise-item {
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-lt);
  background: #fff;
}
.promise-check {
  width: 2rem;
  height: 2rem;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1rem;
}
.promise-item h3 {
  font-family: var(--ff-ui);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.promise-item p {
  font-size: .82rem;
  color: #666;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════════ */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-tab {
  padding: .75rem 1.75rem;
  background: transparent;
  border: 1px solid var(--border-lt);
  font-family: var(--ff-ui);
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #888;
  cursor: pointer;
  transition: all .2s;
}
.filter-tab:hover,
.filter-tab.active {
  background: var(--black);
  color: var(--gold);
  border-color: var(--black);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.95) 0%, rgba(10,10,10,0) 50%);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-category {
  font-family: var(--ff-ui);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
}
.gallery-title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: .25rem;
}
.gallery-location {
  font-size: .78rem;
  color: rgba(244,239,227,.7);
}

.featured-ba-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.ba-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.ba-row img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.ba-label-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 4px;
}
.ba-label {
  padding: .85rem;
  text-align: center;
  font-family: var(--ff-ui);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: var(--charcoal);
  color: var(--text-muted);
}
.ba-label.after { background: var(--gold); color: var(--black); }
.ba-card-title {
  margin-top: 1.5rem;
  text-align: center;
}
.ba-card-title h3 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: .3rem;
}
.ba-card-title p {
  font-size: .85rem;
  color: var(--text-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.contact-info h2 em { color: var(--gold-dk); font-style: italic; }
.contact-info > p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  transition: background .2s;
}
.contact-method:hover { background: var(--paper); }
.contact-method-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--black);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-method-label {
  font-family: var(--ff-ui);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
}
.contact-method-value {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
}
.contact-method-value a { color: var(--black); transition: color .2s; }
.contact-method-value a:hover { color: var(--gold-dk); }
.contact-method-sub {
  font-size: .82rem;
  color: #666;
  margin-top: .3rem;
}
.hours-block {
  padding: 1.5rem;
  background: var(--black);
  color: var(--cream);
}
.hours-block h3 {
  font-family: var(--ff-ui);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hours-list { list-style: none; font-size: .9rem; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: .4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hours-list li:last-child { border-bottom: none; }
.hours-day { color: rgba(244,239,227,.6); }
.hours-time { color: var(--cream); font-weight: 500; }

.form-wrap {
  background: var(--charcoal);
  padding: 3rem;
  position: relative;
}
.form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px;
  height: 4px;
  background: var(--gold);
}
.form-wrap h2 {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: .5rem;
}
.form-wrap > p {
  font-size: .9rem;
  color: rgba(244,239,227,.6);
  margin-bottom: 2rem;
}

/* Form styles — works with Contact Form 7, Fluent Forms, or custom */
.form-wrap form,
.form-wrap .wpcf7-form {
  display: grid;
  gap: 1.25rem;
}
.form-wrap label {
  font-family: var(--ff-ui);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: .5rem;
  display: block;
}
.form-wrap input[type="text"],
.form-wrap input[type="email"],
.form-wrap input[type="tel"],
.form-wrap select,
.form-wrap textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  padding: .9rem 1rem;
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--cream);
  transition: border-color .2s, background .2s;
  width: 100%;
}
.form-wrap input:focus,
.form-wrap select:focus,
.form-wrap textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,.06);
}
.form-wrap input::placeholder,
.form-wrap textarea::placeholder {
  color: rgba(244,239,227,.3);
}
.form-wrap select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C9A454' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-wrap select option { background: var(--charcoal); color: var(--cream); }
.form-wrap textarea {
  min-height: 130px;
  resize: vertical;
}
.form-wrap input[type="submit"],
.submit-btn {
  background: var(--gold);
  color: var(--black);
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 1.1rem 2rem;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-top: .5rem;
}
.form-wrap input[type="submit"]:hover,
.submit-btn:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; }
.form-note {
  font-size: .78rem;
  color: rgba(244,239,227,.5);
  margin-top: .5rem;
  line-height: 1.55;
}

/* ── Form submission states (Formspree AJAX) ── */
.rb-form-success {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(201, 164, 84, 0.08);
  border: 1px solid var(--gold);
  border-radius: 4px;
}
.rb-form-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
}
.rb-form-success h3 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: .75rem;
}
.rb-form-success p {
  font-size: .95rem;
  color: rgba(244,239,227,.75);
  line-height: 1.65;
  max-width: 420px;
  margin: 0 auto;
}
.rb-form-success a { color: var(--gold-lt); font-weight: 600; }

.rb-form-error {
  padding: 1rem 1.25rem;
  background: rgba(220, 80, 80, 0.1);
  border-left: 3px solid #dc5050;
  margin-bottom: 1.25rem;
}
.rb-form-error p {
  font-size: .9rem;
  color: rgba(244,239,227,.85);
  line-height: 1.55;
  margin: 0;
}
.rb-form-error a { color: var(--gold-lt); font-weight: 600; }

.submit-btn:disabled {
  opacity: .6;
  cursor: wait;
  transform: none !important;
}

.response-promise {
  background: var(--black);
  color: var(--cream);
  padding: 3.5rem 4rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: center;
  margin-top: 5rem;
}
.response-promise-icon {
  font-family: var(--ff-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.response-promise-text h3 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: .4rem;
}
.response-promise-text p {
  font-size: .95rem;
  color: rgba(244,239,227,.65);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   FAQ PAGE
═══════════════════════════════════════════════════════════ */
.faq-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}
.faq-nav {
  position: sticky;
  top: 6rem;
}
.faq-nav h3 {
  font-family: var(--ff-ui);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-lt);
}
.faq-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.faq-nav a {
  display: block;
  padding: .6rem 0 .6rem 1rem;
  font-family: var(--ff-body);
  font-size: .9rem;
  color: #555;
  transition: color .2s, padding .2s;
  border-left: 2px solid transparent;
}
.faq-nav a:hover,
.faq-nav a.active {
  color: var(--black);
  border-left-color: var(--gold);
}
.faq-category {
  margin-bottom: 4rem;
  scroll-margin-top: 5rem;
}
.faq-category:last-child { margin-bottom: 0; }
.faq-category-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gold);
}
.faq-category-header h2 {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: .3rem;
}
.faq-category-header p {
  font-size: .9rem;
  color: #666;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.faq-sidebar h2 {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.faq-sidebar p {
  font-size: .9rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--border-lt);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  font-family: var(--ff-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  gap: 1rem;
}
.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: .9rem;
  transition: transform .3s, background .2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--black);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 32rem; }
.faq-a p {
  font-size: .88rem;
  line-height: 1.75;
  color: #555;
  padding-bottom: 1.4rem;
}
.faq-a a { color: var(--gold-dk); text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   SERVICE AREAS PAGE
═══════════════════════════════════════════════════════════ */
.areas-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.areas-intro h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.areas-intro h2 em { color: var(--gold-dk); font-style: italic; }
.areas-intro p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.areas-intro img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.city-card {
  background: #fff;
  border: 1px solid var(--border-lt);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
  display: block;
}
.city-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
}
.city-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3rem;
  height: 3px;
  background: var(--gold);
}
.city-name {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: .3rem;
}
.city-state {
  font-family: var(--ff-ui);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.city-desc {
  font-size: .88rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.city-services {
  list-style: none;
  margin-bottom: 1.5rem;
}
.city-services li {
  font-size: .82rem;
  color: #666;
  padding: .3rem 0 .3rem 1.2rem;
  position: relative;
}
.city-services li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.city-link {
  font-family: var(--ff-ui);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-dk);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap .2s;
}
.city-card:hover .city-link { gap: .8rem; }

.all-areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.area-tile {
  padding: 1.5rem 1.25rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  transition: background .2s, transform .2s;
}
.area-tile:hover {
  background: var(--paper);
  transform: translateX(4px);
}
.area-tile strong {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  display: block;
  margin-bottom: .2rem;
}
.area-tile span {
  font-size: .75rem;
  color: var(--text-muted);
}

.county-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.county-card {
  background: var(--black);
  color: var(--cream);
  padding: 2.5rem;
}
.county-card h3 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-lt);
  margin-bottom: 1rem;
}
.county-card p {
  font-size: .88rem;
  color: rgba(244,239,227,.65);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.county-card ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.county-card li {
  font-family: var(--ff-ui);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(244,239,227,.7);
  padding: .3rem .75rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}

/* ═══════════════════════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border-lt);
  padding: 2rem;
  transition: box-shadow .25s, transform .25s;
}
.review-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  transform: translateY(-4px);
}
.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.review-text {
  font-size: .9rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: .9rem;
  color: var(--black);
  flex-shrink: 0;
}
.review-name {
  font-family: var(--ff-ui);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--black);
}
.review-location {
  font-size: .75rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════════ */
.cta-banner {
  background: var(--gold);
  padding: 5rem 4rem;
}
.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: .5rem;
}
.cta-text p {
  font-size: 1rem;
  color: rgba(10,10,10,.65);
}
.cta-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.cta-tel {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
}
.cta-tel a { color: var(--black); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
footer.site-footer {
  background: var(--black);
  color: rgba(244,239,227,.5);
  padding: 4rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand h3 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: .5rem;
}
.footer-logo {
  height: 95px;
  width: auto;
  display: block;
  margin-bottom: 1.5rem;
  opacity: .95;
  max-width: 360px;
}
.footer-brand p {
  font-size: .82rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  max-width: 300px;
}
.footer-nap {
  font-size: .82rem;
  line-height: 1.9;
  font-style: normal;
}
.footer-nap a { color: var(--gold-lt); }
.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.2rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: rgba(244,239,227,.7);
  transition: all .2s;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--ff-ui);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li {
  font-size: .82rem;
  margin-bottom: .5rem;
}
.footer-col a {
  color: rgba(244,239,227,.5);
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold-lt); }
.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */

/* ── Compress nav spacing at mid widths before switching to mobile ── */
@media (max-width: 1280px) {
  nav.site-nav { padding: .7rem 2rem; }
  .nav-links { gap: 1.4rem; }
  .nav-links a { font-size: .72rem; letter-spacing: .12em; }
  .nav-cta { gap: 1rem; }
  .nav-phone { font-size: .82rem; }
  .nav-cta .btn-primary { padding: .8rem 1.4rem; font-size: .75rem; letter-spacing: .12em; }
}

/* ── Mobile/tablet: hamburger replaces full nav, but phone + CTA stay visible ── */
@media (max-width: 1180px) {
  nav.site-nav {
    flex-wrap: wrap;
    padding: .7rem 1.25rem;
    gap: .75rem;
    row-gap: .5rem;
  }
  .nav-toggle { display: flex; order: 3; margin-left: 0; }
  .nav-logo-img img { height: 52px; }

  /* Phone + Free Estimate button stay visible next to hamburger */
  .nav-cta {
    order: 2;
    gap: .75rem;
    margin-left: auto;
  }
  .nav-phone { font-size: .82rem; }
  .nav-cta .btn-primary {
    padding: .75rem 1.1rem;
    font-size: .72rem;
    letter-spacing: .1em;
  }

  /* Only the nav links collapse into the hamburger panel */
  .nav-links {
    display: none;
    width: 100%;
    order: 4;
  }
  nav.site-nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 .5rem;
    border-top: 1px solid rgba(201,164,84,.18);
    margin-top: .25rem;
  }
  nav.site-nav.nav-open .nav-links li a {
    display: block;
    padding: .9rem 0;
    font-size: .88rem;
    letter-spacing: .16em;
    border-bottom: 1px solid rgba(255,255,255,.05);
  }
  nav.site-nav.nav-open .nav-links a.active::after { display: none; }
}

/* ── On narrow phones, drop phone + CTA to a second row so they still fit ── */
@media (max-width: 560px) {
  nav.site-nav { padding: .55rem 1rem; gap: .5rem; }
  .nav-logo-img { flex-shrink: 0; }
  .nav-logo-img img { height: 42px; }
  .nav-toggle { order: 2; }
  .nav-cta {
    order: 3;
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
    gap: .75rem;
    padding-top: .25rem;
    border-top: 1px solid rgba(201,164,84,.1);
  }
  .nav-phone { font-size: .9rem; }
  .nav-cta .btn-primary {
    padding: .65rem .95rem;
    font-size: .68rem;
    letter-spacing: .08em;
  }
  /* Nav-links panel, when open, sits below the stacked CTA row */
  nav.site-nav.nav-open .nav-links { padding-top: .5rem; margin-top: 0; }
}

@media (max-width: 1024px) {
  section { padding: 4rem 2rem; }
  .page-header { padding: 7rem 2rem 3rem; }
  .hero-content { padding: 7rem 2rem 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 16/9; }
  .service-card p { max-height: 8rem; }
  .why-layout { grid-template-columns: 1fr; gap: 2rem; }
  .why-img-wrap { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 3rem 2rem; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  footer.site-footer { padding: 3rem 2rem; }
  .trust-item { padding: .9rem 1.5rem; min-width: 160px; }
  .areas-layout { grid-template-columns: 1fr; gap: 2rem; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-detail { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .process-5-col { grid-template-columns: 1fr 1fr; }
  .weather-callout { grid-template-columns: 1fr; padding: 2.5rem 2rem; }
  .roi-grid { grid-template-columns: 1fr; }
  .process-cabinet { grid-template-columns: 1fr 1fr; }
  .process-cab-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .story-split { grid-template-columns: 1fr; gap: 3rem; }
  .story-img-wrap::before { inset: -1rem 1rem 1rem -1rem; }
  .values-grid { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: 1fr 1fr; }
  .mission-callout { padding: 3rem 2rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .featured-ba-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-wrap { padding: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .response-promise {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
  }
  .faq-container { grid-template-columns: 1fr; gap: 2rem; }
  .faq-nav { position: static; }
  .faq-nav ul { flex-direction: row; flex-wrap: wrap; gap: .5rem; }
  .faq-nav a {
    padding: .5rem 1rem;
    background: var(--cream);
    border-left: none;
    font-size: .78rem;
  }
  .faq-nav a:hover, .faq-nav a.active {
    background: var(--black);
    color: var(--gold);
  }
  .faq-layout { grid-template-columns: 1fr; gap: 2rem; }
  .cities-grid { grid-template-columns: 1fr; }
  .all-areas-grid { grid-template-columns: 1fr 1fr; }
  .county-grid { grid-template-columns: 1fr; }
  .areas-intro { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 640px) {
  nav.site-nav { padding: .6rem 1rem; }
  .nav-logo-img img { height: 44px; }
  section { padding: 3rem 1.1rem; }
  .page-header { padding: 6rem 1.1rem 2.5rem; min-height: auto; }
  .hero { min-height: 88vh; }
  .hero-content { padding: 6.5rem 1.1rem 2.5rem; }
  .hero-actions { gap: 1rem; }
  .hero-actions .btn-primary { width: 100%; text-align: center; }
  .hero-tel { font-size: .92rem; }
  .section-header { margin-bottom: 2.5rem; }
  .trust-item { padding: .8rem 1rem; min-width: 140px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .trust-item:last-child { border-bottom: none; }
  .service-card { aspect-ratio: auto; min-height: 380px; }
  .service-card-content { padding: 1.5rem; }
  .service-card h2 { font-size: 1.5rem; }
  .service-card p { max-height: 7rem; font-size: .82rem; line-height: 1.55; margin-bottom: .8rem; }
  .why-features { grid-template-columns: 1fr; gap: 1rem; }
  .why-feature { padding: 1.2rem; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { padding: 2rem 1.25rem; }
  .process-5-col { grid-template-columns: 1fr; }
  .process-cabinet { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .stat-num { font-size: 2.2rem; }
  .services-detail { gap: 1rem; }
  .service-detail-card { padding: 1.75rem 1.25rem; }
  .areas-grid { grid-template-columns: 1fr 1fr; gap: .5rem; }
  .area-pill { padding: .65rem .5rem; font-size: .7rem; letter-spacing: .05em; }
  .cta-banner { padding: 2.5rem 1.1rem; }
  .cta-inner { gap: 1.25rem; }
  .cta-actions { width: 100%; }
  .cta-actions .btn-dark { width: 100%; text-align: center; }
  .reviews-grid { gap: 1rem; }
  .review-card { padding: 1.5rem; }
  footer.site-footer { padding: 2.5rem 1.1rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-logo { height: 72px; margin-bottom: 1rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; margin-top: 2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .all-areas-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 1.5rem 1.25rem; }
  .mission-callout { padding: 2.5rem 1.25rem; }
  .weather-callout { padding: 2rem 1.25rem; gap: 1.5rem; }
  .roi-card { padding: 2rem 1.25rem; }
  .roi-price { font-size: 2.2rem; }
  .response-promise { padding: 2rem 1.25rem; }
  .areas-intro { gap: 2rem; }
}
