/* ============================================================
   TURF THERAPY — Shared Stylesheet
   turf-therapy.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Hanken+Grotesk:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

/* ── TOKENS ── */
:root {
  --deep-turf:   #16271C;
  --fresh-blade: #3FA45C;
  --soft-sage:   #BFCDB0;
  --bone:        #EEEBDD;
  --highlighter: #D9F25B;
  --bone-dark:   #E3DFCE;
  --muted:       #6B7A6E;
  --ink:         #1C2B20;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow:      0 4px 20px rgba(22,39,28,0.10);
  --shadow-hover:0 8px 32px rgba(22,39,28,0.16);
}

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

body {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  background: var(--bone);
  color: var(--deep-turf);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
}

a { color: inherit; }

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

/* ── TOP BAR ── */
.top-bar {
  background: var(--fresh-blade);
  padding: 9px 24px;
  text-align: center;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bone);
}
.top-bar a { color: var(--bone); font-weight: 700; text-decoration: none; }
.top-bar a:hover { text-decoration: underline; }

/* ── NAV ── */
nav {
  background: var(--deep-turf);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bone);
}
.nav-logo-text span { color: var(--fresh-blade); }
.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
  align-items: center;
}
.nav-links li a {
  font-family: 'Hanken Grotesk', sans-serif;
  color: rgba(238,235,221,0.75);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  display: block;
}
.nav-links li a:hover, .nav-links li a.active {
  color: var(--bone);
  background: rgba(255,255,255,0.08);
}
.nav-phone { color: rgba(238,235,221,0.9) !important; font-weight: 600 !important; }
.nav-cta {
  background: var(--fresh-blade) !important;
  color: var(--bone) !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: #4db86a !important; opacity: 1 !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bone);
  border-radius: 2px;
}

/* ── FOOTER ── */
footer {
  background: var(--deep-turf);
  color: rgba(238,235,221,0.65);
  padding: 52px 24px 28px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-logo { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.footer-brand-name {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bone);
}
.footer-brand p { font-size: 0.87rem; line-height: 1.65; max-width: 270px; margin-bottom: 14px; }
.footer-phone {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  color: var(--fresh-blade) !important;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.97rem;
}
.footer-col-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(238,235,221,0.4);
  display: block;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  color: rgba(238,235,221,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--bone); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.45;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--fresh-blade);
  color: var(--bone);
  padding: 15px 34px;
  border-radius: var(--radius);
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #4db86a; transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--deep-turf);
  padding: 14px 34px;
  border-radius: var(--radius);
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(22,39,28,0.35);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--deep-turf); background: rgba(22,39,28,0.06); }

.btn-bone {
  display: inline-block;
  background: var(--bone);
  color: var(--deep-turf);
  padding: 15px 36px;
  border-radius: var(--radius);
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
}
.btn-bone:hover { opacity: 0.88; }

/* ── SECTION UTILITIES ── */
.section-inner { max-width: 1100px; margin: 0 auto; }
.mono {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fresh-blade);
  display: block;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.section-sub { font-size: 1rem; color: var(--muted); max-width: 520px; }

/* ── PAGE HEADER (dark) ── */
.page-header {
  background: var(--deep-turf);
  padding: 72px 24px 64px;
}
.page-header .mono { color: var(--fresh-blade); display: block; margin-bottom: 16px; }
.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--bone);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.page-header h1 em { color: var(--fresh-blade); font-style: normal; }
.page-header p {
  font-size: 1.05rem;
  color: rgba(238,235,221,0.72);
  max-width: 560px;
  line-height: 1.65;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--bone-dark);
  border-bottom: 1px solid rgba(22,39,28,0.12);
  padding: 16px 24px;
}
.trust-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--deep-turf);
  opacity: 0.75;
}

/* ── PHOTO GRID ── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.photo-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ── REVIEW CARD ── */
.review-card {
  background: #F7F5EE;
  border: 1px solid rgba(22,39,28,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.review-stars { color: #F5A623; font-size: 1.1rem; margin-bottom: 10px; }
.review-text { font-size: 0.97rem; line-height: 1.65; color: var(--ink); margin-bottom: 14px; }
.review-author {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.review-author a { color: var(--fresh-blade); text-decoration: none; }
.review-author a:hover { text-decoration: underline; }

/* ── GUARANTEE BOX ── */
.guarantee-box {
  background: var(--fresh-blade);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.guarantee-icon { font-size: 2.6rem; flex-shrink: 0; }
.guarantee-text { flex: 1; min-width: 200px; }
.guarantee-text h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--bone);
  margin-bottom: 5px;
}
.guarantee-text p { font-size: 0.93rem; color: rgba(238,235,221,0.82); }

/* ── CTA SECTION (dark) ── */
.cta-section {
  background: var(--deep-turf);
  padding: 80px 24px;
  text-align: center;
}
.cta-section .mono { color: var(--fresh-blade); display: block; margin-bottom: 14px; }
.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--bone);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.cta-section p { font-size: 1.05rem; color: rgba(238,235,221,0.68); max-width: 460px; margin: 0 auto 32px; }

/* ── SERVICE AREA STRIP ── */
.area-strip {
  background: rgba(22,39,28,0.04);
  border-top: 1px solid rgba(22,39,28,0.1);
  padding: 32px 24px;
  text-align: center;
}
.area-strip .mono { color: var(--muted); display: block; margin-bottom: 14px; }
.towns { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.town-tag {
  background: var(--bone-dark);
  border: 1px solid rgba(22,39,28,0.12);
  color: var(--deep-turf);
  padding: 5px 13px;
  border-radius: 20px;
  font-size: 0.84rem;
  font-weight: 500;
  text-decoration: none;
}
.town-tag:hover { background: var(--bone); border-color: var(--fresh-blade); }

/* ── MOBILE STICKY BAR ── */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--deep-turf);
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.mobile-sticky a {
  flex: 1;
  text-align: center;
  padding: 13px;
  border-radius: var(--radius);
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}
.sticky-call { background: rgba(255,255,255,0.12); color: var(--bone); }
.sticky-price { background: var(--fresh-blade); color: var(--bone); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--deep-turf);
    padding: 12px 16px 20px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  }
  .mobile-sticky { display: flex; }
  body { padding-bottom: 68px; }
  .guarantee-box { padding: 28px 24px; }
}

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