/* ============================================
   Green Planet Commercial Cleaning
   Clean & Corporate design system
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;500;600;700;800&family=Source+Serif+4:opsz,wght@8..60,400;8..60,500;8..60,600&display=swap');

:root {
  --navy: #0D2E4F;
  --navy-deep: #061A2E;
  --navy-soft: #1B4778;
  --navy-tint: #E8EEF5;

  --white: #FFFFFF;
  --off-white: #FAFBFC;
  --gray-50: #F4F6F8;
  --gray-100: #E5E9ED;
  --gray-200: #CDD4DC;
  --gray-300: #A4ADB7;
  --gray-500: #5C6773;
  --gray-700: #2E3742;

  --green: #0F7D45;
  --green-light: #2DA968;
  --green-deep: #095C32;

  --ink: #0D2E4F;
  --ink-body: #2E3742;
  --ink-mute: #5C6773;

  --font-display: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Source Serif 4', Georgia, serif;

  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem; --s-4: 1rem;
  --s-5: 1.25rem; --s-6: 1.5rem; --s-8: 2rem; --s-10: 2.5rem;
  --s-12: 3rem; --s-16: 4rem; --s-20: 5rem; --s-24: 6rem; --s-32: 8rem;

  --width-max: 1280px;
  --width-content: 760px;

  --radius-sm: 4px;
  --radius: 6px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 2px rgba(13, 46, 79, 0.05);
  --shadow: 0 4px 12px rgba(13, 46, 79, 0.08);
  --shadow-lg: 0 12px 32px rgba(13, 46, 79, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink-body);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
}

p { margin-bottom: var(--s-4); }
p:last-child { margin-bottom: 0; }

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

a:hover { color: var(--green-deep); }

strong { font-weight: 600; color: var(--ink); }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--green);
  margin-bottom: var(--s-4);
}

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

.container-narrow {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--s-6);
}

section { padding: var(--s-24) 0; }

@media (max-width: 768px) {
  section { padding: var(--s-16) 0; }
  .container, .container-narrow { padding: 0 var(--s-4); }
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

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

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

/* Top bar */
.top-bar {
  background: var(--navy-deep);
  color: var(--gray-100);
  padding: var(--s-3) 0;
  font-size: 0.8125rem;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-4);
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}

.top-bar-item svg { width: 14px; height: 14px; opacity: 0.8; }

.top-bar a { color: var(--white); font-weight: 500; }
.top-bar a:hover { color: var(--green-light); }

@media (max-width: 640px) {
  .top-bar-item.hide-mobile { display: none; }
}

/* Header */
.site-header {
  padding: var(--s-5) 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  text-decoration: none;
  color: var(--navy);
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.brand-logo::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2.5px solid var(--green-light);
  border-radius: 50%;
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(45deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em;
}

.brand-tagline {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-top: var(--s-1);
  font-weight: 500;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}

.header-phone {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.header-phone:hover { color: var(--green); }

@media (max-width: 640px) {
  .header-cta .header-phone { display: none; }
  .brand-tagline { display: none; }
}

/* Hero */
.hero {
  padding: var(--s-20) 0 var(--s-24);
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(15, 125, 69, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: var(--s-12);
  align-items: center;
  position: relative;
}

.hero-content h1 { margin-bottom: var(--s-6); }

.hero-content h1 .green-accent { color: var(--green); }

.hero-subhead {
  font-size: 1.2rem;
  color: var(--ink-body);
  line-height: 1.55;
  margin-bottom: var(--s-8);
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: var(--s-3);
  margin-bottom: var(--s-10);
  flex-wrap: wrap;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-6);
  align-items: center;
  padding-top: var(--s-6);
  border-top: 1px solid var(--gray-100);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 0.875rem;
  color: var(--ink-mute);
  font-weight: 500;
}

.hero-trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
}

.hero-image {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(13, 46, 79, 0.35) 100%);
  pointer-events: none;
}

.hero-image-badge {
  position: absolute;
  bottom: var(--s-6);
  left: var(--s-6);
  right: var(--s-6);
  background: var(--white);
  padding: var(--s-5);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--s-4);
}

.hero-image-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.hero-image-badge-icon svg { width: 22px; height: 22px; }

.hero-image-badge-text {
  font-size: 0.85rem;
  color: var(--ink-body);
  line-height: 1.35;
  font-weight: 500;
}

.hero-image-badge-text strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--s-10);
  }
  .hero-image {
    aspect-ratio: 3 / 2;
    max-width: 100%;
  }
}

/* Stats strip */
.stats-strip {
  background: var(--navy);
  color: var(--white);
  padding: var(--s-12) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-8);
}

.stat-item {
  border-left: 2px solid var(--green-light);
  padding-left: var(--s-5);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--s-2);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-200);
  line-height: 1.4;
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-6);
  }
}

/* Section headers */
.section-header {
  margin-bottom: var(--s-12);
  max-width: 720px;
}

.section-header h2 { margin-bottom: var(--s-4); }

.section-header p {
  font-size: 1.125rem;
  color: var(--ink-mute);
  line-height: 1.55;
}

.section-header-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Services */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
}

.service-card {
  padding: var(--s-8);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.service-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--navy-tint);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-5);
  color: var(--navy);
}

.service-icon svg { width: 24px; height: 24px; }

.service-card h3 { margin-bottom: var(--s-3); }

.service-card p {
  color: var(--ink-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: var(--s-6); }
}

/* Industries */
.industries {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}

.industry-item {
  background: var(--white);
  padding: var(--s-5) var(--s-4);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-body);
  transition: all 0.15s ease;
}

.industry-item:hover { border-color: var(--green); }

.industry-check {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .industries-grid { grid-template-columns: 1fr; }
}

/* About */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: center;
}

.about-content h2 { margin-bottom: var(--s-5); }

.about-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-body);
  margin-bottom: var(--s-4);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  background: var(--navy);
  padding: var(--s-10);
  border-radius: var(--radius-lg);
  color: var(--white);
}

.about-stat-box-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--green-light);
  letter-spacing: -0.02em;
  margin-bottom: var(--s-2);
}

.about-stat-box-label {
  font-size: 0.95rem;
  color: var(--gray-100);
  font-weight: 500;
  line-height: 1.4;
}

.about-stat-box.full {
  grid-column: 1 / -1;
  padding-top: var(--s-6);
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: var(--s-4);
}

.about-stat-box.full .about-stat-box-number {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: var(--s-1);
}

.about-stat-box.full .about-stat-box-label {
  font-size: 0.875rem;
  color: var(--gray-200);
}

@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--s-10);
  }
}

/* FAQ */
.faq {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}

.faq-list {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--gray-100);
}

.faq-list details {
  border-bottom: 1px solid var(--gray-100);
}

.faq-list details:last-child { border-bottom: none; }

.faq-list summary {
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  padding: var(--s-5) var(--s-6);
  cursor: pointer;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  transition: background 0.15s ease;
}

.faq-list summary:hover { background: var(--navy-tint); }

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-bottom: 4px;
}

.faq-list details[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
  margin-bottom: 0;
}

.faq-list details p {
  padding: 0 var(--s-6) var(--s-6);
  color: var(--ink-body);
  line-height: 1.65;
  font-size: 0.975rem;
}

/* Service area */
.service-area { background: var(--white); }

.area-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-16);
  align-items: start;
}

.area-list {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
}

.area-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-4) var(--s-6);
  border-bottom: 1px solid var(--gray-100);
  background: var(--white);
  transition: background 0.15s ease;
}

.area-list-item:last-child { border-bottom: none; }
.area-list-item:hover { background: var(--gray-50); }

.area-list-item-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}

.area-list-item-name a {
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}

.area-list-item-name a:hover { color: var(--green); }

.area-list-item-name a::after {
  content: "→";
  font-size: 0.875rem;
  transition: transform 0.15s ease;
}

.area-list-item-name a:hover::after { transform: translateX(3px); }

.area-list-item-region {
  font-size: 0.875rem;
  color: var(--ink-mute);
}

@media (max-width: 768px) {
  .area-content {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }
}

/* Contact */
.contact {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(45, 169, 104, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(45, 169, 104, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.contact h2 { color: var(--white); }
.contact .eyebrow { color: var(--green-light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--s-16);
  align-items: start;
  position: relative;
}

.contact-info p {
  color: var(--gray-100);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: var(--s-4);
}

.contact-info p:first-of-type { font-size: 1.15rem; }

.contact-details {
  margin-top: var(--s-10);
  padding-top: var(--s-8);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.contact-detail-row {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin-bottom: var(--s-5);
}

.contact-detail-row:last-child { margin-bottom: 0; }

.contact-detail-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  flex-shrink: 0;
}

.contact-detail-icon svg { width: 18px; height: 18px; }

.contact-detail-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-300);
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-detail-value a {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
}

.contact-detail-value a:hover { color: var(--green-light); }

.quote-form {
  background: var(--white);
  color: var(--ink);
  padding: var(--s-10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.quote-form h3 {
  font-size: 1.4rem;
  margin-bottom: var(--s-2);
}

.quote-form > p {
  font-size: 0.95rem;
  color: var(--ink-mute);
  margin-bottom: var(--s-6);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
}

.form-field { display: flex; flex-direction: column; }
.form-field-full { grid-column: 1 / -1; }

.form-field label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--s-2);
}

.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-sm);
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15, 125, 69, 0.1);
}

.form-field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-submit {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  width: 100%;
  transition: background 0.15s ease;
  margin-top: var(--s-2);
}

.form-submit:hover { background: var(--green); }

.form-note {
  font-size: 0.8125rem;
  color: var(--ink-mute);
  margin-top: var(--s-3);
  text-align: center;
}

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--s-10);
  }
  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: var(--s-6); }
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: var(--gray-200);
  padding: var(--s-16) 0 var(--s-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s-10);
  margin-bottom: var(--s-12);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.footer-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: var(--s-5);
  font-weight: 700;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: var(--s-3); }

.footer-col a, .footer-col span {
  color: var(--gray-200);
  font-size: 0.9375rem;
  transition: color 0.15s ease;
}

.footer-col a:hover { color: var(--green-light); }

.footer-bottom {
  padding-top: var(--s-6);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-4);
  font-size: 0.8125rem;
  color: var(--gray-300);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-8);
  }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Page hero (neighborhood) */
.page-hero {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  padding: var(--s-12) 0 var(--s-16);
  border-bottom: 1px solid var(--gray-100);
}

.breadcrumb {
  font-size: 0.875rem;
  color: var(--ink-mute);
  margin-bottom: var(--s-6);
}

.breadcrumb a { color: var(--ink-mute); }
.breadcrumb a:hover { color: var(--navy); }

.breadcrumb-sep {
  margin: 0 var(--s-2);
  color: var(--gray-300);
}

.page-hero h1 {
  margin-bottom: var(--s-5);
  max-width: 720px;
}

.page-hero .hero-subhead {
  max-width: 720px;
  margin-bottom: var(--s-8);
}

.local-content { max-width: var(--width-content); }

.local-content h2 {
  margin-top: var(--s-12);
  margin-bottom: var(--s-5);
  font-size: 1.75rem;
}

.local-content h2:first-of-type { margin-top: 0; }

.local-content p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-body);
  margin-bottom: var(--s-4);
}

.local-cta {
  background: var(--navy);
  color: var(--white);
  padding: var(--s-16) 0;
  text-align: center;
}

.local-cta h2 {
  color: var(--white);
  margin-bottom: var(--s-4);
}

.local-cta p {
  color: var(--gray-100);
  font-size: 1.0625rem;
  margin-bottom: var(--s-8);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.local-cta-buttons {
  display: flex;
  gap: var(--s-3);
  justify-content: center;
  flex-wrap: wrap;
}

.local-cta .btn-primary {
  background: var(--green);
  border-color: var(--green);
}

.local-cta .btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.local-cta .btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
  color: var(--white);
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content .eyebrow,
.hero-content h1,
.hero-subhead,
.hero-ctas,
.hero-trust-row {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.hero-content h1 { animation-delay: 0.05s; }
.hero-subhead { animation-delay: 0.15s; }
.hero-ctas { animation-delay: 0.25s; }
.hero-trust-row { animation-delay: 0.35s; }

.hero-image {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
