/* Live Oak Lawn Care — shared styles for service & area pages */
:root {
  --green-deep:#1c3120; --green-dark:#2c4a2e; --green-mid:#3d6340;
  --gold:#b8963e; --gold-dark:#9a7c30; --gold-light:#d4b263;
  --cream:#faf8f3; --sand:#efe9dc; --white:#ffffff;
  --ink:#18211a; --ink-mid:#3d463f; --ink-soft:#6b746c;
  --line:rgba(24,33,26,0.12);
  --r-sm:12px; --r-md:18px;
  --ease:cubic-bezier(0.22,1,0.36,1);
  --shadow-sm:0 2px 10px rgba(24,33,26,0.07);
  --shadow-lg:0 24px 60px rgba(24,33,26,0.16);
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Inter',sans-serif; background:var(--cream); color:var(--ink-mid); line-height:1.65; font-size:16.5px; }
h1,h2,h3 { font-family:'Playfair Display',serif; color:var(--green-deep); line-height:1.15; }
a { color:var(--gold-dark); }
.wrap { max-width:1080px; margin:0 auto; padding:0 clamp(1.25rem,4vw,2.5rem); }
.btn { display:inline-flex; align-items:center; justify-content:center; gap:0.55rem; padding:0.95rem 1.9rem; border-radius:999px; font-size:0.98rem; font-weight:600; text-decoration:none; cursor:pointer; border:1.5px solid transparent; transition:transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s, border-color 0.2s; }
.btn-gold { background:var(--gold); color:var(--white); box-shadow:0 8px 24px rgba(184,150,62,0.32); }
.btn-gold:hover { background:var(--gold-dark); transform:translateY(-2px); }
.btn-ghost { background:transparent; color:var(--green-dark); border-color:rgba(44,74,46,0.35); }
.btn-ghost:hover { border-color:var(--green-dark); background:rgba(44,74,46,0.06); }

nav { position:sticky; top:0; z-index:50; background:rgba(250,248,243,0.94); backdrop-filter:blur(14px); box-shadow:var(--shadow-sm); }
.nav-inner { max-width:1180px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:0.7rem clamp(1.25rem,4vw,2.5rem); }
.nav-brand { display:flex; align-items:center; gap:0.7rem; text-decoration:none; }
.nav-brand img { height:44px; width:auto; border-radius:8px; }
.nav-brand .wordmark { font-family:'Playfair Display',serif; font-weight:700; font-size:1.08rem; color:var(--green-deep); line-height:1; }
.nav-brand .wordmark small { display:block; font-family:'Inter',sans-serif; font-size:0.56rem; font-weight:600; letter-spacing:0.26em; text-transform:uppercase; color:var(--gold-dark); margin-top:3px; }
.nav-links { display:flex; align-items:center; gap:1.4rem; list-style:none; }
.nav-links a { text-decoration:none; color:var(--ink-mid); font-size:0.92rem; font-weight:500; }
.nav-links a:hover { color:var(--green-dark); }
.nav-links .btn { padding:0.6rem 1.3rem; font-size:0.88rem; color:var(--white); }
@media (max-width:840px) { .nav-links li:not(.keep) { display:none; } }

.crumbs { font-size:0.8rem; color:var(--ink-soft); padding:1rem 0 0; }
.crumbs a { color:var(--ink-soft); text-decoration:none; }
.crumbs a:hover { color:var(--gold-dark); }

.page-hero { padding:3.2rem 0 2.6rem; }
.eyebrow { display:inline-block; font-size:0.74rem; font-weight:700; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold-dark); margin-bottom:0.9rem; }
.page-hero h1 { font-size:clamp(2.1rem,4.6vw,3.1rem); margin-bottom:1rem; }
.page-hero .lead { font-size:1.08rem; max-width:660px; margin-bottom:1.6rem; }
.hero-ctas { display:flex; gap:0.9rem; flex-wrap:wrap; }

section.block { padding:2.4rem 0; }
.block h2 { font-size:clamp(1.5rem,3vw,2rem); margin-bottom:0.9rem; }
.block h3 { font-size:1.15rem; margin:1.4rem 0 0.4rem; }
.block p + p { margin-top:0.85rem; }
.two-col { display:grid; grid-template-columns:1.15fr 0.85fr; gap:2.6rem; align-items:center; }
@media (max-width:820px) { .two-col { grid-template-columns:1fr; } }
.img-card { border-radius:var(--r-md); overflow:hidden; box-shadow:var(--shadow-lg); }
.img-card img { width:100%; height:auto; display:block; }
.checks { list-style:none; margin:1.1rem 0; display:grid; gap:0.55rem; }
.checks li { padding-left:1.7rem; position:relative; }
.checks li::before { content:'✓'; position:absolute; left:0; top:0; color:var(--gold); font-weight:700; }
.local { max-width:760px; }

.price-panel { background:var(--white); border:1px solid var(--line); border-top:3px solid var(--gold); border-radius:var(--r-sm); padding:1.6rem 1.8rem; box-shadow:var(--shadow-sm); }
.price-panel .big { font-family:'Playfair Display',serif; font-size:2.2rem; font-weight:700; color:var(--green-dark); }
.price-panel .big small { font-family:'Inter',sans-serif; font-size:0.95rem; font-weight:400; color:var(--ink-soft); }
.price-panel .note { font-size:0.8rem; color:var(--ink-soft); margin-top:0.5rem; }
.tier-row { display:flex; justify-content:space-between; gap:1rem; padding:0.45rem 0; border-bottom:1px dashed var(--line); font-size:0.95rem; }
.tier-row:last-of-type { border-bottom:0; }
.tier-row .v { font-weight:700; color:var(--green-dark); white-space:nowrap; }

details.faq { background:var(--white); border:1px solid var(--line); border-radius:var(--r-sm); margin-bottom:0.7rem; overflow:hidden; }
details.faq summary { cursor:pointer; padding:1rem 1.2rem; font-weight:600; color:var(--ink); list-style:none; display:flex; justify-content:space-between; gap:1rem; }
details.faq summary::-webkit-details-marker { display:none; }
details.faq summary::after { content:'+'; color:var(--gold-dark); font-weight:700; }
details.faq[open] summary::after { content:'–'; }
details.faq .a { padding:0 1.2rem 1.1rem; font-size:0.95rem; }

.linkgrid { display:flex; flex-wrap:wrap; gap:0.6rem; margin-top:1rem; }
.linkgrid a { display:inline-block; background:var(--white); border:1px solid var(--line); border-radius:8px; padding:0.55rem 1rem; font-size:0.88rem; font-weight:500; color:var(--ink-mid); text-decoration:none; transition:border-color 0.2s, color 0.2s; }
.linkgrid a:hover { border-color:var(--gold); color:var(--green-dark); }

.cta-band { background:linear-gradient(135deg, var(--green-deep), var(--green-dark)); border-radius:var(--r-md); padding:2.6rem clamp(1.4rem,4vw,3rem); text-align:center; margin:2.5rem 0 3rem; }
.cta-band h2 { color:var(--white); font-size:clamp(1.6rem,3.4vw,2.2rem); margin-bottom:0.6rem; }
.cta-band p { color:rgba(255,255,255,0.78); margin-bottom:1.5rem; }

footer { background:var(--green-deep); color:rgba(255,255,255,0.72); padding:3rem 0 0; margin-top:2rem; }
.foot-grid { display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr; gap:2.2rem; padding-bottom:2.4rem; }
.foot-wordmark { font-family:'Playfair Display',serif; font-weight:700; font-size:1.45rem; color:var(--white); line-height:1.05; margin-bottom:0.9rem; }
.foot-wordmark span { display:block; font-family:'Inter',sans-serif; font-size:0.6rem; font-weight:600; letter-spacing:0.28em; text-transform:uppercase; color:var(--gold-light); margin-top:4px; }
.foot-grid p { font-size:0.85rem; max-width:300px; }
footer h4 { font-family:'Inter',sans-serif; font-size:0.75rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold-light); margin-bottom:0.9rem; }
footer ul { list-style:none; display:grid; gap:0.5rem; }
footer ul a { color:rgba(255,255,255,0.72); text-decoration:none; font-size:0.88rem; }
footer ul a:hover { color:var(--gold-light); }
.foot-bottom { border-top:1px solid rgba(255,255,255,0.1); padding:1.2rem 0; display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; font-size:0.78rem; color:rgba(255,255,255,0.5); }
.foot-bottom a { color:rgba(255,255,255,0.65); text-decoration:none; }
.foot-bottom a:hover { color:var(--gold-light); }
@media (max-width:780px) { .foot-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:520px) { .foot-grid { grid-template-columns:1fr; } }
