/* ─── CSS Custom Properties ─── */
:root {
  --navy:      #07004D;
  --blue:      #0071F9;
  --blue-dark: #005FD4;
  --copper:    #E08E45;
  --gray:      #6E6A6F;
  --light-blue:#CDDDDD;
  --offwhite:  #FEFCFD;
  --white:     #FFFFFF;
  --navy-80:   rgba(7,0,77,0.82);

  --font: 'Sora', sans-serif;
  --max-w: 1200px;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(7,0,77,0.10);
  --shadow-lg: 0 8px 32px rgba(7,0,77,0.14);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--offwhite);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Utility ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, transform 0.12s, box-shadow 0.18s;
  border: 2px solid transparent;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.18); }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-copper { background: var(--copper); color: var(--white); }
.btn-copper:hover { background: #C77530; }
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.7;
}

/* ─── HEADER ─── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow 0.2s;
}
header.scrolled { box-shadow: 0 2px 20px rgba(7,0,77,0.35); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img { display: block; height: 64px; width: auto; }
.footer-brand .logo-img { height: 64px; }
.logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.logo-text { line-height: 1.1; }
.logo-text .wordmark {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
  display: block;
}
.logo-text .sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: none;
  font-family: var(--font);
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-link svg { width: 12px; height: 12px; opacity: 0.6; transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }
.nav-link.active-page { color: var(--blue); }

/* Dropdown */
.dropdown{position:absolute;top:100%;padding-top:8px;left:0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s, transform 0.18s;
  border: 1px solid var(--light-blue);
}
.nav-item:hover .dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 11px 18px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 500;
  border-bottom: 1px solid var(--offwhite);
  transition: background 0.12s, color 0.12s;
}
.dropdown a:last-child { border-bottom: none; border-radius: 0 0 var(--radius) var(--radius); }
.dropdown a:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.dropdown a:hover { background: var(--offwhite); color: var(--blue); }

/* Header phone */
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.15s;
  flex-shrink: 0;
  white-space: nowrap;
}
.header-phone:hover { background: var(--blue-dark); }
.header-phone svg { width: 16px; height: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.mobile-nav.open { max-height: calc(100vh - 88px); overflow-y: auto; }
.mobile-nav-inner { padding: 16px 24px 24px; }
.mobile-nav a, .mobile-nav-section-title {
  display: block;
  padding: 10px 0;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav-section-title {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-top: 20px;
  border-bottom: none;
}
.mobile-nav .mobile-phone {
  margin-top: 20px;
  display: block;
  text-align: center;
  background: var(--blue);
  color: var(--white);
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 700;
}

/* ─── HERO (PREMIUM EDITORIAL) ─── */
.hero {
  position: relative;
  min-height: 760px;
  background: var(--navy);
  overflow: hidden;
  color: #fff;
}
/* Subtle radial light, top-right */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 85% 20%, rgba(0,113,249,0.16), transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(224,142,69,0.08), transparent 65%);
  pointer-events: none;
  z-index: 1;
}
/* Faint paper-grain texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' /></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.45'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
}
/* Huge LP monogram watermark, behind the type */
.hero-monogram {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 880px;
  height: 880px;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}
.hero-monogram img { width: 100%; height: 100%; object-fit: contain; }

/* Main hero content grid */
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 88px 0 96px;
}
.hero-left { position: relative; }

/* Simple eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--copper); flex-shrink: 0; }

/* Massive editorial headline */
.hero-h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(3rem, 7.5vw, 6.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.hero-h1 .light {
  display: block;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.02em;
}
.hero-h1 .copper { color: var(--copper); font-weight: 800; }
.hero-h1 .period-dot { color: var(--copper); }

/* Subhead — editorial line break */
.hero-lead {
  font-size: 1.18rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 32ch;
  margin-bottom: 48px;
  font-weight: 400;
}
.hero-lead em { font-style: normal; color: #fff; font-weight: 500; }

/* CTAs — premium treatment */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 56px;
}
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--copper);
  color: var(--navy);
  padding: 18px 26px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}
.hero-cta-primary:hover { transform: translateY(-2px); background: #f0a566; box-shadow: 0 8px 28px rgba(224,142,69,0.35); }
.hero-cta-primary svg { width: 16px; height: 16px; }
.hero-cta-primary .arrow { width: 18px; height: 18px; transition: transform 0.2s; }
.hero-cta-primary:hover .arrow { transform: translateX(3px); }

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, color 0.2s;
}
.hero-cta-secondary:hover { color: #fff; border-color: #fff; }
.hero-cta-secondary .arrow { width: 16px; height: 16px; transition: transform 0.2s; }
.hero-cta-secondary:hover .arrow { transform: translateX(3px); }

/* Phone moment — editorial typography */
.hero-phone {
  position: relative;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.10);
  max-width: 520px;
}
.hero-phone-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  margin-bottom: 10px;
}
.hero-phone-num {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.hero-phone-num:hover { color: var(--copper); }
.hero-phone-num .sep { color: var(--copper); margin: 0 6px; font-weight: 800; }
.hero-phone-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* Right side — editorial photo plate */
.hero-right { position: relative; z-index: 2; }
.hero-plate {
  position: relative;
  aspect-ratio: 4/5;
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-plate::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(0,113,249,0.04) 0px, rgba(0,113,249,0.04) 1px, transparent 1px, transparent 18px);
  pointer-events: none;
}
.hero-plate-watermark {
  width: 50%;
  height: 50%;
  opacity: 0.16;
  filter: brightness(1.6);
}
.hero-plate-caption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}
.hero-plate-tag {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 700;
}
/* Real photography */
.plate-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-plate.has-photo { background: var(--navy); }
.hero-plate.has-photo::before { display: none; }
.blog-card-img.has-photo::after {
  background: linear-gradient(to top, rgba(7,0,77,0.62), rgba(7,0,77,0) 45%);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; padding: 56px 0 72px; }
  .hero-right { max-width: 520px; }
  .hero-plate { aspect-ratio: 5/4; }
  .hero-monogram { width: 600px; height: 600px; right: -25%; opacity: 0.04; }
  .hero { min-height: auto; }
}
@media (max-width: 640px) {
  .hero-cta-primary, .hero-cta-secondary { width: 100%; justify-content: space-between; }
}

/* Shared editorial section eyebrow */
.section-eyebrow-v2 { display: inline-flex; align-items: center; gap: 12px; font-family: 'Sora',sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--copper); margin-bottom: 24px; }
.section-eyebrow-v2 .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--copper); }
.section-headline-v2 { font-family: 'Sora',sans-serif; font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 800; color: var(--navy); line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 0; }
.section-headline-v2 .light { display: block; font-weight: 300; color: rgba(7,0,77,0.7); }
.section-headline-v2 .copper { color: var(--copper); }
.section-sub-v2 { font-size: 1.1rem; line-height: 1.6; color: var(--gray); max-width: 42ch; margin: 0; }

/* ─── SERVICES (editorial) ─── */
.services { padding: 120px 0; background: var(--white); }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 72px; padding-bottom: 56px; border-bottom: 1px solid #ebe9f3; text-align: left; }
.services-header .section-sub-v2 { margin-bottom: 4px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid #ebe9f3; }
.service-card {
  padding: 44px 36px 40px;
  border-right: 1px solid #ebe9f3;
  border-bottom: 1px solid #ebe9f3;
  display: flex;
  flex-direction: column;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  transition: background 0.25s;
}
.service-card::before { display: none; }
.service-card:nth-child(3n) { border-right: none; }
.service-card:hover { background: #faf9f5; transform: none; box-shadow: none; border-color: #ebe9f3; }
.service-card-num { display: none; }
.hero-plate-caption, .hero-plate-tag { display: none; }
/* Most Requested badge */
.service-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: 'Sora',sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  padding: 6px 10px;
  border: 1px solid rgba(224,142,69,0.45);
  border-radius: 999px;
  background: rgba(224,142,69,0.06);
  line-height: 1;
  pointer-events: none;
}
.service-card { position: relative; }
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  margin-bottom: 24px;
  flex-shrink: 0;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { font-family: 'Sora',sans-serif; font-size: 1.45rem; font-weight: 700; color: var(--navy); line-height: 1.18; letter-spacing: -0.015em; margin-bottom: 14px; }
.service-card p { font-size: 0.95rem; color: var(--gray); line-height: 1.65; margin-bottom: 32px; flex: 1; }
.service-link { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--navy); display: inline-flex; align-items: center; gap: 10px; padding-bottom: 6px; border-bottom: 1.5px solid var(--navy); align-self: flex-start; transition: gap 0.2s, color 0.2s, border-color 0.2s; }
.service-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.service-card:hover .service-link { color: var(--copper); border-color: var(--copper); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* Additional services compact list */
.additional-services {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid #ebe9f3;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.additional-services-label {
  font-family: 'Sora',sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  display: block;
  margin-bottom: 14px;
}
.additional-services-head p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray);
  max-width: 32ch;
  margin: 0;
}
.additional-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}
.additional-services-list li {
  font-family: 'Sora',sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--navy);
  padding: 12px 0;
  border-bottom: 1px solid #ebe9f3;
  display: flex;
  align-items: center;
  gap: 12px;
}
.additional-services-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .additional-services { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .additional-services-list { grid-template-columns: 1fr; gap: 0; }
}

/* ─── WHY CHOOSE (editorial) ─── */
.why { padding: 120px 0; background: var(--offwhite); position: relative; overflow: hidden; }
.why-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 72px; padding-bottom: 56px; border-bottom: 1px solid #ebe9f3; }
.why-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-text {}
.why-features { display: flex; flex-direction: column; margin: 0; gap: 0; border-top: 1px solid #d9d6cf; }
.why-feature {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid #d9d6cf;
  align-items: start;
}
.why-feature-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  flex-shrink: 0;
  margin-top: 2px;
}
.why-feature-icon svg { width: 26px; height: 26px; }
.why-feature-body h4 {
  font-family: 'Sora',sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.why-feature-body p {
  font-size: 0.97rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 50ch;
  margin: 0;
}

/* Editorial stats panel */
.why-stats { position: sticky; top: 120px; }
.why-stats-card { background: var(--navy); color: #fff; border-radius: 6px; padding: 48px 40px; position: relative; overflow: hidden; }
.why-stats-card::before { content:''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 100% 0%, rgba(224,142,69,0.16), transparent 60%); pointer-events: none; }
.why-stats-label {
  font-family: 'Sora',sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 700;
  margin-bottom: 32px;
  position: relative;
}
.why-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; position: relative; }
.why-stat-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.why-stat-item:nth-child(2n) { padding-left: 20px; border-left: 1px solid rgba(255,255,255,0.12); }
.why-stat-item:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }
.why-stat-num {
  font-family: 'Sora',sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -0.03em;
  display: block;
}
.why-stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
  font-weight: 500;
}
.why-stats-foot {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  position: relative;
}
.why-stats-foot em { color: var(--copper); font-style: normal; font-weight: 600; }

/* ─── SERVICE AREAS (editorial) ─── */
.areas { padding: 120px 0; background: var(--white); }
.areas-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 72px; padding-bottom: 56px; border-bottom: 1px solid #ebe9f3; }
.areas-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.areas-list { display: flex; flex-direction: column; border-top: 1px solid #ebe9f3; }
.area-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid #ebe9f3;
  align-items: center;
  background: transparent;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  transition: padding 0.25s;
}
.area-row:hover { padding-left: 12px; }
.area-row:hover .area-row-name { color: var(--copper); }
.area-row:hover .area-row-arrow { transform: translateX(6px); color: var(--copper); }
.area-row-num {
  font-family: 'Sora',sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--copper);
}
.area-row-body {}
.area-row-name {
  font-family: 'Sora',sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
  transition: color 0.2s;
}
.area-row-meta {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 6px;
}
.area-row-arrow {
  width: 24px;
  height: 24px;
  color: var(--gray);
  transition: transform 0.2s, color 0.2s;
}
/* Stylized Cobb County map */
.areas-map {
  position: sticky;
  top: 120px;
  background: var(--navy);
  border-radius: 6px;
  padding: 48px 40px;
  aspect-ratio: 1;
  max-height: 560px;
  overflow: hidden;
}

/* Interactive map cities */
.map-city { cursor: pointer; transition: opacity 0.2s; }
.map-city .map-dot,
.map-city .map-ring,
.map-city .map-ring-outer,
.map-city .map-label { transition: transform 0.3s ease, fill 0.2s, stroke 0.2s, opacity 0.2s; transform-box: fill-box; transform-origin: center; }
.map-city .map-pulse {
  fill: rgba(224,142,69,0.45);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  pointer-events: none;
}
.map-city.is-active .map-pulse { animation: mapPulse 1.6s ease-out infinite; }
.map-city.is-active .map-pulse.map-pulse-2 { animation-delay: 0.8s; }
@keyframes mapPulse {
  0%   { transform: scale(1); opacity: 0.55; }
  80%  { transform: scale(3.4); opacity: 0; }
  100% { transform: scale(3.4); opacity: 0; }
}
.map-city.is-active .map-dot {
  fill: #FFD09B;
  transform: scale(1.18);
}
.map-city.is-active .map-ring {
  stroke: rgba(255,208,155,0.85);
  stroke-width: 8;
  transform: scale(1.08);
}
.map-city.is-active .map-ring-outer { stroke: rgba(224,142,69,0.4); }
.map-city.is-active .map-label { fill: #fff; }
.map-city:focus-visible { outline: none; }
.map-city:focus-visible .map-dot { fill: #FFD09B; }
.map-city:focus-visible .map-ring { stroke: rgba(255,208,155,0.85); }

/* Sibling-active dimming on area-row when map city is hovered */
.areas-list.has-active .area-row:not(.is-active) { opacity: 0.45; }
.area-row.is-active .area-row-name { color: var(--copper); }
.area-row.is-active .area-row-arrow { transform: translateX(6px); color: var(--copper); }
.area-row.is-active { padding-left: 12px; }

@media (prefers-reduced-motion: reduce) {
  .map-city.is-active .map-pulse { animation: none; }
}
.areas-map::before {
  content:'';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.04) 1.2px, transparent 1.2px);
  background-size: 20px 20px;
  pointer-events: none;
}
.areas-map::after {
  content:'';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(224,142,69,0.10), transparent 70%);
  pointer-events: none;
}
.areas-map-svg { position: absolute; inset: 40px; z-index: 1; }
.areas-map-svg svg { width: 100%; height: 100%; }
.areas-map-label {
  position: absolute;
  top: 24px; left: 24px;
  font-family: 'Sora',sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 700;
  z-index: 2;
}
.areas-map-foot {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  z-index: 2;
}
.areas-map-foot strong { color: #fff; font-weight: 700; }

/* ─── TESTIMONIALS (editorial pull-quote) ─── */
.testimonials { padding: 120px 0; background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.testimonials::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 60% 70% at 90% 10%, rgba(224,142,69,0.10), transparent 60%), radial-gradient(ellipse 50% 60% at 0% 100%, rgba(0,113,249,0.08), transparent 60%); pointer-events: none; }
.testimonials .container { position: relative; z-index: 1; }
.testimonials .section-eyebrow-v2 { margin-bottom: 36px; }
.pull-quote { max-width: 1080px; margin: 0 auto; }
.pull-quote-mark {
  font-family: 'Sora',sans-serif;
  font-size: 7rem;
  line-height: 0.6;
  color: var(--copper);
  font-weight: 300;
  margin-bottom: 24px;
  letter-spacing: -0.08em;
}
.pull-quote-text {
  font-family: 'Sora',sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 300;
  line-height: 1.4;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 48px;
}
.pull-quote-text em { color: var(--copper); font-style: normal; }
.pull-quote-text strong { color: #fff; font-weight: 600; }
.pull-quote-attr {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.pull-quote-stars { display: flex; gap: 3px; color: var(--copper); flex-shrink: 0; }
.pull-quote-stars svg { width: 16px; height: 16px; }
.pull-quote-meta { flex: 1; min-width: 200px; }
.pull-quote-name { font-weight: 700; color: #fff; font-size: 0.95rem; letter-spacing: 0.01em; }
.pull-quote-loc { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 4px; }
.pull-quote-google {
  margin-left: auto;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}

/* Secondary testimonials row */
.testimonials-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 96px;
  padding-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.10);
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-mini { position: relative; }
.testimonial-mini-stars { display: flex; gap: 3px; color: var(--copper); margin-bottom: 14px; }
.testimonial-mini-stars svg { width: 14px; height: 14px; }
.testimonial-mini-quote { font-size: 1.05rem; font-weight: 400; line-height: 1.55; color: rgba(255,255,255,0.82); margin-bottom: 18px; }
.testimonial-mini-attr { font-size: 0.83rem; color: rgba(255,255,255,0.5); font-weight: 500; }
.testimonial-mini-attr strong { color: #fff; font-weight: 700; }

/* Read all reviews link */
.testimonials-foot { display: flex; justify-content: center; margin-top: 64px; }
.testimonials-foot a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}
.testimonials-foot a:hover { color: #fff; border-color: var(--copper); gap: 16px; }
.testimonials-foot svg { width: 14px; height: 14px; }

/* ─── BLOG (editorial) ─── */
.blog { padding: 120px 0; background: var(--offwhite); }
.blog-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 72px; padding-bottom: 56px; border-bottom: 1px solid #d9d6cf; flex-wrap: nowrap; }
.blog-header-right { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.blog-link {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--navy);
  transition: gap 0.2s, color 0.2s, border-color 0.2s;
}
.blog-link svg { width: 14px; height: 14px; }
.blog-link:hover { color: var(--copper); border-color: var(--copper); gap: 16px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.blog-card {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  transition: none;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: none; box-shadow: none; }
.blog-card:hover .blog-card-img { background-color: #1a1556; }
.blog-card:hover .blog-card-img-mark { opacity: 0.5; }
.blog-card:hover .read-more { color: var(--copper); border-color: var(--copper); gap: 14px; }
.blog-card-img {
  height: 280px;
  background: var(--navy);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
  padding: 0;
  font-size: 0;
  transition: background 0.3s;
}
.blog-card-img::after {
  content:'';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(0,113,249,0.04) 0px, rgba(0,113,249,0.04) 1px, transparent 1px, transparent 22px);
  pointer-events: none;
}
.blog-card-img-mark {
  width: 80px;
  height: 80px;
  opacity: 0.18;
  transition: opacity 0.3s;
  filter: brightness(1.6);
}
.blog-card-img-num { display: none; }
.blog-card-img-date {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  z-index: 1;
}
.blog-card-body { padding: 0; }
.blog-tag {
  display: inline-block;
  background: transparent;
  color: var(--copper);
  font-family: 'Sora',sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0 0 4px;
  border-radius: 0;
  margin-bottom: 16px;
}
.blog-card h3 {
  font-family: 'Sora',sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.blog-card p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.6;
}
.read-more {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1.5px solid var(--navy);
  align-self: flex-start;
  transition: gap 0.2s, color 0.2s, border-color 0.2s;
}
.read-more svg { width: 13px; height: 13px; }

/* ─── FINAL CTA (editorial split) ─── */
.final-cta {
  background: var(--navy);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.final-cta::before {
  content:'';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 100% 50%, rgba(0,113,249,0.16), transparent 55%),
    radial-gradient(ellipse 40% 50% at 0% 0%, rgba(224,142,69,0.08), transparent 60%);
  pointer-events: none;
}
.final-cta::after {
  content:'';
  position: absolute;
  top: 60%;
  right: -10%;
  width: 600px;
  height: 600px;
  background-image: url('logos/icon-reverse.svg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.05;
  pointer-events: none;
  transform: translateY(-50%);
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  text-align: left;
}
.final-cta .section-eyebrow-v2 { color: var(--copper); margin-bottom: 28px; }
.final-cta h2 {
  font-family: 'Sora',sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.final-cta h2 .light { display: block; font-weight: 300; color: rgba(255,255,255,0.78); }
.final-cta h2 .copper { color: var(--copper); }
.final-cta-body p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 40ch;
  margin: 0 0 36px;
}
.final-cta-trust { display: flex; flex-wrap: wrap; gap: 8px 24px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.10); }
.final-cta-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.65); font-weight: 500; }
.final-cta-trust-item svg { width: 14px; height: 14px; color: var(--copper); }

.final-cta-right {
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 44px 40px;
  backdrop-filter: blur(6px);
}
.final-cta-right-label {
  font-family: 'Sora',sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 700;
  margin-bottom: 16px;
}
.final-cta-phone {
  display: block;
  font-family: 'Sora',sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 14px;
  transition: color 0.2s;
}
.final-cta-phone:hover { color: var(--copper); }
.final-cta-phone .sep { color: var(--copper); margin: 0 6px; font-weight: 800; }
.final-cta-phone-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.final-cta-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--copper);
  color: var(--navy);
  padding: 18px 24px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.18s, background 0.18s, box-shadow 0.18s;
}
.final-cta-btn:hover { background: #f0a566; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(224,142,69,0.32); }
.final-cta-btn .arrow { width: 18px; height: 18px; transition: transform 0.2s; }
.final-cta-btn:hover .arrow { transform: translateX(4px); }
.cta-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}
.cta-info-item svg { color: var(--copper); }

/* ─── FOOTER ─── */
footer {
  background: #02001A;
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.5);
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: color 0.15s;
}
.footer-contact a:hover { color: var(--white); }
.footer-contact a svg { color: var(--blue); flex-shrink: 0; }
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.87rem;
  margin-bottom: 8px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-nap { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* ─── MOBILE STICKY BAR ─── */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 10px 16px;
  gap: 10px;
}
.mobile-sticky a {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.sticky-call { background: var(--blue); color: var(--white); }
.sticky-quote { background: var(--copper); color: var(--white); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(3n) { border-right: 1px solid #ebe9f3; }
  .service-card:nth-child(2n) { border-right: none; }
  .services-header, .why-header, .areas-header, .blog-header { grid-template-columns: 1fr; gap: 28px; }
  .final-cta-inner { grid-template-columns: 1fr; gap: 56px; }
  .why-layout { grid-template-columns: 1fr; gap: 56px; }
  .why-stats { position: static; }
  .areas-layout { grid-template-columns: 1fr; gap: 56px; }
  .areas-map { position: relative; max-height: 480px; top: auto; }
  .testimonials-secondary { grid-template-columns: 1fr; gap: 40px; }
  .blog-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .header-phone .phone-text { display: none; }
  .header-phone { padding: 10px 12px; }
  /* Hero adjustments */
  .hero-h1 br { display: none; }
  .hero-monogram { display: none; }
  /* Section padding reduction */
  .services, .why, .areas, .testimonials, .blog, .final-cta { padding: 80px 0; }
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; padding: 28px 0; border-bottom: 1px solid #ebe9f3; }
  .pull-quote-mark { font-size: 4.5rem; }
  .blog-grid { grid-template-columns: 1fr; gap: 56px; }
  .blog-card-img { height: 220px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .mobile-sticky { display: flex; }
  footer { padding-bottom: 80px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  /* Hero */
  .hero-grid { padding: 40px 0 56px; gap: 40px; grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-h1 { font-size: clamp(2.4rem, 9vw, 3.4rem); }
  .hero-lead { font-size: 1.05rem; max-width: 100%; }
  .hero-phone-num { font-size: 2rem; }
  .hero-plate { aspect-ratio: 4/3; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .hero-cta-primary, .hero-cta-secondary { width: 100%; justify-content: space-between; }
  /* Section typography */
  .section-headline-v2 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .section-sub-v2 { font-size: 1rem; max-width: 100%; }
  /* Why */
  .why-feature { grid-template-columns: 44px 1fr; gap: 20px; padding: 24px 0; }
  .why-feature-icon { width: 44px; height: 44px; }
  .why-feature-icon svg { width: 22px; height: 22px; }
  .why-feature-body h4 { font-size: 1.15rem; }
  .why-feature-body p { font-size: 0.9rem; }
  .why-stats-card { padding: 32px 28px; }
  .why-stat-num { font-size: 1.9rem; }
  .why-stat-item:nth-child(2n) { padding-left: 14px; }
  /* Areas */
  .area-row { padding: 22px 0; }
  .area-row-name { font-size: 1.3rem; }
  .area-row-meta { font-size: 0.8rem; }
  .area-row-arrow { width: 20px; height: 20px; }
  .areas-map { padding: 32px 24px; aspect-ratio: auto; min-height: 360px; max-height: 460px; }
  .areas-map-svg { inset: 24px; top: 56px; bottom: 64px; }
  /* Testimonials */
  .pull-quote-text { font-size: 1.2rem; line-height: 1.45; }
  .pull-quote-attr { gap: 16px; padding-top: 24px; }
  .pull-quote-google { width: 100%; margin-left: 0; }
  /* Final CTA */
  .final-cta::after { display: none; }
  .final-cta-right { padding: 32px 24px; }
  .final-cta-phone { font-size: 2rem; }
  .final-cta-btn { font-size: 0.88rem; padding: 16px 18px; }
  .final-cta-trust { gap: 8px 16px; }
  .final-cta-trust-item { font-size: 0.8rem; }
}
@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .blog-card-img { height: 180px; }
  .pull-quote-mark { font-size: 3.5rem; }
  .why-stats-grid { grid-template-columns: 1fr; }
  .why-stat-item:nth-child(2n) { padding-left: 0; border-left: none; }
  .why-stat-item { border-bottom: 1px solid rgba(255,255,255,0.12); padding: 20px 0; }
  .why-stat-item:last-child { border-bottom: none; padding-bottom: 0; }
  .areas-map { padding: 24px 18px; min-height: 320px; max-height: 380px; }
}
