/*
Theme Name: Shoreline Erosion Control
Theme URI: https://shorelineerosioncontrol.com
Author: Green Image Landscaping
Author URI: https://thegreenimage.com
Description: Professional shoreline erosion control theme for South Florida.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: sec-theme
*/

/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===================== CSS VARIABLES ===================== */
:root {
  --green-deep:    #0d2e1a;
  --green-dark:    #1a4a2e;
  --green-mid:     #2d6e45;
  --green-light:   #3d8f5a;
  --green-pale:    #eef5f0;
  --gold:          #b8962e;
  --gold-light:    #d4b045;
  --sand:          #f5f0e8;
  --dark:          #111a14;
  --dark-mid:      #2a3530;
  --body-gray:     #4a5548;
  --border:        #d8e4dc;
  --white:         #ffffff;
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
  --max-w:         1160px;
  --radius:        3px;
}

/* ===================== GOOGLE FONTS IMPORT (via functions.php) ===================== */

/* ===================== UTILITIES ===================== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 14px;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.section-title-light { color: var(--white); }

.section-body {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--body-gray);
  line-height: 1.8;
  max-width: 600px;
}

.section-body-light { color: rgba(255,255,255,0.75); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184,150,46,0.3);
  color: var(--white);
}

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

.btn-green {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.btn-green:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-1px);
  color: var(--white);
}

/* ===================== NAV ===================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(13, 46, 26, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow 0.3s;
}

#site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand { display: flex; flex-direction: column; line-height: 1.15; }
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav-brand-sub {
  font-size: 0.58rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  gap: 14px;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--gold-light); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 74px; left: 0; right: 0;
  background: var(--green-deep);
  padding: 24px 28px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  z-index: 199;
}

.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.mobile-menu ul li a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-weight: 400;
}
.mobile-menu-cta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ===================== HERO ===================== */
/* PHOTO INSTRUCTION: Go to Appearance > Customize > Additional CSS and add:
   .hero { background-image: url('YOUR-PHOTO-URL'); }
   OR replace the gradient below with your erosion job photo. */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(155deg, rgba(5,20,10,0.78) 0%, rgba(10,35,18,0.65) 40%, rgba(0,0,0,0.55) 100%),
    linear-gradient(135deg, #0d2e1a 0%, #1a4a2e 100%);
  background-image: url('https://shorelineerosioncontrol.com/wp-content/uploads/2026/03/hero-joba-dark.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 130px 28px 100px;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(transparent, var(--white));
  pointer-events: none;
}

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

.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
  padding: 7px 14px;
  border: 1px solid rgba(212,176,69,0.35);
  border-radius: 2px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 600;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 26px;
  letter-spacing: -0.015em;
}

.hero h1 span { color: rgba(255,255,255,0.85); font-style: italic; }

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  max-width: 520px;
  margin-bottom: 10px;
  line-height: 1.65;
}

.hero-area {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 44px;
  letter-spacing: 0.06em;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===================== TRUST BAR ===================== */
.trust-bar {
  background: var(--green-deep);
  padding: 0;
}

.trust-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 40px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.trust-item:last-child { border-right: none; }

.trust-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-label {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ===================== PROBLEM SECTION ===================== */
.problem { background: var(--green-pale); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green-dark), var(--dark));
}

.problem-img-inner {
  width: 100%; height: 100%;
  background: url('https://shorelineerosioncontrol.com/wp-content/uploads/2026/03/problem-erosion.jpg') center/cover;
}

.problem-img-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  background: var(--gold);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 2px;
}

.problem-bullets {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.problem-bullets li {
  display: flex;
  gap: 14px;
  font-size: 0.975rem;
  color: var(--body-gray);
  line-height: 1.55;
}

.problem-bullets li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--green-mid);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

/* ===================== STEPS ===================== */
.steps { background: var(--green-dark); }

.steps-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
}

.step {
  background: var(--green-dark);
  padding: 52px 40px;
  position: relative;
  overflow: hidden;
}

.step::before {
  content: attr(data-num);
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}

.step-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.4rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}

.step p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  font-weight: 300;
}

/* ===================== WHO WE SERVE ===================== */
.serve { background: var(--white); }

.serve-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.serve-card {
  border: 1px solid var(--border);
  border-top: 4px solid var(--green-mid);
  padding: 36px 26px;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: all 0.25s ease;
}

.serve-card:hover {
  box-shadow: 0 16px 48px rgba(13,46,26,0.1);
  transform: translateY(-3px);
  border-top-color: var(--gold);
}

.serve-icon { font-size: 1.8rem; margin-bottom: 16px; }

.serve-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.serve-card p {
  font-size: 0.9rem;
  color: var(--body-gray);
  line-height: 1.65;
  font-weight: 300;
}

/* ===================== WHY US ===================== */
.why { background: var(--sand); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-points {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-points li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 0.975rem;
  color: var(--body-gray);
  line-height: 1.6;
}

.why-check {
  width: 22px; height: 22px;
  background: var(--green-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
}

.why-visual {
  position: relative;
}

.why-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: url('https://shorelineerosioncontrol.com/wp-content/uploads/2026/03/why-us-crew.jpg') center/cover;
  border-radius: var(--radius);
}

.why-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--green-deep);
  color: white;
  padding: 24px 28px;
  border-radius: var(--radius);
  max-width: 220px;
}

.why-card-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}

.why-card-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  line-height: 1.4;
}

/* ===================== SERVICE AREA ===================== */
.area { background: var(--green-deep); }

.area-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
}

.area-county {
  background: var(--green-deep);
  padding: 44px 36px;
}

.area-county-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.area-cities {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.area-cities li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 8px;
}

.area-cities li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--green-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===================== FAQ ===================== */
.faq { background: var(--white); }

.faq-list {
  margin-top: 52px;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  transition: background 0.2s;
}

.faq-q:hover { background: var(--green-pale); }
.faq-q.open { background: var(--green-pale); color: var(--green-dark); }

.faq-icon {
  width: 28px; height: 28px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--green-mid);
  transition: transform 0.3s, background 0.2s;
}

.faq-q.open .faq-icon {
  transform: rotate(45deg);
  background: var(--green-mid);
  color: white;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a-inner {
  padding: 0 28px 24px;
  font-size: 0.975rem;
  font-weight: 300;
  color: var(--body-gray);
  line-height: 1.8;
}

/* ===================== CTA SECTION ===================== */
.cta-section {
  background:
    linear-gradient(135deg, rgba(13,46,26,0.93) 0%, rgba(26,74,46,0.88) 100%),
    url('https://shorelineerosioncontrol.com/wp-content/uploads/2026/03/hero-joba-dark.jpg') center/cover;
  padding: 96px 28px;
}

.cta-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cta-phone-block {
  margin-top: 28px;
  padding: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  display: inline-block;
}

.cta-phone-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}

.cta-phone-num a { color: inherit; }

.cta-phone-hours {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}

/* ===================== CONTACT FORM ===================== */
.contact-form {
  background: var(--white);
  padding: 40px 36px;
  border-radius: var(--radius);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-mid);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  appearance: none;
}

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

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--green-dark);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}

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

.form-note {
  font-size: 0.75rem;
  color: var(--body-gray);
  text-align: center;
  margin-top: 12px;
  font-weight: 300;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--dark);
  padding: 64px 28px 32px;
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 260px;
}

.footer-contact-item {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
  font-weight: 300;
}

.footer-contact-item strong {
  color: var(--gold-light);
  font-weight: 500;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-parent a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-parent a:hover { color: var(--gold-light); }

/* ===================== INTERIOR PAGES ===================== */
.page-hero {
  background:
    linear-gradient(160deg, rgba(13,46,26,0.88) 0%, rgba(26,74,46,0.82) 100%),
    url('https://shorelineerosioncontrol.com/wp-content/uploads/2026/03/page-banner.jpg') center/cover;
  padding: 160px 28px 80px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb a { color: rgba(255,255,255,0.45); }
.breadcrumb a:hover { color: var(--gold-light); }

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

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 52px;
}

.service-card {
  border: 1px solid var(--border);
  border-left: 4px solid var(--green-mid);
  padding: 36px 32px;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: all 0.25s ease;
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(13,46,26,0.1);
  border-left-color: var(--gold);
  transform: translateY(-2px);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--body-gray);
  line-height: 1.75;
  font-weight: 300;
}

.service-card .service-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  transition: color 0.2s;
}

.service-card .service-link:hover { color: var(--gold); }

/* Area page */
.area-intro { background: var(--white); }

.county-section { margin-bottom: 56px; }

.county-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.city-pill {
  background: var(--green-pale);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 40px;
  font-size: 0.875rem;
  color: var(--green-dark);
  font-weight: 400;
  text-align: center;
  transition: all 0.2s;
}

.city-pill:hover {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}

/* Contact page */
.contact-page { background: var(--white); }

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info-block { display: flex; flex-direction: column; gap: 28px; }

.contact-card {
  background: var(--green-pale);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: var(--radius);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--body-gray);
  line-height: 1.65;
  font-weight: 300;
}

.contact-card a { color: var(--green-mid); font-weight: 500; }
.contact-card a:hover { color: var(--gold); }

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

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: url('https://shorelineerosioncontrol.com/wp-content/uploads/2026/03/action-crew-pumping.jpg') center/cover;
  border-radius: var(--radius);
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.post-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s;
}

.post-card:hover {
  box-shadow: 0 12px 40px rgba(13,46,26,0.1);
  transform: translateY(-2px);
}

.post-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--green-pale);
  overflow: hidden;
}

.post-thumb img { width: 100%; height: 100%; object-fit: cover; }

.post-body { padding: 24px; }

.post-meta {
  font-size: 0.72rem;
  color: var(--body-gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.post-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.post-body p {
  font-size: 0.875rem;
  color: var(--body-gray);
  line-height: 1.65;
  font-weight: 300;
}

.post-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
}

/* Single post */
.single-post { background: var(--white); }
.single-post-inner { max-width: 740px; margin: 0 auto; }
.post-content h2 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--dark); margin: 36px 0 14px; }
.post-content p { font-size: 1rem; color: var(--body-gray); line-height: 1.8; margin-bottom: 20px; font-weight: 300; }
.post-content ul { margin: 16px 0 20px 24px; display: flex; flex-direction: column; gap: 8px; }
.post-content ul li { font-size: 0.975rem; color: var(--body-gray); line-height: 1.65; font-weight: 300; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 960px) {
  .nav-menu, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .problem-grid, .why-grid, .contact-page-grid, .about-grid, .cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .steps-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .why-card { position: relative; bottom: auto; left: auto; margin-top: 24px; max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --max-w: 100%; }
  .section-pad { padding: 64px 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .serve-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 110px 20px 80px; }
  .hero h1 { font-size: 2.6rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===================== ANIMATIONS ===================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
