/* Williamson Turf Co. — Service Area shared styles */
:root {
  --bg: #07140e;
  --bg-2: #0b1d15;
  --surface: #102a1f;
  --surface-2: #163528;
  --border: rgba(212, 175, 55, 0.18);
  --border-strong: rgba(212, 175, 55, 0.35);
  --emerald: #2fb37a;
  --emerald-2: #4ed29b;
  --gold: #d4af37;
  --gold-2: #e8c870;
  --text: #f3efe3;
  --muted: #b9c4bd;
  --soft: #8b9a92;
  --max: 1180px;
  --radius: 14px;
  --shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.6);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; letter-spacing: -0.01em; line-height: 1.15; margin: 0 0 0.6em; }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; color: var(--muted); }
a { color: var(--gold-2); text-decoration: none; }
a:hover { color: var(--gold); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 20, 14, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: var(--max); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--text); font-weight: 600; }
.brand-mark { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--emerald), var(--gold)); display: inline-block; position: relative; }
.brand-mark::after { content: ""; position: absolute; inset: 5px; border-radius: 50%; background: var(--bg); }
.brand-mark::before { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 12px; transform: translate(-50%, -50%); border-radius: 50%; background: linear-gradient(135deg, var(--emerald-2), var(--gold-2)); z-index: 1; }
.nav-links { display: none; gap: 28px; align-items: center; font-size: 0.95rem; }
.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border: 1px solid var(--border-strong); border-radius: 999px; color: var(--gold-2); font-weight: 500; font-size: 0.95rem; }
.nav-cta:hover { background: rgba(212, 175, 55, 0.08); color: var(--gold); }
@media (min-width: 860px) { .nav-links { display: flex; } }

/* Hero */
.hero {
  position: relative;
  padding: 70px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(47, 179, 122, 0.18), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(212, 175, 55, 0.08), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 56px; } }
.hero-content { max-width: 560px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-2);
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.04);
  margin-bottom: 24px;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); }
.hero h1 { color: var(--text); margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--gold-2); font-weight: 500; }
.hero p.lede { font-size: 1.1rem; color: var(--muted); max-width: 540px; margin-bottom: 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; color: var(--soft); font-size: 0.9rem; margin-top: 24px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 18px; height: 18px; color: var(--emerald-2); }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 28px; border-radius: 999px; font-weight: 600; font-size: 1rem; cursor: pointer; border: 1px solid transparent; transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease; text-decoration: none; }
.btn-primary { background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-2) 100%); color: #06140d; border-color: transparent; box-shadow: 0 12px 30px -10px rgba(47, 179, 122, 0.55); }
.btn-primary:hover { transform: translateY(-1px); color: #06140d; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { background: rgba(212, 175, 55, 0.08); color: var(--gold-2); }

/* Form */
.form-wrap {
  padding: 36px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
  position: relative;
}
.form-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.4) 0%, transparent 50%, rgba(47, 179, 122, 0.3) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
@media (max-width: 600px) { .form-wrap { padding: 26px 20px; } }
.form-wrap h3 { color: var(--text); margin-bottom: 6px; font-size: 1.4rem; }
.form-wrap > p { margin-bottom: 22px; font-size: 0.94rem; }
form .row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
@media (min-width: 600px) { form .row.two { grid-template-columns: 1fr 1fr; } }
label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--muted); margin-bottom: 6px; }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  padding: 13px 14px;
  background: rgba(7, 20, 14, 0.6);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--emerald-2);
  box-shadow: 0 0 0 3px rgba(47, 179, 122, 0.18);
}
textarea { resize: vertical; min-height: 110px; }
select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold-2) 50%), linear-gradient(135deg, var(--gold-2) 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 14px) center; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
.form-actions { margin-top: 8px; }
.form-actions .btn-primary { width: 100%; justify-content: center; padding: 18px; }
.privacy-note { font-size: 0.82rem; color: var(--soft); margin-top: 14px; text-align: center; }
.hp { position: absolute; left: -9999px; }
.thank-you { text-align: center; padding: 40px 20px; display: none; }
.thank-you.active { display: block; }
.thank-you .check { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--emerald), var(--emerald-2)); display: grid; place-items: center; margin: 0 auto 20px; color: #06140d; }
.thank-you .check svg { width: 36px; height: 36px; }
.thank-you h3 { color: var(--text); font-size: 1.8rem; margin-bottom: 12px; }
.thank-you p { font-size: 1.05rem; max-width: 460px; margin: 0 auto; }

/* Section base */
section { padding: 80px 0; position: relative; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-header .eyebrow { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; }

/* Local intro */
.local-intro { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.local-intro .container { max-width: 880px; }
.local-intro h2 { margin-bottom: 18px; }
.local-intro p { font-size: 1.05rem; }
.local-intro .lead { font-size: 1.15rem; color: var(--text); margin-bottom: 24px; }

/* Neighborhood grid */
.neighborhoods { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 36px; }
@media (min-width: 640px) { .neighborhoods { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .neighborhoods { grid-template-columns: repeat(3, 1fr); } }
.neighborhood {
  padding: 22px 22px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.neighborhood h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--text); }
.neighborhood p { font-size: 0.93rem; margin: 0; }

/* Services compact */
.service-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 700px) { .service-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .service-grid { grid-template-columns: repeat(4, 1fr); } }
.service { padding: 28px 24px; border-radius: var(--radius); background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%); border: 1px solid var(--border); }
.service-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, rgba(47, 179, 122, 0.18), rgba(212, 175, 55, 0.12)); display: grid; place-items: center; margin-bottom: 18px; color: var(--gold-2); }
.service-icon svg { width: 24px; height: 24px; }
.service h3 { color: var(--text); margin-bottom: 8px; font-size: 1.15rem; }
.service p { font-size: 0.94rem; margin: 0; }

/* Why us condensed */
.why-list { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 900px; margin: 0 auto; }
@media (min-width: 760px) { .why-list { grid-template-columns: 1fr 1fr; } }
.why-item { display: flex; gap: 18px; padding: 22px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.why-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold-2); width: 38px; flex-shrink: 0; }
.why-item h3 { margin-bottom: 4px; color: var(--text); font-size: 1.05rem; }
.why-item p { margin: 0; font-size: 0.94rem; }

/* Nearby areas */
#nearby { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.areas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 900px; margin: 0 auto; }
@media (min-width: 700px) { .areas-grid { grid-template-columns: repeat(4, 1fr); } }
.area-chip { display: block; padding: 18px 18px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); text-align: center; font-weight: 500; color: var(--text); text-decoration: none; transition: border-color 0.2s ease, transform 0.2s ease; }
.area-chip:hover { border-color: var(--gold); transform: translateY(-2px); color: var(--text); }
.area-chip strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--gold-2); margin-bottom: 2px; }
.area-chip small { display: block; color: var(--soft); font-size: 0.8rem; font-weight: 400; }

/* FAQ */
#faq { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq-list { max-width: 820px; margin: 0 auto; }
details { border-bottom: 1px solid var(--border); padding: 22px 4px; }
details:first-child { border-top: 1px solid var(--border); }
summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--text); gap: 20px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--gold-2); font-size: 1.6rem; font-family: 'Inter', sans-serif; font-weight: 300; transition: transform 0.2s ease; }
details[open] summary::after { content: "−"; }
details p { padding-top: 14px; margin: 0; }

/* CTA Banner */
.cta-banner { padding: 70px 0; }
.cta-card {
  padding: 50px 48px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border-strong);
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
}
@media (min-width: 800px) { .cta-card { grid-template-columns: 1.2fr 0.8fr; padding: 56px; } }
@media (max-width: 600px) { .cta-card { padding: 36px 28px; } }
.cta-card h2 { margin-bottom: 12px; }
.cta-card p { margin: 0; font-size: 1.05rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-start; }
@media (min-width: 800px) { .cta-actions { justify-content: flex-end; } }

/* Areas hub specific */
.hub-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 720px) { .hub-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .hub-grid { grid-template-columns: repeat(3, 1fr); } }
.hub-card { display: block; padding: 28px 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); text-decoration: none; color: inherit; transition: border-color 0.2s ease, transform 0.2s ease; }
.hub-card:hover { border-color: var(--gold); transform: translateY(-2px); color: inherit; }
.hub-card .tag { display: inline-block; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 12px; }
.hub-card h2 { font-size: 1.35rem; color: var(--text); margin-bottom: 8px; }
.hub-card p { font-size: 0.94rem; margin: 0 0 14px; }
.hub-card .read-more { font-size: 0.85rem; color: var(--gold-2); font-weight: 600; letter-spacing: 0.04em; }

/* Footer */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 50px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: start; margin-bottom: 30px; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-grid h4 { font-family: 'Inter', sans-serif; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-2); margin: 0 0 14px; font-weight: 600; }
.footer-grid p, .footer-grid a { color: var(--muted); font-size: 0.95rem; display: block; margin-bottom: 8px; }
.footer-bar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--soft); font-size: 0.85rem; }

/* Service page additions */
.features { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 36px; }
@media (min-width: 700px) { .features { grid-template-columns: 1fr 1fr; } }
.feature { padding: 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.feature h3 { color: var(--text); font-size: 1.1rem; margin-bottom: 6px; }
.feature p { margin: 0; font-size: 0.95rem; }

.process { display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 1100px; margin: 0 auto; }
@media (min-width: 800px) { .process { grid-template-columns: repeat(4, 1fr); } }
.step { padding: 28px 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.step-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--gold); opacity: 0.4; line-height: 1; margin-bottom: 12px; }
.step h3 { color: var(--text); font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: 0.95rem; margin: 0; }

.spec-row { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 900px; margin: 32px auto 0; }
@media (min-width: 700px) { .spec-row { grid-template-columns: 1fr 1fr; } }
.spec { padding: 20px 22px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--border); }
.spec h4 { font-family: 'Inter', sans-serif; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-2); margin: 0 0 6px; font-weight: 600; }
.spec p { margin: 0; color: var(--text); font-size: 1.05rem; }
