/* ==========================================================================
   CRESCENT TURF CO. — Master Stylesheet
   Brand: bayou green + warm cream + iron + brass accents
   Typography: Playfair Display (serif/display) + Inter (sans/body)
   ========================================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand palette */
  --bayou: #1f3d2b;          /* deep bayou green - primary */
  --bayou-dark: #142a1d;     /* darker accent */
  --bayou-light: #2d5a3f;    /* lighter green */
  --moss: #4a7355;           /* mid-tone */
  --cream: #f5f0e6;          /* warm off-white background */
  --cream-dark: #ebe3d3;
  --paper: #fbf8f1;          /* lightest cream */
  --iron: #2a2a2a;           /* near-black text */
  --slate: #4a4a4a;          /* secondary text */
  --mist: #8a8580;           /* muted text */
  --brass: #b8945a;          /* warm gold accent */
  --brass-dark: #927045;
  --crimson: #a63a2a;        /* error/CTA accent */
  --line: rgba(31, 61, 43, 0.12);
  --line-strong: rgba(31, 61, 43, 0.25);

  /* Type */
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Sizing & spacing */
  --container: 1240px;
  --container-narrow: 920px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 2px 8px rgba(20, 42, 29, 0.08);
  --shadow-md: 0 8px 24px rgba(20, 42, 29, 0.12);
  --shadow-lg: 0 24px 60px rgba(20, 42, 29, 0.18);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--iron);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--iron);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 500; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 500; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }
h5 { font-size: 1.05rem; font-weight: 600; font-family: var(--sans); letter-spacing: 0.04em; text-transform: uppercase; }

p { margin-bottom: 1em; color: var(--slate); }
p.lead { font-size: 1.2rem; line-height: 1.6; color: var(--iron); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1rem;
  display: inline-block;
}

.eyebrow.on-dark { color: var(--brass); }

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
section.tight { padding: clamp(48px, 6vw, 80px) 0; }
section.cream { background: var(--cream); }
section.dark { background: var(--bayou); color: var(--cream); }
section.dark h1, section.dark h2, section.dark h3 { color: var(--cream); }
section.dark p { color: rgba(245, 240, 230, 0.8); }

.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--bayou);
  color: var(--cream);
  border-color: var(--bayou);
}
.btn-primary:hover {
  background: var(--bayou-dark);
  border-color: var(--bayou-dark);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--bayou);
  border-color: var(--bayou);
}
.btn-secondary:hover {
  background: var(--bayou);
  color: var(--cream);
}

.btn-light {
  background: var(--cream);
  color: var(--bayou);
  border-color: var(--cream);
}
.btn-light:hover {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--bayou);
  transform: translateY(-2px);
}

.btn-brass {
  background: var(--brass);
  color: var(--bayou-dark);
  border-color: var(--brass);
}
.btn-brass:hover {
  background: var(--brass-dark);
  border-color: var(--brass-dark);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 240, 230, 0.4);
}
.btn-ghost-light:hover {
  border-color: var(--cream);
  background: rgba(245, 240, 230, 0.1);
}

.btn-arrow::after {
  content: '→';
  font-family: var(--sans);
  display: inline-block;
  transition: transform 0.25s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 241, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-top {
  background: var(--bayou-dark);
  color: var(--cream);
  font-size: 0.82rem;
  padding: 8px 0;
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.header-top a { color: var(--cream); }
.header-top a:hover { color: var(--brass); }
.header-top-right { display: flex; gap: 24px; align-items: center; }

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--bayou-dark);
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--bayou); }
.brand-mark {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 38px; height: 38px; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text small {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 4px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links li { position: relative; }
.nav-links a {
  display: block;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--iron);
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--bayou); }
.nav-links a.active { color: var(--bayou); font-weight: 600; }

.dropdown { position: relative; }
.dropdown-toggle::after {
  content: '▾';
  margin-left: 4px;
  font-size: 0.7rem;
  opacity: 0.6;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s var(--ease);
  list-style: none;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
}
.dropdown-menu a:hover {
  background: var(--cream);
  color: var(--bayou);
}

.nav-cta { display: flex; gap: 12px; align-items: center; }

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 40px; height: 40px;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--iron);
  margin: 5px 0;
  transition: all 0.25s var(--ease);
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-cta .btn { padding: 12px 20px; font-size: 0.85rem; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    padding: 16px 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open a { padding: 14px 16px; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding: 0 0 0 16px; border: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--bayou-dark);
  overflow: hidden;
  color: var(--cream);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.svg');
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 31, 21, 0.2) 0%, rgba(13, 31, 21, 0.55) 70%, rgba(13, 31, 21, 0.85) 100%);
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-inner { max-width: 800px; }
.hero h1 {
  color: var(--cream);
  margin-bottom: 24px;
  font-weight: 400;
}
.hero h1 em {
  font-style: italic;
  color: var(--brass);
  font-weight: 400;
}
.hero p.lead {
  color: rgba(245, 240, 230, 0.85);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  max-width: 620px;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 240, 230, 0.2);
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--brass);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(245, 240, 230, 0.75);
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--cream);
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.trust-bar .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  text-align: center;
}
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--slate); }
.trust-item strong { color: var(--bayou); font-weight: 700; }
.trust-icon {
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
}

/* ---------- Section heads ---------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.1rem; color: var(--slate); }

/* ---------- Service cards ---------- */
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--bayou-light);
}
.service-card-img {
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20, 42, 29, 0.4));
}
.service-card-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--slate); margin-bottom: 20px; flex: 1; }
.service-card .btn-arrow {
  font-size: 0.85rem;
  padding: 10px 0;
  color: var(--bayou);
  align-self: flex-start;
  background: transparent;
  border: none;
  letter-spacing: 0.06em;
}
.service-card .btn-arrow:hover { background: transparent; color: var(--bayou-light); transform: none; box-shadow: none; }

/* ---------- Process steps ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: var(--line-strong);
  z-index: 0;
}
@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-grid::before { display: none; }
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--bayou);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 4px solid var(--paper);
  box-shadow: 0 0 0 1px var(--line-strong);
}
.process-step h3 { margin-bottom: 12px; }

/* ---------- Why-choose grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 760px) { .feature-grid { grid-template-columns: 1fr; } }

.feature {
  padding: 40px;
  background: var(--paper);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bayou);
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature h4 { margin-bottom: 8px; font-size: 1.15rem; }
.feature p { font-size: 0.95rem; margin: 0; }

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--bayou);
  color: var(--cream);
  padding: clamp(64px, 9vw, 120px) 0;
}
.testimonials h2 { color: var(--cream); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial {
  background: rgba(245, 240, 230, 0.06);
  border: 1px solid rgba(245, 240, 230, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.testimonial-stars { color: var(--brass); margin-bottom: 16px; letter-spacing: 4px; }
.testimonial-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--cream);
  margin-bottom: 20px;
}
.testimonial-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
}
.testimonial-loc {
  font-size: 0.8rem;
  color: rgba(245, 240, 230, 0.6);
  letter-spacing: 0.04em;
}

/* ---------- Gallery / Photo strips ---------- */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
}
@media (max-width: 900px) { .gallery-strip { grid-template-columns: repeat(2, 1fr); } }

.gallery-item {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item.tall { aspect-ratio: 1/1.4; }
.gallery-item.wide { aspect-ratio: 1.4/1; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 760px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--bayou-dark);
  color: var(--cream);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, var(--bayou-light) 0%, transparent 60%);
  opacity: 0.5;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--cream); margin-bottom: 16px; }
.cta-band p { color: rgba(245, 240, 230, 0.85); font-size: 1.15rem; margin-bottom: 32px; }
.cta-band-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Form ---------- */
.estimate-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="number"],
select, textarea {
  width: 100%;
  padding: 13px 14px;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--iron);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  transition: all 0.2s var(--ease);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--bayou);
  box-shadow: 0 0 0 3px rgba(31, 61, 43, 0.1);
}
textarea { resize: vertical; min-height: 110px; }

.checkbox-group { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.checkbox-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.checkbox-pill:hover { border-color: var(--bayou); }
.checkbox-pill input { margin: 0; accent-color: var(--bayou); }
.checkbox-pill input:checked + span { color: var(--bayou); font-weight: 600; }

.form-success {
  background: var(--bayou);
  color: var(--cream);
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
}
.form-success h3 { color: var(--cream); margin-bottom: 8px; }

/* ---------- Two-column layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }
.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }

.two-col-img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bayou-dark);
  color: rgba(245, 240, 230, 0.75);
  padding: 80px 0 30px;
  font-size: 0.92rem;
}
.site-footer h5 {
  color: var(--brass);
  margin-bottom: 18px;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245, 240, 230, 0.12);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.site-footer a { color: rgba(245, 240, 230, 0.75); }
.site-footer a:hover { color: var(--brass); }

.footer-list { list-style: none; }
.footer-list li { margin-bottom: 8px; }

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; color: var(--cream); font-family: var(--serif); font-size: 1.3rem; }
.footer-brand .brand-mark svg { fill: var(--cream); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
}
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px; height: 36px;
  border: 1px solid rgba(245, 240, 230, 0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
}
.social-links a:hover { background: var(--brass); color: var(--bayou-dark); border-color: var(--brass); }

/* ---------- Subpage hero (smaller) ---------- */
.page-hero {
  background: var(--bayou);
  color: var(--cream);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at top right, var(--bayou-light), transparent 50%);
  opacity: 0.6;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .breadcrumb { color: rgba(245, 240, 230, 0.6); font-size: 0.85rem; margin-bottom: 16px; }
.page-hero .breadcrumb a { color: rgba(245, 240, 230, 0.85); }
.page-hero h1 { color: var(--cream); margin-bottom: 16px; max-width: 800px; }
.page-hero p { color: rgba(245, 240, 230, 0.85); font-size: 1.15rem; max-width: 700px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line-strong);
  padding: 24px 0;
}
.faq-item:first-child { border-top: 1px solid var(--line-strong); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--iron);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
}
.faq-q::after {
  content: '+';
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--bayou);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
}
.faq-item.open .faq-a { max-height: 800px; padding-top: 16px; }
.faq-a p { color: var(--slate); }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s var(--ease);
  position: relative;
}
.pricing-card.featured {
  background: var(--bayou);
  color: var(--cream);
  border-color: var(--bayou);
  transform: scale(1.04);
}
.pricing-card.featured h3 { color: var(--cream); }
.pricing-card.featured .price { color: var(--brass); }
.pricing-card.featured ul li { color: rgba(245, 240, 230, 0.85); border-color: rgba(245, 240, 230, 0.15); }
.pricing-card .featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brass);
  color: var(--bayou-dark);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pricing-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.price {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 500;
  color: var(--bayou);
  line-height: 1;
  margin: 20px 0 4px;
}
.price small { font-size: 1rem; color: var(--mist); font-weight: 400; }
.price-sub { font-size: 0.85rem; color: var(--mist); margin-bottom: 28px; }
.pricing-card ul { list-style: none; text-align: left; margin: 24px 0 32px; }
.pricing-card ul li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.pricing-card ul li::before {
  content: '✓ ';
  color: var(--brass);
  font-weight: 700;
  margin-right: 8px;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 48px; }
.muted { color: var(--mist); }

/* Article body for blog/long content */
.article-body {
  max-width: 720px;
  margin: 0 auto;
}
.article-body p { font-size: 1.08rem; line-height: 1.75; color: var(--iron); margin-bottom: 1.4em; }
.article-body h2 { margin-top: 2.2em; margin-bottom: 0.6em; font-size: 1.9rem; }
.article-body h3 { margin-top: 1.8em; margin-bottom: 0.5em; font-size: 1.4rem; }
.article-body ul, .article-body ol { padding-left: 1.5em; margin-bottom: 1.4em; }
.article-body li { margin-bottom: 0.5em; line-height: 1.7; }
.article-body strong { color: var(--bayou); }


/* ==========================================================================
   CRESCENT TURF V2 ADDITIONS
   Append to existing style.css
   ========================================================================== */

/* ---------- Refined hero (single CTA pattern) ---------- */
.hero-cta-primary-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.hero-cta-tel {
  font-size: 0.92rem;
  color: rgba(245, 240, 230, 0.75);
  letter-spacing: 0.02em;
}
.hero-cta-tel a {
  color: var(--cream);
  font-weight: 600;
  border-bottom: 1px solid rgba(245, 240, 230, 0.3);
  padding-bottom: 1px;
  transition: border-color 0.2s var(--ease);
}
.hero-cta-tel a:hover {
  color: var(--brass);
  border-bottom-color: var(--brass);
}

/* ---------- Local proof strip (replaces generic trust bar) ---------- */
.local-proof {
  background: var(--cream);
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.local-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
}
.local-proof-item {
  padding: 8px 24px;
  border-right: 1px solid var(--line);
}
.local-proof-item:last-child {
  border-right: none;
}
.local-proof-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--bayou);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.local-proof-label {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.45;
}
@media (max-width: 760px) {
  .local-proof-grid { grid-template-columns: 1fr; gap: 24px; }
  .local-proof-item { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 24px; }
  .local-proof-item:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ---------- The Problem section (the big new one) ---------- */
.problem-section {
  background: var(--paper);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}
.problem-lead {
  max-width: 780px;
  margin: 0 auto 64px;
  text-align: center;
}
.problem-lead h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.problem-lead h2 em {
  font-style: italic;
  color: var(--bayou-light);
}
.problem-lead p {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--iron);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 64px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
}
.problem-item h4 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--iron);
  letter-spacing: -0.01em;
}
.problem-item h4 .num {
  color: var(--brass);
  font-size: 0.85rem;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.18em;
  display: block;
  margin-bottom: 6px;
}
.problem-item p {
  color: var(--slate);
  line-height: 1.65;
  font-size: 1rem;
  margin: 0;
}

/* ---------- Before/After section ---------- */
.before-after-section {
  background: var(--bayou);
  color: var(--cream);
  padding: clamp(80px, 10vw, 140px) 0;
}
.before-after-section .section-head h2 { color: var(--cream); }
.before-after-section .section-head p { color: rgba(245, 240, 230, 0.8); }
.before-after-section .eyebrow { color: var(--brass); }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 900px) { .ba-grid { grid-template-columns: 1fr; } }

.ba-card {
  background: rgba(245, 240, 230, 0.04);
  border: 1px solid rgba(245, 240, 230, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.ba-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--bayou-dark);
  position: relative;
}
.ba-img::after {
  content: attr(data-label);
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--bayou-dark);
  color: var(--brass);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 5px 10px;
  border-radius: 3px;
  text-transform: uppercase;
}
.ba-img.before { border-right: 1px solid rgba(245, 240, 230, 0.15); }
.ba-caption {
  padding: 24px 28px 28px;
}
.ba-caption-loc {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 6px;
  font-style: italic;
}
.ba-caption-meta {
  font-size: 0.85rem;
  color: rgba(245, 240, 230, 0.65);
  letter-spacing: 0.04em;
}
.ba-caption-meta span { color: var(--brass); }

/* ---------- Simplified services (3-card layout) ---------- */
.services-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) {
  .services-three { grid-template-columns: 1fr; }
}
.service-card-large {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
}
.service-card-large:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--bayou-light);
}
.service-card-large .service-card-img {
  aspect-ratio: 5/4;
}
.service-card-large .service-card-body {
  padding: 32px;
}
.service-card-large h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.service-card-large p {
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-card-large .sub-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.service-card-large .sub-services span {
  font-size: 0.78rem;
  color: var(--mist);
  background: var(--cream);
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* ---------- Pricing teaser on homepage ---------- */
.pricing-teaser {
  background: var(--cream);
  padding: clamp(72px, 9vw, 120px) 0;
  border-top: 1px solid var(--line);
}
.pricing-teaser-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.pricing-teaser h2 {
  margin-bottom: 24px;
}
.pricing-teaser-range {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--bayou);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 32px 0 20px;
  line-height: 1.1;
}
.pricing-teaser-range small {
  display: block;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--mist);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-top: 10px;
  text-transform: none;
}
.pricing-teaser p {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--iron);
  margin-bottom: 20px;
}
.pricing-teaser .financing-note {
  font-size: 0.95rem;
  color: var(--slate);
  font-style: italic;
  margin-bottom: 32px;
}

/* ---------- Drainage signature section ---------- */
.drainage-band {
  background: var(--paper);
  padding: clamp(56px, 7vw, 96px) 0;
  border-top: 1px solid var(--line);
}
.drainage-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .drainage-grid { grid-template-columns: 1fr; gap: 40px; } }
.drainage-grid h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
  letter-spacing: -0.015em;
}
.drainage-grid h2 em {
  font-style: italic;
  color: var(--bayou-light);
}
.drainage-grid p {
  color: var(--iron);
  line-height: 1.65;
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.drainage-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  background-color: var(--cream-dark);
  box-shadow: var(--shadow-md);
}

/* ---------- Sticky mobile CTA bar ---------- */
.mobile-cta-bar {
  display: none;
}
@media (max-width: 760px) {
  .mobile-cta-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--paper);
    border-top: 1px solid var(--line-strong);
    box-shadow: 0 -8px 24px rgba(20, 42, 29, 0.1);
    z-index: 90;
    padding: 12px;
    gap: 10px;
  }
  .mobile-cta-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: var(--radius);
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.2s var(--ease);
  }
  .mobile-cta-bar .mcb-primary {
    background: var(--bayou);
    color: var(--cream);
    border: 2px solid var(--bayou);
  }
  .mobile-cta-bar .mcb-primary:hover {
    background: var(--bayou-dark);
    color: var(--cream);
  }
  .mobile-cta-bar .mcb-secondary {
    background: transparent;
    color: var(--bayou);
    border: 2px solid var(--bayou);
  }
  .mobile-cta-bar .mcb-secondary:hover {
    background: var(--bayou);
    color: var(--cream);
  }
  /* Push body up so footer isn't hidden under bar */
  body {
    padding-bottom: 74px;
  }
}

/* ---------- Founder note (small section on About) ---------- */
.founder-note {
  background: var(--cream);
  padding: clamp(64px, 8vw, 112px) 0;
}
.founder-note-inner {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 760px) {
  .founder-note-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .founder-photo { margin: 0 auto; }
}
.founder-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: var(--bayou);
  box-shadow: var(--shadow-md);
}
.founder-note h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-bottom: 16px;
  font-weight: 500;
}
.founder-note p {
  color: var(--iron);
  line-height: 1.7;
  font-size: 1.02rem;
  margin-bottom: 14px;
}
.founder-signature {
  font-family: var(--serif);
  font-style: italic;
  color: var(--bayou);
  font-size: 1.1rem;
  margin-top: 8px;
}

/* ---------- Refined hero (more breathing room) ---------- */
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
}
@media (max-width: 760px) {
  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }
  .hero p.lead {
    font-size: 1rem;
  }
  .hero-stats {
    margin-top: 40px;
    padding-top: 24px;
    gap: 28px;
  }
  .hero-stat-num { font-size: 1.9rem; }
  .hero-stat-label { font-size: 0.78rem; }
}

/* ---------- Better section transitions ---------- */
section + section {
  border-top: none;
}

/* Premium tweak: slightly more whitespace between sections */
section {
  padding: clamp(80px, 10vw, 140px) 0;
}
section.tight { padding: clamp(56px, 7vw, 96px) 0; }

/* Final CTA refinement */
.cta-band {
  padding: clamp(80px, 10vw, 120px) 0;
}
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

/* ---------- Reduced contact form (4 fields) ---------- */
.estimate-form-compact {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-trust-text {
  font-size: 0.88rem;
  color: var(--slate);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}
.form-trust-text strong { color: var(--bayou); font-weight: 600; }

/* ---------- Hide the legacy sections we removed ---------- */
.legacy-hide { display: none !important; }

/* ---------- Mobile fixes ---------- */
@media (max-width: 760px) {
  /* Hero stat strip: 3-up grid, smaller, balanced */
  .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 36px;
    padding-top: 24px;
  }
  .hero-stats > div {
    text-align: center;
    padding: 0 4px;
  }
  .hero-stat-num {
    font-size: 1.4rem;
    line-height: 1.1;
    margin-bottom: 4px;
  }
  .hero-stat-label {
    font-size: 0.7rem;
    line-height: 1.3;
  }

  /* Nav: hide the desktop "Book a site visit" CTA on mobile, rely on hamburger + sticky bar */
  .nav-cta .btn-primary { display: none; }
  .nav-cta { gap: 0; }
  .menu-toggle { display: flex; }

  /* Tighten header top */
  .header-top {
    font-size: 0.78rem;
    padding: 8px 0;
  }
  .header-top .container {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
  .header-top-right { gap: 16px; justify-content: center; }
}
