/* Total Home Watching — Alt Website Design 1
   Cleaner, lighter page headers; calmer overall presentation.
   Content matches Redesigned Website; presentation differs. */

:root {
  --navy: #0c2340;
  --navy-deep: #071628;
  --navy-mid: #163556;
  --teal: #1a6b6b;
  --teal-light: #2a8f8f;
  --teal-soft: #e8f4f4;
  --sand: #f7f4ef;
  --sand-dark: #e8e2d8;
  --cream: #fdfbf8;
  --gold: #b8976a;
  --gold-soft: #d4bc94;
  --text: #1c2a3a;
  --text-muted: #5a6a7a;
  --white: #ffffff;
  --border: rgba(12, 35, 64, 0.08);
  --shadow: 0 4px 24px rgba(12, 35, 64, 0.08);
  --shadow-lg: 0 20px 60px rgba(12, 35, 64, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 1200px;
  --header-h: 118px;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--navy);
}

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); }
h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

.lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--sand);
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.section-navy .lead,
.section-navy p {
  color: rgba(255, 255, 255, 0.85);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-header p {
  margin-top: 1rem;
  color: var(--text-muted);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--navy);
  color: white;
  padding: 0.75rem 1.25rem;
  z-index: 10000;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 251, 248, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 0;
}

.logo-img {
  display: block;
  height: 88px;
  width: auto;
  max-width: min(400px, 70vw);
  object-fit: contain;
}

@media (min-width: 640px) {
  .logo-img {
    height: 98px;
    max-width: 460px;
  }
}

/* Text logo fallback (footer brand) */
.logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.logo-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 2px;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--navy);
  background: var(--teal-soft);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  line-height: 1.2;
}

.header-phone-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

.header-phone-num {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 0.5rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--cream);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.nav-mobile a:last-of-type {
  border-bottom: none;
}

.nav-mobile a.active {
  color: var(--teal);
}

.nav-mobile-cta {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .header-cta { display: flex; }
  .menu-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.3;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--sand);
  color: var(--navy);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.btn-lg {
  padding: 1.1rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.6rem 1.15rem;
  font-size: 0.85rem;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: min(85vh, 720px);
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Softer, more even veil so type stays readable over photo detail */
  background:
    linear-gradient(
      105deg,
      rgba(7, 22, 40, 0.78) 0%,
      rgba(12, 35, 64, 0.62) 48%,
      rgba(12, 35, 64, 0.45) 100%
    ),
    linear-gradient(
      to top,
      rgba(7, 22, 40, 0.35) 0%,
      transparent 40%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4rem;
  max-width: 720px;
}

.hero .eyebrow {
  color: var(--gold-soft);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
  font-style: italic;
}

.hero p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: var(--white);
  backdrop-filter: blur(8px);
  transition: background 0.2s;
}

.hero-phone:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.hero-phone svg {
  flex-shrink: 0;
  opacity: 0.9;
}

.hero-phone-text strong {
  display: block;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.hero-phone-text span {
  font-size: 0.8rem;
  opacity: 0.8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Page hero (inner pages) — brand color, no busy photos
   Logo-matched navy/teal gradient: rich color + easy reading */
.page-hero {
  position: relative;
  padding: 4.25rem 0 3.75rem;
  color: var(--white);
  overflow: hidden;
  min-height: 0;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      125deg,
      #2a4a6e 0%,
      #3d6fa8 36%,
      #4a7bb8 64%,
      #2a8f8f 100%
    );
}

/* Soft glow + logo-inspired swoosh accents (decorative, not busy) */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 100% 0%, rgba(255, 255, 255, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 0% 100%, rgba(107, 160, 214, 0.25) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -35%;
  width: 55%;
  height: 140%;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    -28px 0 0 -12px rgba(255, 255, 255, 0.08),
    -52px 0 0 -20px rgba(232, 244, 244, 0.1);
  pointer-events: none;
  transform: rotate(-12deg);
}

.page-hero-bg {
  display: none;
}

.page-hero-bg img {
  display: none;
}

.page-hero .hero-overlay {
  display: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.page-hero .eyebrow {
  color: var(--gold-soft);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.page-hero h1::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin-top: 0.95rem;
  border-radius: 2px;
  background: linear-gradient(90deg, #6ba0d6 0%, #1a6b6b 100%);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 38rem;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 4.75rem 0 4.25rem;
  }
}

/* ========== CARDS & GRIDS ========== */
.grid-2 {
  display: grid;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-soft);
  color: var(--teal);
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.975rem;
}

/* Feature / why choose cards */
.feature-list {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .feature-list {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.feature-item .check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--teal-soft);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.feature-item strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-item span,
.feature-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Checklist cards */
.checklist-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .checklist-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.checklist-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.checklist-card h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--teal-soft);
}

.checklist-card h3 .icon-badge {
  width: 40px;
  height: 40px;
  background: var(--teal-soft);
  color: var(--teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.75rem;
  color: var(--text);
  font-size: 0.975rem;
  border-bottom: 1px solid rgba(12, 35, 64, 0.05);
  line-height: 1.55;
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  opacity: 0.7;
}

/* Service plan cards */
.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.plan-card.featured {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(26, 107, 107, 0.15);
}

.plan-card.featured::before {
  content: "Recommended";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
}

.plan-freq {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin: 0.5rem 0;
}

.plan-card h3 {
  margin-bottom: 0.5rem;
}

.plan-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Area pills */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.area-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.15rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--navy);
  box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.2s;
}

.area-pill:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}

.area-pill svg {
  color: var(--teal);
  flex-shrink: 0;
}

/* Pricing highlight */
.price-range {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  color: white;
  margin-bottom: 2.5rem;
}

.price-range .amount {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: white;
  line-height: 1.1;
}

.price-range .amount span {
  font-size: 0.5em;
  opacity: 0.8;
  font-weight: 500;
}

.price-range .avg {
  margin-top: 0.75rem;
  color: var(--gold-soft);
  font-size: 1.1rem;
}

.price-range p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Two column content */
.split {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split.reverse .split-text { order: 2; }
  .split.reverse .split-media { order: 1; }
}

.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-text p + p {
  margin-top: 1.15rem;
}

.split-text p {
  color: var(--text-muted);
}

/* CTA banner */
.cta-banner {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--teal) 100%);
  border-radius: var(--radius-lg);
  color: white;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin: 0 auto 1.75rem;
  font-size: 1.1rem;
}

.cta-banner .cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cta-phone-display {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--gold-soft);
  margin-bottom: 1.5rem;
}

/* Services subnav */
.services-subnav {
  position: sticky;
  top: var(--header-h);
  z-index: 100;
  background: rgba(253, 251, 248, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.services-subnav-inner {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.services-subnav-inner::-webkit-scrollbar {
  display: none;
}

.services-subnav a {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all 0.2s;
  white-space: nowrap;
}

.services-subnav a:hover,
.services-subnav a.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

/* Contact form */
.contact-layout {
  display: grid;
  gap: 3rem;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1.15fr;
    align-items: start;
  }
}

.contact-info-card {
  background: var(--navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-info-card h2 {
  color: white;
  margin-bottom: 1rem;
}

.contact-info-card > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-method:last-child {
  border-bottom: none;
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-soft);
}

.contact-method label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.25rem;
}

.contact-method a,
.contact-method span {
  color: white;
  font-weight: 500;
  font-size: 1.05rem;
}

.contact-method a:hover {
  color: var(--gold-soft);
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-card h2 {
  margin-bottom: 0.5rem;
}

.form-card .form-intro {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--sand-dark);
  border-radius: 8px;
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26, 107, 107, 0.15);
  background: white;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 560px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: var(--teal-soft);
  border-radius: var(--radius);
  color: var(--navy);
}

.form-success.show {
  display: block;
}

.form-success h3 {
  margin-bottom: 0.5rem;
}

.form-error {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  background: #fdeaea;
  border: 1px solid #e8b4b4;
  border-radius: 8px;
  color: #8a2b2b;
  font-size: 0.95rem;
}

/* Netlify Forms spam honeypot — hidden from people, visible only to bots */
.netlify-honeypot {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

/* Image gallery strip */
.image-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .image-strip {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.image-strip figure {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.image-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-strip figure:hover img {
  transform: scale(1.05);
}

/* Bullet service list */
.service-bullets {
  display: grid;
  gap: 0.75rem;
}

.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-weight: 500;
  color: var(--navy);
}

.service-bullets li svg {
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 3px;
}

/* Prose content */
.prose p {
  color: var(--text-muted);
  margin-bottom: 1.15rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

/* Trust bar */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
}

.trust-item svg {
  color: var(--teal);
  flex-shrink: 0;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  }
}

.footer-brand .logo-name {
  color: white;
  font-size: 1.5rem;
}

.footer-brand .logo-tag {
  color: var(--gold-soft);
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h4 {
  color: white;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.65rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold-soft);
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--gold-soft);
  margin-top: 3px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
}

/* Floating phone CTA (mobile) */
.float-cta {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal);
  color: white;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 28px rgba(26, 107, 107, 0.4);
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}

.float-cta:hover {
  background: var(--navy);
  color: white;
  transform: scale(1.03);
}

@media (min-width: 1024px) {
  .float-cta {
    display: none;
  }
}

/* Utilities */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

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

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
