/* Williams Lawn Maintenance & Landscaping */
:root{
  --green:#0B3E0C; --green2:#25761B; --gold:#FECD1C;
  --ground:#F3EDE8; --ink:#1f1f1f; --body:#3d3d3d; --mute:#6f6f6f;
  --line:#dcd6ce; --white:#fff;
  --wrap:1080px;
}
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{margin:0;background:var(--white);color:var(--body);
  font:400 17px/1.65 -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif}
img{max-width:100%;height:auto;display:block}
a{color:var(--green2)}
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 20px}
h1,h2,h3{color:var(--green);line-height:1.2;margin:0 0 .5em;letter-spacing:-.01em}
h1{font-size:clamp(30px,6vw,50px);font-weight:800}
h2{font-size:clamp(24px,4vw,34px);font-weight:750}
h3{font-size:19px;font-weight:700}
p{margin:0 0 1.1em}
.lede{font-size:clamp(18px,2.4vw,21px);color:var(--body)}
.sr{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0)}

/* header */
.site-head{position:sticky;top:0;z-index:50;background:var(--white);
  border-bottom:1px solid var(--line);box-shadow:0 1px 6px rgba(0,0,0,.04)}
.head-in{display:flex;align-items:center;gap:14px;padding:10px 20px;max-width:var(--wrap);margin:0 auto}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none;flex:1;min-width:0}
.brand img{width:74px}
.brand b{display:block;color:var(--green);font-size:15px;font-weight:800;line-height:1.15}
.brand span{display:block;color:var(--mute);font-size:11.5px;letter-spacing:.06em;text-transform:uppercase}
.callbtn{background:var(--green);color:#fff;text-decoration:none;font-weight:700;font-size:15px;
  padding:11px 16px;border-radius:8px;white-space:nowrap}
.callbtn:hover{background:var(--green2)}

nav.main{border-top:1px solid var(--line);background:var(--ground)}
nav.main ul{display:flex;flex-wrap:wrap;gap:2px;list-style:none;margin:0 auto;padding:0 12px;max-width:var(--wrap)}
nav.main a{display:block;padding:11px 12px;color:var(--green);text-decoration:none;font-weight:600;font-size:14.5px}
nav.main a:hover,nav.main a[aria-current]{color:var(--green2);box-shadow:inset 0 -3px 0 var(--gold)}

/* hero */
.hero{background:var(--ground);border-bottom:4px solid var(--gold);padding:52px 0 46px}
.hero .years{display:inline-block;background:var(--green);color:var(--gold);font-weight:800;
  font-size:12.5px;letter-spacing:.16em;text-transform:uppercase;padding:7px 14px;border-radius:99px;margin-bottom:18px}
.hero p{max-width:60ch}
.btns{display:flex;flex-wrap:wrap;gap:12px;margin-top:26px}
.btn{display:inline-block;text-decoration:none;font-weight:700;font-size:16.5px;padding:14px 22px;border-radius:9px}
.btn-primary{background:var(--green);color:#fff}
.btn-primary:hover{background:var(--green2)}
.btn-ghost{background:transparent;color:var(--green);border:2px solid var(--green)}
.btn-ghost:hover{background:var(--green);color:#fff}

section{padding:48px 0}
section.alt{background:var(--ground)}
.grid{display:grid;gap:22px;grid-template-columns:1fr}
@media(min-width:760px){.grid.g3{grid-template-columns:repeat(3,1fr)}.grid.g2{grid-template-columns:repeat(2,1fr)}}
.card{background:#fff;border:1px solid var(--line);border-radius:12px;padding:24px;
  border-top:4px solid var(--green)}
.card h3{margin-bottom:.4em}
.card p:last-child{margin-bottom:0}
section.alt .card{background:#fff}

ul.ticks{list-style:none;padding:0;margin:0 0 1em}
ul.ticks li{position:relative;padding:6px 0 6px 26px}
ul.ticks li::before{content:"";position:absolute;left:2px;top:14px;width:9px;height:9px;
  background:var(--gold);border-radius:2px;transform:rotate(45deg)}

.areas{display:flex;flex-wrap:wrap;gap:10px;padding:0;list-style:none;margin:0}
.areas li{background:#fff;border:1px solid var(--line);border-radius:99px;padding:9px 16px;font-weight:600;color:var(--green)}
section.alt .areas li{background:#fff}

.note{background:var(--ground);border-left:5px solid var(--gold);padding:18px 22px;border-radius:0 10px 10px 0;margin:26px 0}
section.alt .note{background:#fff}

/* form */
form label{display:block;font-weight:700;color:var(--green);font-size:14.5px;margin:16px 0 6px}
form input,form select,form textarea{width:100%;font:inherit;font-size:16px;padding:12px 13px;
  border:1.5px solid var(--line);border-radius:9px;background:#fff;color:var(--ink)}
form input:focus,form select:focus,form textarea:focus{outline:3px solid rgba(37,118,27,.25);border-color:var(--green2)}
form textarea{min-height:120px;resize:vertical}
.hp{position:absolute;left:-9999px}
button[type=submit]{margin-top:22px;background:var(--green);color:#fff;border:0;font:inherit;
  font-weight:700;font-size:17px;padding:15px 26px;border-radius:9px;cursor:pointer}
button[type=submit]:hover{background:var(--green2)}

/* footer */
.site-foot{background:var(--green);color:#dfe7dc;padding:40px 0 28px;margin-top:10px}
.site-foot a{color:#fff;text-decoration:none}
.site-foot a:hover{text-decoration:underline}
.foot-grid{display:grid;gap:26px;grid-template-columns:1fr}
@media(min-width:760px){.foot-grid{grid-template-columns:1.3fr 1fr 1fr}}
.site-foot h4{color:var(--gold);font-size:12.5px;letter-spacing:.14em;text-transform:uppercase;margin:0 0 12px}
.site-foot ul{list-style:none;margin:0;padding:0}
.site-foot li{margin:0 0 7px}
.site-foot .k{color:var(--gold);font-weight:700}
.legal{border-top:1px solid rgba(255,255,255,.18);margin-top:28px;padding-top:16px;font-size:13px;color:#b9c7b6}

/* readable measure — prose should not run the full container on desktop */
section .wrap > p,
section .wrap > ul.ticks,
section .wrap > .note,
.hero .wrap > p{max-width:68ch}
section .wrap > h2{max-width:24ch}

/* narrow phones: keep the wordmark to two lines instead of four,
   so the sticky header stays short and the call button never crowds it */
@media(max-width:560px){
  .head-in{gap:9px;padding:9px 12px}
  .brand img{width:50px}
  .brand b{font-size:12.5px;line-height:1.2}
  .callbtn{font-size:13.5px;padding:10px 13px}
  /* keep all five nav items on ONE row so the sticky bar stays short */
  nav.main ul{flex-wrap:nowrap;padding:0 4px;justify-content:space-between}
  nav.main a{padding:12px 3px;font-size:11.5px;white-space:nowrap}
}
@media(max-width:380px){
  .brand img{width:44px}
  .brand b{font-size:11.5px}
  .callbtn{font-size:12.5px;padding:9px 10px}
  nav.main a{padding:12px 3px;font-size:11.5px}
}

/* brand mark on the About page — the logo's type is the same dark green as the
   footer, so it only reads on a light ground. Never place it on .site-foot. */
.brandmark{display:block;margin:2px 0 28px;width:100%;max-width:300px;height:auto}  /* left-aligned to sit over the prose column, like a letterhead — centred, it
     drifts right of the 68ch measure on desktop */
@media(max-width:560px){.brandmark{max-width:230px;margin-bottom:22px}}

/* radio groups on the quote form. form input{width:100%} would stretch a radio
   across the page, so the control is sized explicitly here. Radio groups rather
   than loose checkboxes: for a mutually exclusive question people tick both,
   and they are right to. */
form fieldset{border:1px solid var(--line);border-radius:8px;padding:4px 16px 14px;margin:18px 0 0;min-width:0}
form legend{font-weight:700;color:var(--green);font-size:14.5px;padding:0 6px}
form .opt{display:flex;align-items:center;gap:11px;margin:10px 0;font-weight:400;
  color:var(--body);font-size:16px;cursor:pointer}
form .opt input[type=radio]{width:20px;height:20px;flex:0 0 20px;margin:0;padding:0;accent-color:var(--green2)}
form .hint{font-size:13.5px;color:var(--mute);margin:7px 0 0;line-height:1.5}

/* Powered by StartedBlack — house pattern, matching cousinsfoundationoutreach.com:
   200px, centred, sitting inside the client's own footer under a hairline rule.
   Not a band, not a panel, not a colour of its own. The same block goes on every
   StartedBlack client site so they read as one shop's work. */
.powered{text-align:center;margin-top:26px;padding-top:26px;
  border-top:1px solid rgba(255,255,255,.08)}
.powered a{display:inline-block}
.powered img{max-width:150px;width:100%;height:auto;display:inline-block}

/* work gallery. Two columns on desktop, one on a phone. The tiles are a fixed
   4:3 frame so portrait and landscape shots line up; object-fit crops from the
   centre, which is where the lawn is in every one of these. */
.shots{display:grid;gap:18px;grid-template-columns:1fr;margin:22px 0 0}
@media(min-width:640px){.shots{grid-template-columns:1fr 1fr}}
@media(min-width:1000px){.shots{grid-template-columns:1fr 1fr 1fr}}
.shot{margin:0;border:1px solid var(--line);border-radius:10px;overflow:hidden;background:#fff}
.shot img{width:100%;aspect-ratio:4/3;object-fit:cover;object-position:center}
.shot figcaption{padding:11px 14px 13px;font-size:14px;color:var(--body);line-height:1.45}
section.alt{background:var(--ground)}
