/* ============================================================
   Palm Beach County AC Repair — Shared Stylesheet
   Used by index.html, all city pages, service pages, and blog posts.
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Anchors */
  --navy-900: #061634;
  --navy-800: #0a1f44;
  --navy-700: #102a5c;

  /* Coastal accents */
  --teal-700: #0f7a78;
  --teal-500: #18a09b;
  --teal-100: #d6f1ef;

  --sunset-600: #e36a1f;
  --sunset-500: #f08137;
  --sunset-400: #f5a154;
  --sunset-100: #ffe9d4;

  /* Warm neutrals */
  --cream-50:  #fbf7f0;
  --cream-100: #f5ede0;
  --cream-200: #ece0cb;
  --sand-300:  #d8c9ad;

  --ink-900: #14202d;
  --ink-700: #34465e;
  --ink-500: #5d6e85;
  --ink-300: #a3b0c2;

  --white: #ffffff;

  --shadow-sm: 0 2px 8px rgba(20, 32, 45, 0.06);
  --shadow-md: 0 14px 32px rgba(20, 32, 45, 0.10);
  --shadow-lg: 0 28px 60px rgba(20, 32, 45, 0.18);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1180px;
  --ease: cubic-bezier(.2,.7,.2,1);

  /* Verified Unsplash photos */
  --img-hero: url('https://images.unsplash.com/photo-1759352642352-ff56bc4cbe15?w=1920&q=80&auto=format&fit=crop');
  --img-palm-street: url('https://images.unsplash.com/photo-1688260037820-bb0619c2dff1?w=1920&q=80&auto=format&fit=crop');
  --img-fl-home: url('https://images.unsplash.com/photo-1561831710-3a8abd9657cf?w=1600&q=80&auto=format&fit=crop');
  --img-coast: url('https://images.unsplash.com/photo-1648730500076-04ec563c362b?w=1920&q=80&auto=format&fit=crop');
  --img-sunset: url('https://images.unsplash.com/photo-1757010230553-d801442437ae?w=1920&q=80&auto=format&fit=crop');
  --img-palms: url('https://images.unsplash.com/photo-1624799878978-eac66bb3dd35?w=1920&q=80&auto=format&fit=crop');
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 84px;
}
@media (min-width: 900px) { body { padding-bottom: 0; } }

.grain { position: relative; }
.grain::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image:
    radial-gradient(rgba(0,0,0,0.6) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,0.4) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
  mix-blend-mode: multiply;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.serif {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-optical-sizing: auto;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 96, "SOFT" 50;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  min-height: 56px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 17px;
  text-align: center;
  transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  width: auto;
  font-family: inherit;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--sunset-500);
  color: #fff;
  box-shadow: 0 10px 24px rgba(240, 129, 55, 0.35);
}
.btn-primary:hover { background: var(--sunset-600); box-shadow: 0 14px 32px rgba(227,106,31,.45); }
.btn-secondary {
  background: #fff;
  color: var(--navy-800);
  border-color: rgba(10,31,68,0.14);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: var(--teal-500); color: var(--teal-700); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.38);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- Top Bar ---------- */
.topbar { background: var(--navy-900); color: #fff; font-size: 14px; }
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; gap: 16px; flex-wrap: wrap;
}
.topbar .tag { display: inline-flex; align-items: center; gap: 8px; color: #f1e8d7; }
.pulse-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #25d27a;
  box-shadow: 0 0 0 0 rgba(37,210,122,.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,210,122,.65); }
  70%  { box-shadow: 0 0 0 10px rgba(37,210,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,210,122,0); }
}
.topbar-cta a { color: #fff; font-weight: 700; margin-left: 10px; }
.topbar-cta a:hover { color: var(--sunset-400); }
@media (max-width: 600px) { .topbar { display: none; } }

/* ---------- Header / Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 30;
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--cream-200);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; gap: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--navy-800); }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-800), var(--teal-500));
  display: grid; place-items: center; color: #fff;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.brand-mark::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  background: radial-gradient(circle, rgba(255,210,128,0.8), transparent 70%);
  top: 4px; right: 4px; border-radius: 50%;
}
.brand-text {
  font-weight: 800; font-size: 17px; line-height: 1.1;
  font-family: 'Fraunces', Georgia, serif; letter-spacing: -0.01em;
}
.brand-text small {
  display: block; font-weight: 600; color: var(--ink-500);
  font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase;
  font-family: 'Inter', sans-serif; margin-top: 3px;
}

/* Primary nav links (desktop) */
.nav-links {
  display: none;
  align-items: center;
  gap: 22px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-800);
}
.nav-links a {
  position: relative;
  padding: 6px 2px;
  transition: color .15s var(--ease);
}
.nav-links a:hover { color: var(--teal-700); }
.nav-links .has-menu {
  position: relative;
}
.nav-links .menu {
  position: absolute;
  top: 100%;
  left: -10px;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .15s var(--ease), transform .15s var(--ease), visibility .15s;
  z-index: 40;
}
.nav-links .menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink-700);
}
.nav-links .menu a:hover { background: var(--cream-50); color: var(--navy-800); }
.nav-links .has-menu:hover .menu,
.nav-links .has-menu:focus-within .menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (min-width: 1000px) {
  .nav-links { display: flex; }
}

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 12px 18px; min-height: 48px; font-size: 15px; }
@media (max-width: 720px) { .nav-cta .text-btn { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  isolation: isolate; background-color: var(--navy-900);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: var(--img-hero);
  background-size: cover; background-position: center 35%;
  z-index: -2; transform: scale(1.02);
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(900px 540px at 88% 0%, rgba(245, 161, 84, 0.40), transparent 60%),
    radial-gradient(900px 540px at 0% 110%, rgba(24, 160, 155, 0.45), transparent 60%),
    linear-gradient(180deg, rgba(6,22,52,0.85) 0%, rgba(10,31,68,0.92) 100%);
  z-index: -1;
}
.hero-inner {
  position: relative;
  padding: 56px 0 64px;
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
}
@media (min-width: 1000px) {
  .hero-inner { grid-template-columns: 1.15fr 0.85fr; padding: 90px 0 110px; gap: 56px; }
}

/* Compact hero variant for sub-pages */
.hero.hero-compact .hero-inner {
  padding: 56px 0 56px;
  grid-template-columns: 1fr;
  max-width: 880px;
}
@media (min-width: 1000px) {
  .hero.hero-compact .hero-inner { padding: 80px 0 80px; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  color: #fef0d8;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.03em;
}
.eyebrow .palm-mini { color: var(--sunset-400); }
.h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 18px 0 16px;
  text-wrap: balance;
}
.h1 .accent {
  background: linear-gradient(90deg, #ffd9a8 0%, #f5a154 50%, #ffd9a8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 700;
}
.sub { font-size: clamp(16px, 1.6vw, 19px); color: #ecf2ff; max-width: 640px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-ctas .btn { font-size: 18px; padding: 18px 26px; min-height: 60px; }
.hero-phone {
  display: flex; align-items: center; gap: 12px;
  margin-top: 18px; color: #ecf2ff; font-size: 15px;
}
.hero-phone strong { color: #fff; font-size: 22px; }
.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px; margin-top: 28px; max-width: 600px;
}
@media (min-width: 600px) { .hero-trust { grid-template-columns: repeat(3, 1fr); } }
.trust-pill {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  padding: 10px 12px;
  color: #f8efe0; font-size: 13px; font-weight: 600;
}
.trust-pill svg { color: #25d27a; flex-shrink: 0; }

/* Hero guarantee card */
.guarantee-card {
  position: relative;
  background: linear-gradient(160deg, #ffffff 0%, var(--cream-100) 100%);
  color: var(--navy-800);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.6);
  transform: rotate(-1.2deg);
}
.guarantee-card::before {
  content: ''; position: absolute;
  top: -10px; left: 22px; width: 80px; height: 18px;
  background: rgba(245, 161, 84, 0.35);
  transform: rotate(-4deg); border-radius: 2px;
  box-shadow: inset 0 0 12px rgba(0,0,0,0.04);
}
.guarantee-card .stamp {
  position: absolute;
  top: -22px; right: -10px;
  background: var(--sunset-500);
  color: #fff; font-weight: 800; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
  box-shadow: 0 12px 24px rgba(240,129,55,0.35);
  transform: rotate(6deg);
}
.guarantee-card h3 {
  font-size: 13px; color: var(--ink-500); margin: 0 0 6px;
  text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: 700; font-family: 'Inter', sans-serif;
}
.guarantee-card .big {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.015em; margin: 0 0 12px;
}
.guarantee-card .big em { color: var(--teal-700); font-style: italic; font-weight: 700; }
.guarantee-card p { color: var(--ink-700); margin: 0 0 18px; font-size: 15px; }
.guarantee-bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.guarantee-bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600;
}
.check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal-500); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
}

/* ---------- Section base ---------- */
section { padding: 80px 0; position: relative; }
@media (max-width: 700px) { section { padding: 56px 0; } }
.section-head { text-align: center; max-width: 740px; margin: 0 auto 44px; }
.section-eyebrow {
  color: var(--teal-700);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 12.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-flex; align-items: center; gap: 8px;
}
.section-eyebrow .leaf { color: var(--teal-500); }
.h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 96, "SOFT" 50;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.1; letter-spacing: -0.018em;
  font-weight: 700; margin: 0 0 14px;
  color: var(--navy-800); text-wrap: balance;
}
.h2 em { color: var(--teal-700); font-style: italic; font-weight: 600; }
.lead { color: var(--ink-700); font-size: 17px; }

/* Long-form prose (used on city pages, blogs, cost page) */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--ink-700);
  line-height: 1.75;
}
.prose h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--navy-800);
  margin: 44px 0 14px;
  letter-spacing: -0.015em;
  line-height: 1.15;
  text-wrap: balance;
}
.prose h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(20px, 2.2vw, 24px);
  color: var(--navy-800);
  margin: 32px 0 10px;
  letter-spacing: -0.01em;
  font-weight: 700;
}
.prose p { margin: 0 0 18px; }
.prose ul, .prose ol { margin: 0 0 22px; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--teal-700); font-weight: 700; }
.prose strong { color: var(--navy-800); }
.prose blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--sunset-500);
  background: var(--cream-50);
  border-radius: 0 12px 12px 0;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  color: var(--navy-800);
  font-size: 18px;
}

/* Photo strip */
.photo-strip {
  position: relative;
  height: 220px;
  background-color: var(--navy-700);
  background-size: cover; background-position: center; overflow: hidden;
}
@media (min-width: 800px) { .photo-strip { height: 280px; } }
.photo-strip::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,22,52,0.55) 0%, rgba(15,122,120,0.40) 100%);
}
.photo-strip .strip-content {
  position: relative; z-index: 1; height: 100%;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; padding: 0 20px;
}
.photo-strip .strip-content p {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600; font-style: italic;
  max-width: 760px; margin: 0; line-height: 1.25;
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
}
.photo-strip .strip-content .who {
  display: block; font-family: 'Inter', sans-serif;
  font-style: normal; font-weight: 700; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-top: 14px; color: var(--sunset-400);
}

/* ---------- Urgency Section ---------- */
.urgency { background: var(--cream-50); }
.urgency-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 800px) {
  .urgency-grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 48px; }
}
.urgency h2 { margin-top: 0; }
.urgency .lead { font-size: 18px; }
.pain-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.pain-list li {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fff; border: 1px solid var(--cream-200);
  border-radius: 14px; padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}
.pain-list .icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--teal-100); color: var(--teal-700);
  display: grid; place-items: center; flex-shrink: 0;
}
.pain-list strong { color: var(--navy-800); display: block; margin-bottom: 2px; }
.pain-list p { margin: 0; color: var(--ink-700); font-size: 14.5px; }
.urgency-card {
  background: var(--navy-800); color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(10,31,68,0.85), rgba(10,31,68,0.95)),
    var(--img-palms);
  background-size: cover; background-position: center;
}
.urgency-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px; margin: 0 0 8px; font-weight: 700;
  letter-spacing: -0.01em;
}
.urgency-card p { color: #ecf2ff; margin: 0 0 18px; }
.urgency-card .btn { width: 100%; }

.local-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--sunset-100); color: var(--sunset-600);
  border: 1px solid rgba(227,106,31,0.20);
  padding: 7px 14px; border-radius: 999px;
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase;
}

/* ---------- Guarantee Section ---------- */
.guarantee {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.guarantee::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(700px 360px at 90% 10%, rgba(245,161,84,0.20), transparent 60%),
    radial-gradient(700px 360px at 10% 100%, rgba(24,160,155,0.22), transparent 60%);
}
.guarantee .container { position: relative; }
.guarantee .section-head .h2 { color: #fff; }
.guarantee .section-head .h2 em { color: var(--sunset-400); }
.guarantee .lead { color: #ecf2ff; }
.guarantee-wrap {
  display: grid; gap: 28px;
  grid-template-columns: 1fr; align-items: stretch;
}
@media (min-width: 900px) { .guarantee-wrap { grid-template-columns: 1fr 1fr; } }
.big-badge {
  background: var(--cream-50); color: var(--navy-800);
  border-radius: var(--radius-xl);
  padding: 38px 30px; box-shadow: var(--shadow-lg);
  text-align: center; position: relative; overflow: hidden;
}
.big-badge::before {
  content: ''; position: absolute; inset: 12px;
  border: 2px dashed rgba(10,31,68,0.14);
  border-radius: 22px; pointer-events: none;
}
.big-badge .ring {
  width: 92px; height: 92px;
  margin: 0 auto 14px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sunset-500), var(--sunset-400));
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 14px 30px rgba(240,129,55,0.40);
}
.big-badge .label {
  font-size: 12.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-500);
  font-weight: 700; margin-bottom: 8px;
}
.big-badge .headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.0; margin: 0 0 10px;
  color: var(--navy-800);
}
.big-badge .sub-line {
  color: var(--sunset-600);
  font-weight: 800; font-size: 17px;
  letter-spacing: 0.04em;
}
.guarantee-copy h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px; margin: 0 0 12px;
  font-weight: 700; letter-spacing: -0.01em;
}
.guarantee-copy p { color: #ecf2ff; font-size: 17px; margin: 0 0 14px; }
.guarantee-features { display: grid; gap: 12px; margin-top: 18px; }
.guarantee-features > div {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 14px;
}
.guarantee-features .check { background: var(--sunset-500); }
.guarantee-features strong { display: block; font-size: 15.5px; }
.guarantee-features p { margin: 4px 0 0; color: #d8e3f6; font-size: 14px; }

/* ---------- Services Section ---------- */
.services-bg { background: var(--cream-100); position: relative; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: #fff; border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-500);
}
.service-card .icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--teal-100); color: var(--teal-700);
  display: grid; place-items: center; margin-bottom: 14px;
}
.service-card h3 {
  margin: 0 0 6px; font-family: 'Fraunces', Georgia, serif;
  font-size: 19px; font-weight: 700;
  color: var(--navy-800); letter-spacing: -0.01em;
}
.service-card p { margin: 0; color: var(--ink-700); font-size: 14.5px; }
.service-card a.more {
  display: inline-block;
  margin-top: 10px;
  color: var(--teal-700);
  font-weight: 700;
  font-size: 14px;
}

/* ---------- Why Choose Us ---------- */
.why { background: var(--cream-50); }
.why-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  background: #fff; border-radius: var(--radius-md);
  padding: 22px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-200);
  display: flex; gap: 14px; align-items: flex-start;
}
.why-card .icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-800), var(--teal-500));
  color: #fff; display: grid; place-items: center; flex-shrink: 0;
}
.why-card h3 {
  margin: 0 0 4px; font-family: 'Fraunces', Georgia, serif;
  font-size: 18px; color: var(--navy-800);
  font-weight: 700; letter-spacing: -0.01em;
}
.why-card p { margin: 0; color: var(--ink-700); font-size: 14.5px; }

/* ---------- How It Works ---------- */
.how-bg { background: #fff; }
.steps {
  display: grid; gap: 20px; grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  position: relative; background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.step-number {
  width: 48px; height: 48px;
  background: var(--sunset-500); color: #fff;
  display: grid; place-items: center;
  border-radius: 12px;
  font-weight: 800; font-family: 'Fraunces', Georgia, serif;
  font-size: 20px; margin-bottom: 14px;
  box-shadow: 0 10px 20px rgba(240,129,55,0.30);
}
.step h3 {
  margin: 0 0 8px; font-family: 'Fraunces', Georgia, serif;
  font-size: 21px; color: var(--navy-800);
  font-weight: 700; letter-spacing: -0.01em;
}
.step p { margin: 0; color: var(--ink-700); font-size: 15px; }
.step a.phone-inline { color: var(--teal-700); font-weight: 800; }

/* ---------- Local Trust / Cities ---------- */
.local {
  position: relative; color: #fff; overflow: hidden;
  background-color: var(--navy-800);
}
.local::before {
  content: ''; position: absolute; inset: 0;
  background-image: var(--img-coast);
  background-size: cover; background-position: center;
  opacity: 0.45; z-index: 0;
}
.local::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(240,129,55,0.25), transparent 60%),
    linear-gradient(180deg, rgba(6,22,52,0.85) 0%, rgba(10,31,68,0.85) 100%);
  z-index: 0;
}
.local .container { position: relative; z-index: 1; }
.local .section-head .h2 { color: #fff; }
.local .section-head .h2 em { color: var(--sunset-400); }
.local .lead { color: #ecf2ff; }
.local .section-eyebrow { color: var(--sunset-400); }

.city-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 10px; max-width: 920px; margin: 0 auto;
}
@media (min-width: 600px) { .city-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .city-grid { grid-template-columns: repeat(4, 1fr); } }
.city-pill {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 12px;
  padding: 14px 16px;
  color: #fff; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
  transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.city-pill:hover { transform: translateY(-2px); border-color: var(--sunset-400); background: rgba(255,255,255,0.16); }
.city-pill .pin { color: var(--sunset-400); flex-shrink: 0; }
.local-note {
  text-align: center; margin-top: 32px;
  color: #ecf2ff; max-width: 740px;
  margin-left: auto; margin-right: auto;
  font-size: 15.5px;
}
.local-note a { color: var(--sunset-400); font-weight: 700; }

/* ---------- Testimonials ---------- */
.testimonials-bg { background: var(--cream-50); }
.testimonials-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 800px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: #fff; border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  padding: 26px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; position: relative;
}
.review-card::before {
  content: '"'; position: absolute;
  top: -8px; left: 18px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 80px; line-height: 1;
  color: var(--teal-100); font-weight: 800;
}
.stars { display: flex; gap: 2px; margin-bottom: 12px; position: relative; color: #f5a154; }
.quote {
  color: var(--ink-700); font-size: 16px; line-height: 1.65;
  margin: 0 0 16px;
  font-family: 'Fraunces', Georgia, serif; font-weight: 400;
}
.reviewer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--teal-500));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-family: 'Fraunces', Georgia, serif;
}
.reviewer .name { font-weight: 700; color: var(--navy-800); font-size: 15px; line-height: 1.2; }
.reviewer .loc { font-size: 13px; color: var(--ink-500); }

.review-cta {
  text-align: center;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--cream-200);
}
.review-cta p { color: var(--ink-700); margin: 0 0 14px; }
.review-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--teal-700); font-weight: 700; font-size: 15px;
}

/* ---------- FAQ ---------- */
.faq { background: var(--cream-100); }
.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  padding: 6px 20px; box-shadow: var(--shadow-sm);
  transition: border-color .15s var(--ease);
}
.faq-item[open] { border-color: var(--teal-500); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 0;
  font-weight: 700; color: var(--navy-800); font-size: 17px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  font-family: 'Fraunces', Georgia, serif; letter-spacing: -0.005em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--teal-700);
  font-size: 24px; font-weight: 400;
  transition: transform .2s var(--ease);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .answer {
  color: var(--ink-700); padding: 0 0 20px;
  font-size: 15.5px; line-height: 1.65;
}
.faq-item .answer a { color: var(--teal-700); font-weight: 700; }

/* ---------- Final CTA ---------- */
.final-cta {
  color: #fff; text-align: center;
  position: relative; overflow: hidden;
  isolation: isolate;
  background-color: var(--navy-900);
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: var(--img-sunset);
  background-size: cover; background-position: center 60%;
  z-index: -2;
}
.final-cta::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(800px 480px at 50% 110%, rgba(240,129,55,0.45), transparent 60%),
    linear-gradient(180deg, rgba(6,22,52,0.85) 0%, rgba(10,31,68,0.90) 100%);
  z-index: -1;
}
.final-cta h2 {
  color: #fff; font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 4.6vw, 52px);
  max-width: 840px; margin: 0 auto 16px;
  letter-spacing: -0.02em; font-weight: 700;
  line-height: 1.08; text-wrap: balance;
}
.final-cta h2 .accent { color: var(--sunset-400); font-style: italic; font-weight: 600; }
.final-cta p { color: #ecf2ff; max-width: 640px; margin: 0 auto 28px; font-size: 17px; }
.final-cta .ctas { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.final-cta .ctas .btn { font-size: 18px; padding: 18px 28px; min-height: 60px; }
.final-cta .small { color: #d8e3f6; font-size: 13.5px; margin-top: 22px; }

/* ---------- Footer ---------- */
footer { background: var(--navy-900); color: #d8e3f6; padding: 44px 0 32px; font-size: 14px; }
.footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
@media (min-width: 700px) {
  .footer-cols { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 30px; }
}
.footer-col h4 {
  color: #fff;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px;
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #b6c5dd; font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-brand {
  display: flex; align-items: center; gap: 12px; color: #fff;
  margin-bottom: 12px;
}
.footer-brand .brand-text small { color: #98abc7; }
.footer-tag {
  color: #b6c5dd; font-size: 14px; margin: 0 0 12px;
  line-height: 1.55;
}
.footer-phone {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff; font-weight: 700; font-size: 15px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  color: #98abc7; font-size: 13px;
  display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 12px;
}

/* ---------- Sticky Mobile Bar ---------- */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(10, 31, 68, 0.98);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  z-index: 50;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.2);
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  border-radius: 12px;
  font-weight: 800; font-size: 15px;
  min-height: 52px;
}
.mobile-bar .call { background: var(--sunset-500); color: #fff; }
.mobile-bar .text {
  background: rgba(255,255,255,0.10);
  color: #fff; border: 1px solid rgba(255,255,255,0.2);
}
@media (min-width: 900px) { .mobile-bar { display: none; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .pulse-dot { animation: none; }
  html { scroll-behavior: auto; }
}

a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--sunset-400);
  outline-offset: 2px;
  border-radius: 8px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Cross-link cards (city/service "explore more") ---------- */
.cross-links {
  background: var(--cream-50);
}
.cross-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 700px) { .cross-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cross-grid { grid-template-columns: repeat(3, 1fr); } }
.cross-card {
  display: block;
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.cross-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-500);
}
.cross-card .label {
  color: var(--teal-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cross-card h3 {
  margin: 8px 0 6px;
  font-family: 'Fraunces', Georgia, serif;
  color: var(--navy-800);
  font-size: 20px;
  letter-spacing: -0.01em;
}
.cross-card p { margin: 0; color: var(--ink-700); font-size: 14.5px; }
.cross-card .arrow {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px;
  color: var(--sunset-600);
  font-weight: 700; font-size: 14px;
}

/* ---------- Pricing table on cost page ---------- */
.price-list {
  display: grid; gap: 12px;
  max-width: 760px; margin: 24px auto;
}
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  background: #fff; border: 1px solid var(--cream-200);
  border-radius: 14px;
  padding: 16px 20px;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}
.price-row .name { font-weight: 700; color: var(--navy-800); font-size: 15.5px; }
.price-row .name small { display: block; color: var(--ink-500); font-weight: 500; font-size: 13px; margin-top: 2px; }
.price-row .range { font-family: 'Fraunces', Georgia, serif; font-weight: 700; color: var(--teal-700); font-size: 18px; white-space: nowrap; }
