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

:root {
  --teal: #0C4A5E;
  --sand: #F4EEE3;
  --coral: #E8654D;
  --teal-light: rgba(12,74,94,0.08);
  --fg: #1a1a1a;
  --fg-muted: #6b6b6b;
  --border: rgba(12,74,94,0.12);
  --radius: 8px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--sand);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--teal);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 3rem;
}

/* HERO */
.hero {
  position: relative;
  background: var(--sand);
  overflow: hidden;
  padding: 6rem 0 5rem;
}
.hero-wave {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 320px;
}
.hero-wave svg { width: 100%; height: 100%; }
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.5rem 2rem;
  background: var(--teal);
  border-radius: var(--radius);
  color: #fff;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--coral);
}
.stat-label {
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.85;
  margin-top: 0.5rem;
  font-family: var(--font-body);
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--teal);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-headline em { font-style: italic; color: var(--coral); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* SERVICES */
.services { padding: 5rem 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.service-card {
  padding: 2rem 1.75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(12,74,94,0.1);
}
.service-icon { margin-bottom: 1.25rem; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; }

/* PRICING */
.pricing {
  padding: 5rem 0;
  background: var(--teal);
  color: #fff;
}
.pricing .section-label { color: var(--coral); }
.pricing .section-heading { color: #fff; }
.pricing .section-sub { color: rgba(255,255,255,0.7); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.pricing-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2rem;
}
.pricing-card.pricing-featured {
  background: rgba(232,101,77,0.15);
  border-color: var(--coral);
}
.pricing-tier {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
}
.pricing-per { font-size: 0.9rem; font-weight: 400; color: rgba(255,255,255,0.6); }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pricing-features li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  padding-left: 1.2rem;
  position: relative;
}
.pricing-features li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--coral);
}
.pricing-note {
  font-size: 0.8rem;
  color: var(--coral);
  margin-top: 1rem;
  font-weight: 500;
}
.pricing-size-notice {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 0.9rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
}
.pricing-size-notice p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
}
.pricing-size-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--coral);
  color: #fff;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.pricing-size-badge--large {
  font-size: 0.85rem;
  padding: 0.35rem 0.9rem;
}
.pricing-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0 1.75rem;
}
.pricing-divider::before,
.pricing-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.15);
}
.pricing-pergallon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 680px;
}
.pricing-disclaimer {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* AREAS */
.areas { padding: 5rem 0; }
.areas-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.areas-text p { font-size: 1rem; color: var(--fg-muted); margin-bottom: 1.5rem; }
.areas-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.areas-list li { font-size: 0.95rem; color: var(--fg); }
.areas-list strong { color: var(--teal); }
.map-placeholder {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 400/280;
}
.map-placeholder svg { width: 100%; height: 100%; display: block; }

/* PROCESS */
.process { padding: 5rem 0; background: #fff; }
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step { padding: 0 2rem; }
.step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--coral);
  opacity: 0.3;
  margin-bottom: 1rem;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.step p { font-size: 0.9rem; color: var(--fg-muted); }
.step-connector {
  width: 1px;
  height: 80px;
  background: var(--border);
  align-self: center;
}

/* MANIFESTO */
.manifesto { padding: 5rem 0; background: var(--sand); }
.manifesto-inner { max-width: 800px; margin: 0 auto; text-align: center; }
blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 500;
  color: var(--teal);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.manifesto p { font-size: 1rem; color: var(--fg-muted); }

/* CLOSING */
.closing { padding: 5rem 0; background: var(--teal); text-align: center; color: #fff; }
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
.closing p { font-size: 1.05rem; color: rgba(255,255,255,0.75); }

/* FOOTER */
.footer { padding: 4rem 0 2rem; background: var(--sand); border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.footer-tagline { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.6; }
.footer-contact { text-align: right; }
.footer-contact p { font-size: 0.9rem; margin-bottom: 0.25rem; }
.footer-contact a { color: var(--coral); text-decoration: none; font-weight: 500; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stat { flex-direction: row; align-items: center; gap: 1.5rem; padding: 1.75rem; }
  .stat-number { font-size: 3.5rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .areas-inner { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 2rem; }
  .step-connector { display: none; }
  .footer-inner { flex-direction: column; }
  .footer-contact { text-align: left; }
  .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero { padding: 4rem 0 3rem; }
  .hero-headline { font-size: 2rem; }
  .section-heading { font-size: 1.6rem; }
}