/* ============================================
   GAMBLE'S LAWN SERVICE — Shared styles for subpages
   Same design tokens as index.html
   ============================================ */

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  font-size:17px;line-height:1.65;color:#1c1c1c;background:#f7f4ed;
  -webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;
}
img,svg{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer;border:0;background:none;color:inherit}

:root{
  --red:#d6262c;--red-dark:#a81c21;--red-wash:#fbeceb;
  --green-950:#0e2a17;--green-900:#1c3d24;--green-800:#1f4a2a;
  --green-700:#2e6b3f;--green-100:#e8efe6;
  --leaf:#3fa535;--leaf-dark:#2d7a26;
  --cream:#f7f4ed;--cream-2:#fbfaf6;
  --ink:#1c1c1c;--muted:#666560;--line:#dcd6c8;--line-2:#e7e2d3;
  --shadow:0 1px 2px rgba(28,42,29,.04),0 8px 28px rgba(28,42,29,.08);
  --shadow-lg:0 4px 14px rgba(28,42,29,.06),0 30px 80px rgba(28,42,29,.14);
  --radius:14px;--radius-sm:8px;--radius-lg:22px;
  --container:1200px;
  --font-serif:Georgia,"Iowan Old Style","Palatino Linotype","Book Antiqua",Palatino,serif;
}

.container{max-width:var(--container);margin:0 auto;padding:0 28px}
.container.narrow{max-width:880px}
@media (max-width:640px){.container{padding:0 18px}}

section[id], div[id]{scroll-margin-top:80px}

/* Focus */
:focus{outline:none}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible,summary:focus-visible{
  outline:2px solid var(--green-700);outline-offset:3px;border-radius:4px;
}
.btn:focus-visible{outline-offset:4px}

/* Utility bar */
.utility{background:var(--green-950);color:#cfd9c8;font-size:13px;padding:9px 0;letter-spacing:.01em}
.utility .row{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap}
.utility .badges{display:flex;gap:22px;color:#a8b5a3}
.utility .badges span{display:inline-flex;align-items:center;gap:6px}
.utility .badges svg{width:13px;height:13px;fill:var(--leaf)}
@media (max-width:760px){.utility .badges{display:none}}

/* Header */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(247,244,237,.92);
  backdrop-filter:saturate(140%) blur(10px);
  -webkit-backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid var(--line-2);
}
.site-header .row{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:16px 0}
.brand{display:flex;align-items:center;gap:14px;letter-spacing:-.01em}
.brand-mark{width:52px;height:52px;flex-shrink:0;color:var(--green-900)}
.brand-mark svg{width:100%;height:100%;display:block}
.brand-text{display:flex;align-items:center;line-height:1}
.brand-text .name{font-family:var(--font-serif);font-size:22px;color:var(--green-900);font-weight:700;letter-spacing:-.005em}
nav ul{list-style:none;margin:0;padding:0;display:flex;gap:32px}
nav a{font-weight:500;color:#2a2a2a;font-size:15px;transition:color .15s}
nav a:hover{color:var(--green-800)}
nav a[aria-current="page"]{color:var(--green-800);font-weight:600}
.header-cta{display:flex;align-items:center;gap:14px}
.phone-link{font-weight:700;color:var(--green-900);font-size:15px;display:inline-flex;align-items:center;gap:6px}
.phone-link svg{width:16px;height:16px;fill:var(--red)}
@media (max-width:980px){nav{display:none}}
@media (max-width:560px){.phone-link span{display:none}}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:14px 24px;border-radius:999px;
  font-weight:600;font-size:15px;letter-spacing:.01em;
  transition:transform .15s,box-shadow .15s,background .15s,color .15s,border-color .15s;
  white-space:nowrap;
}
.btn-primary{background:var(--red);color:#fff;box-shadow:0 1px 2px rgba(0,0,0,.08),0 8px 22px rgba(214,38,44,.28)}
.btn-primary:hover{background:var(--red-dark);transform:translateY(-1px);box-shadow:0 2px 4px rgba(0,0,0,.1),0 12px 28px rgba(214,38,44,.34)}
.btn-ghost{background:transparent;color:var(--green-900);border:1.5px solid var(--green-800)}
.btn-ghost:hover{background:var(--green-100)}
.btn-ghost-light{background:transparent;color:#fff;border:1.5px solid rgba(255,255,255,.4)}
.btn-ghost-light:hover{background:rgba(255,255,255,.08);border-color:#fff}
.btn-lg{padding:16px 30px;font-size:16px}
.btn svg{width:16px;height:16px;fill:currentColor}

/* Eyebrow */
.eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  background:rgba(31,74,42,.08);color:var(--green-800);
  padding:7px 14px;border-radius:999px;
  font-size:12px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;
}
.eyebrow .dot{width:7px;height:7px;border-radius:50%;background:var(--red)}
.eyebrow-red{background:var(--red-wash);color:var(--red-dark)}
.eyebrow-light{background:rgba(255,255,255,.08);color:#cfd9c8}

/* Breadcrumbs */
.crumbs{font-size:13px;color:var(--muted);margin-bottom:18px}
.crumbs a{color:var(--green-800);font-weight:500}
.crumbs a:hover{text-decoration:underline}
.crumbs span[aria-hidden]{margin:0 8px;color:var(--line)}

/* Page hero — default cream/gradient treatment */
.page-hero{
  padding:72px 0 64px;
  background:
    radial-gradient(ellipse 900px 500px at 90% -10%, rgba(31,74,42,.13), transparent 60%),
    linear-gradient(180deg,#f7f4ed 0%,#f1ede2 100%);
  border-bottom:1px solid var(--line-2);
  position:relative;
}
.page-hero .hero-grid{display:grid;grid-template-columns:1fr;gap:48px;align-items:start;position:relative}
.page-hero h1{
  font-family:var(--font-serif);
  font-size:clamp(34px,4.6vw,52px);
  line-height:1.05;letter-spacing:-.02em;
  margin:14px 0 18px;color:var(--green-950);font-weight:700;
}
.page-hero .lead{font-size:18px;color:#3a3a36;max-width:680px;margin:0 0 28px;line-height:1.6}
.page-hero .hero-ctas{display:flex;gap:12px;flex-wrap:wrap}

/* Page hero — variant with photo background + dark overlay */
.page-hero.with-photo{
  color:#fff;border-bottom:0;
  padding:96px 0 88px;
}
.page-hero.with-photo h1{color:#fff}
.page-hero.with-photo .lead{color:#d4dccb}
.page-hero.with-photo .crumbs{color:#cfd9c8}
.page-hero.with-photo .crumbs a{color:#fff}
.page-hero.with-photo .crumbs span[aria-hidden]{color:rgba(255,255,255,.4)}
.page-hero.with-photo .eyebrow{background:rgba(255,255,255,.1);color:#fff;backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px)}
.page-hero.with-photo .eyebrow .dot{background:var(--red)}
.page-hero.with-photo .btn-ghost{color:#fff;border-color:rgba(255,255,255,.4)}
.page-hero.with-photo .btn-ghost:hover{background:rgba(255,255,255,.08);border-color:#fff}
.page-hero.bg-residential{
  background:
    linear-gradient(115deg, rgba(14,42,23,.88) 0%, rgba(14,42,23,.5) 55%, rgba(14,42,23,.85) 100%),
    url('photos/hero-residential.jpg') center 35%/cover no-repeat,
    linear-gradient(135deg,var(--green-900),var(--green-950));
}
.page-hero.bg-hardscape{
  background:
    linear-gradient(115deg, rgba(14,42,23,.88) 0%, rgba(14,42,23,.5) 55%, rgba(14,42,23,.85) 100%),
    url('photos/hero-hardscape.jpg') center 45%/cover no-repeat,
    linear-gradient(135deg,var(--green-900),var(--green-950));
}
.page-hero.bg-commercial{
  background:
    linear-gradient(115deg, rgba(14,42,23,.88) 0%, rgba(14,42,23,.5) 55%, rgba(14,42,23,.85) 100%),
    url('photos/commercial-multifamily.jpg') center 40%/cover no-repeat,
    linear-gradient(135deg,var(--green-900),var(--green-950));
}

/* ============================================
   SHOWCASE — commercial properties we maintain
   Each tile has a dark gradient over a photo background.
   If the photo file is missing, the green gradient fallback shows.
   ============================================ */
.showcase{
  display:grid;grid-template-columns:repeat(2,1fr);gap:16px;
  margin-top:24px;
}
.showcase-tile{
  position:relative;aspect-ratio:4/3;
  border-radius:var(--radius);overflow:hidden;
  background:linear-gradient(135deg,var(--green-800),var(--green-700));
  transition:transform .25s,box-shadow .25s;
}
.showcase-tile:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg)}
.showcase-tile-community{
  background-image:
    linear-gradient(180deg,rgba(14,42,23,0) 50%,rgba(14,42,23,.7) 100%),
    url('photos/commercial-community.jpg');
  background-size:cover;background-position:center;
}
.showcase-tile-office{
  background-image:
    linear-gradient(180deg,rgba(14,42,23,0) 50%,rgba(14,42,23,.7) 100%),
    url('photos/commercial-office.jpg');
  background-size:cover;background-position:center;
}
.showcase-tile-modern{
  background-image:
    linear-gradient(180deg,rgba(14,42,23,0) 50%,rgba(14,42,23,.7) 100%),
    url('photos/commercial-modern.jpg');
  background-size:cover;background-position:center;
}
.showcase-tile-snow{
  background-image:
    linear-gradient(180deg,rgba(14,42,23,0) 50%,rgba(14,42,23,.7) 100%),
    url('photos/commercial-office-snow.jpg');
  background-size:cover;background-position:center;
}
.showcase-tile figcaption{
  position:absolute;left:0;right:0;bottom:0;
  color:#fff;padding:24px 20px 18px;
  font-weight:600;font-size:15px;letter-spacing:-.005em;
}
.showcase-tile figcaption span{display:block;font-weight:400;font-size:13px;color:#cfd9c8;margin-top:3px}
@media (max-width:640px){.showcase{grid-template-columns:1fr}}

/* ============================================
   SNOW SERVICE CALLOUT — split with truck photo
   ============================================ */
.snow-feature{
  display:grid;grid-template-columns:1.1fr 1fr;gap:56px;align-items:center;margin-top:24px;
}
.snow-feature h3{
  font-family:var(--font-serif);
  font-size:clamp(24px,3vw,32px);
  line-height:1.15;letter-spacing:-.01em;
  margin:14px 0 16px;color:var(--green-950);font-weight:700;
}
.snow-feature p{margin:0 0 14px;color:#3a3a36;font-size:16px;line-height:1.65}
.snow-feature ul{list-style:none;margin:18px 0 0;padding:0;display:grid;gap:10px}
.snow-feature li{display:flex;gap:12px;align-items:flex-start;font-size:15px;color:#3a3a36}
.snow-feature li svg{width:16px;height:16px;fill:var(--leaf-dark);flex-shrink:0;margin-top:4px}
.snow-feature .photo{
  border-radius:var(--radius-lg);overflow:hidden;
  aspect-ratio:9/12;max-height:580px;
  background:
    linear-gradient(180deg,rgba(14,42,23,0) 60%,rgba(14,42,23,.45) 100%),
    url('photos/truck-snow.jpg') center/cover no-repeat,
    linear-gradient(180deg,var(--green-800),var(--green-950));
  box-shadow:var(--shadow-lg);
}
@media (max-width:760px){
  .snow-feature{grid-template-columns:1fr;gap:32px}
  .snow-feature .photo{aspect-ratio:4/3;max-height:none;max-width:520px;margin:0 auto}
}

/* Content sections */
.content{padding:72px 0}
.content.alt{background:var(--cream-2);border-top:1px solid var(--line-2);border-bottom:1px solid var(--line-2)}
@media (max-width:760px){.content{padding:48px 0}}
.content h2{
  font-family:var(--font-serif);
  font-size:clamp(28px,3.4vw,40px);line-height:1.1;letter-spacing:-.02em;
  color:var(--green-950);margin:14px 0 18px;font-weight:700;
}
.content .lead-prose{font-size:17px;color:#3a3a36;max-width:760px;margin:0 0 36px;line-height:1.75}
.content p{margin:0 0 14px}
.content h3{font-family:var(--font-serif);font-size:21px;color:var(--green-950);letter-spacing:-.005em;margin:32px 0 10px;font-weight:700}

/* Services list (cards in column) */
.services-list, .standards{display:grid;gap:24px;margin-top:24px}
.services-list article, .standards article{
  background:var(--cream-2);border:1px solid var(--line-2);
  border-radius:var(--radius);padding:24px 28px;
  position:relative;
}
.content.alt .services-list article, .content.alt .standards article{background:#fff}
.services-list article h3, .standards article h3{margin:0 0 8px;font-size:20px}
.services-list article p, .standards article p{margin:0;color:#3a3a36;font-size:16px;line-height:1.65}
.services-list article::before, .standards article::before{
  content:"";position:absolute;left:0;top:24px;bottom:24px;width:3px;
  background:var(--leaf);border-radius:3px;
}
.standards article::before{background:var(--red)}

/* Process strip (vertical list with numbered badges) */
.process-strip{display:grid;gap:24px;margin-top:24px}
.process-strip > div{display:grid;grid-template-columns:64px 1fr;gap:20px;align-items:start}
.process-strip .num{
  width:64px;height:64px;border-radius:50%;
  background:transparent;border:2px solid var(--green-800);
  font-family:var(--font-serif);color:var(--green-900);
  font-weight:700;font-size:22px;
  display:grid;place-items:center;
}
.process-strip > div:nth-child(2) .num{border-color:var(--leaf-dark);color:var(--leaf-dark)}
.process-strip > div:nth-child(3) .num{border-color:var(--red);color:var(--red)}
.process-strip > div:nth-child(4) .num{border-color:var(--green-700);color:var(--green-700)}
.process-strip h3{margin:0 0 6px;font-size:20px}
.process-strip p{margin:0;color:#3a3a36;font-size:16px;line-height:1.6}
@media (max-width:560px){
  .process-strip > div{grid-template-columns:48px 1fr;gap:14px}
  .process-strip .num{width:48px;height:48px;font-size:18px}
}

/* FAQ */
.faq-list{display:grid;gap:12px;margin-top:24px}
.faq-item{
  border:1px solid var(--line-2);border-radius:var(--radius-sm);
  background:#fff;overflow:hidden;
}
.content.alt .faq-item{background:var(--cream-2)}
.faq-item summary{
  list-style:none;cursor:pointer;
  padding:20px 22px;
  font-weight:600;font-size:17px;color:var(--green-950);
  display:flex;justify-content:space-between;align-items:center;gap:12px;
  font-family:var(--font-serif);letter-spacing:-.005em;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:"";width:14px;height:14px;flex-shrink:0;
  background:no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a81c21'><path d='M12 4v16M4 12h16'/></svg>");
  transition:transform .2s;
}
.faq-item[open] summary::after{transform:rotate(45deg)}
.faq-item .a{padding:0 22px 22px;color:#3a3a36;font-size:15.5px;line-height:1.65}

/* Page CTA */
.page-cta{
  padding:80px 0;text-align:center;
  background:linear-gradient(135deg,var(--green-800),var(--green-950));
  color:#fff;position:relative;overflow:hidden;
}
.page-cta::before{
  content:"";position:absolute;inset:0;
  background-image:radial-gradient(circle at 12% 24%,rgba(214,38,44,.12) 0 2px,transparent 3px),radial-gradient(circle at 84% 78%,rgba(63,165,53,.08) 0 2px,transparent 3px);
  background-size:240px 240px;
}
.page-cta .container{position:relative}
.page-cta h2{font-family:var(--font-serif);font-size:clamp(28px,3.6vw,40px);color:#fff;margin:0 0 14px;letter-spacing:-.02em;line-height:1.1}
.page-cta p{font-size:17px;color:#cfd9c8;max-width:520px;margin:0 auto 28px;line-height:1.55}
.page-cta .actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-bottom:24px}
.page-cta .related{font-size:14px;color:#a8b8aa}
.page-cta .related a{color:#fff;border-bottom:1px solid rgba(255,255,255,.4)}
.page-cta .related a:hover{border-color:#fff}

/* Footer */
footer{background:#0a1d12;color:#9bac95;padding:36px 0 24px;font-size:14px}
footer .foot-row{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:18px;padding-bottom:24px;border-bottom:1px solid rgba(255,255,255,.06)}
footer .brand{color:#fff}
footer .brand .brand-mark{color:#fff}
footer .brand .name{color:#fff}
footer .foot-meta a{color:#fff}
footer .foot-meta a:hover{color:var(--leaf)}
footer .foot-bottom{padding-top:20px;text-align:center;font-size:13px;color:#6a7a64}
footer .foot-bottom a{color:#9bac95;margin:0 4px}
footer .foot-bottom a:hover{color:#fff}

@media (prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important;scroll-behavior:auto!important}
}
