/* =========================================================
   Tiny Turf Team | Brand Styles
   Palette (per brief):
     POP red       #990000
     Mint pale     #E6F0DC
     Mint mid      #C1E899
     Green deep    #55883B
     Green dark    #669E23
     Green bright  #93DD36
     Earth brown   #9A6735
     Ink           #0F1110
     Grey light    #DCDDDF
   ========================================================= */

:root{
  --pop:        #990000;
  --mint-pale:  #E6F0DC;
  --mint:       #C1E899;
  --green-deep: #55883B;
  --green-dark: #669E23;
  --green:      #93DD36;
  --earth:      #9A6735;
  --ink:        #0F1110;
  --grey:       #DCDDDF;
  --white:      #ffffff;
  --paper:      #fbfdf7;

  --radius:   18px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(15,17,16,.06), 0 2px 6px rgba(15,17,16,.05);
  --shadow:    0 6px 18px rgba(15,17,16,.08), 0 18px 40px rgba(15,17,16,.06);
  --shadow-lg: 0 14px 40px rgba(15,17,16,.12), 0 30px 80px rgba(15,17,16,.10);

  --font-display: "Manrope", "Calibri", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-body:    "Inter", "Calibri Light", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --max: 1180px;
  --pad: clamp(20px, 4vw, 40px);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* -------- Base -------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  margin:0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  cursor: default;
}
/* Keep the I-beam only where text input actually happens */
input[type="text"], input[type="tel"], input[type="email"],
input[type="search"], input[type="url"], input[type="number"],
input:not([type]), textarea{ cursor: text; }
/* Things you click stay pointer */
a, button, label, select, summary, [role="button"]{ cursor: pointer; }
img,svg{ display:block; max-width:100%; }
a{ color: var(--green-deep); text-decoration: none; transition: color .2s var(--ease); }
a:hover{ color: var(--green-dark); }
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
  color: var(--ink);
}
h1{ font-size: clamp(2.2rem, 5.6vw, 4rem); }
h2{ font-size: clamp(1.6rem, 3.4vw, 2.5rem); }
h3{ font-size: 1.18rem; }
h4{ font-size: 1rem; letter-spacing: .02em; }
p{ margin: 0 0 1em; }

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.skip-link{
  position:absolute; left:-9999px; top:0;
  background: var(--ink); color:#fff; padding:.6rem 1rem; z-index:200;
}
.skip-link:focus{ left:1rem; top:1rem; border-radius:8px; }

/* -------- Buttons -------- */
.btn{
  --bg: var(--green-deep);
  --fg: #fff;
  --br: transparent;
  display:inline-flex; align-items:center; gap:.55rem;
  padding: .75rem 1.15rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .01em;
  background: var(--bg);
  color: var(--fg);
  border: 2px solid var(--br);
  border-radius: 999px;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  text-decoration: none;
  box-shadow: 0 2px 0 rgba(15,17,16,.06);
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 8px 20px rgba(85,136,59,.25); }
.btn:active{ transform: translateY(0); }
.btn-primary{ --bg: var(--green-deep); --fg:#fff; }
.btn-primary:hover{ --bg: var(--green-dark); color:#fff; }
.btn-ghost{ --bg: transparent; --fg: var(--ink); --br: var(--ink); }
.btn-ghost:hover{ --bg: var(--ink); --fg:#fff; color:#fff; }
.btn-lg{ padding: .95rem 1.4rem; font-size: 1.02rem; }
.btn-block{ width:100%; justify-content:center; }
.btn .dot{
  width:.55rem; height:.55rem; border-radius:50%;
  background: var(--green); box-shadow: 0 0 0 4px rgba(193,232,153,.4);
  display:inline-block;
}

/* -------- Header -------- */
.site-header{
  position: sticky; top:0; z-index: 50;
  background: rgba(251,253,247,.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(15,17,16,.06);
}
.header-inner{
  display:flex; align-items:center; justify-content: space-between;
  gap: 1rem; padding-top: .7rem; padding-bottom: .7rem;
}
.brand{
  display:flex; align-items:center; gap:.7rem;
  color: var(--ink); text-decoration:none;
}
.brand-logo{
  width: 48px; height: 48px; border-radius: 12px;
  box-shadow: var(--shadow-sm);
  background:#fff;
}
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-name{ font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; letter-spacing: .01em; }
.brand-tag{ font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--green-deep); font-weight:600; }

.primary-nav{ display:flex; align-items:center; }
.nav-menu{
  display:flex; gap: 1.4rem; list-style:none; margin:0; padding:0;
  font-family: var(--font-display); font-weight: 600; font-size: .97rem;
}
.nav-menu a{ color: var(--ink); padding:.4rem 0; position:relative; }
.nav-menu a::after{
  content:""; position:absolute; left:0; right:0; bottom:-3px; height:2px;
  background: var(--green); transform: scaleX(0); transform-origin:left;
  transition: transform .25s var(--ease);
}
.nav-menu a:hover::after{ transform: scaleX(1); }

.nav-toggle{
  display:none;
  background:transparent; border:0; padding:.5rem;
  width: 44px; height: 44px; cursor:pointer;
  flex-direction:column; justify-content:center; gap:5px;
}
.nav-toggle span{ display:block; height:2px; background: var(--ink); border-radius:2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.header-cta{ white-space: nowrap; }

@media (max-width: 880px){
  .header-cta{ display:none; }
  .nav-toggle{ display:inline-flex; }
  .nav-menu{
    position: absolute; top: 100%; left:0; right:0;
    flex-direction: column; gap: 0; padding: .5rem var(--pad) 1rem;
    background: var(--paper);
    border-bottom: 1px solid rgba(15,17,16,.08);
    transform: translateY(-12px); opacity:0; pointer-events:none;
    transition: transform .25s var(--ease), opacity .2s var(--ease);
  }
  .nav-menu li{ border-top: 1px solid rgba(15,17,16,.06); }
  .nav-menu a{ display:block; padding: .9rem 0; }
  .primary-nav.open .nav-menu{ transform: translateY(0); opacity:1; pointer-events:auto; }
}

/* -------- Hero -------- */
.hero{
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 9vw, 120px) 0 clamp(40px, 7vw, 90px);
  isolation: isolate;
}
.hero-bg{
  position:absolute; inset: 0; z-index:-1;
  background:
    radial-gradient(900px 500px at 110% -10%, rgba(147,221,54,.22), transparent 60%),
    radial-gradient(700px 400px at -10% 10%, rgba(193,232,153,.45), transparent 60%),
    linear-gradient(180deg, var(--mint-pale) 0%, var(--paper) 80%);
}
.hero-bg::after{
  content:""; position:absolute; inset:auto 0 0; height: 120px;
  background:
    repeating-linear-gradient( 90deg,
      rgba(102,158,35,.10) 0 2px, transparent 2px 10px),
    linear-gradient(180deg, transparent, rgba(102,158,35,.08));
  mask: linear-gradient(180deg, transparent, #000 70%);
  -webkit-mask: linear-gradient(180deg, transparent, #000 70%);
}

.hero-inner{
  display:grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 920px){ .hero-inner{ grid-template-columns: 1fr; } }

.eyebrow{
  display:inline-flex; align-items:center; gap:.5rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-deep);
  background: rgba(255,255,255,.7);
  padding: .35rem .7rem; border-radius: 999px;
  border: 1px solid rgba(85,136,59,.2);
  margin-bottom: 1.2rem;
}
.eyebrow-dot{
  width:.45rem; height:.45rem; border-radius:50%; background: var(--green);
  box-shadow: 0 0 0 3px rgba(147,221,54,.25);
}
.eyebrow-dark{ background:#fff; color: var(--green-deep); border-color: rgba(15,17,16,.06); }
.eyebrow-light{ background: rgba(255,255,255,.1); color: var(--mint); border-color: rgba(255,255,255,.18); }

.accent-green{
  background: linear-gradient(180deg, var(--green-dark), var(--green-deep));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  position: relative;
}
.accent-green::after{
  content:""; position:absolute; left:0; right:0; bottom: -.1em;
  height: .18em; background: var(--green);
  border-radius: .2em; opacity:.45;
}

.lede{ font-size: clamp(1.05rem, 1.4vw, 1.18rem); color: #333; max-width: 56ch; }
.hero-ctas{ display:flex; flex-wrap:wrap; gap:.7rem; margin: 1.2rem 0 1.4rem; }
.hero-pills{
  list-style:none; padding:0; margin: 0;
  display:flex; flex-wrap:wrap; gap:.5rem;
}
.hero-pills li{
  font-family: var(--font-display); font-weight: 600; font-size: .85rem;
  padding: .35rem .8rem; border-radius: 999px;
  background:#fff; border: 1px solid rgba(15,17,16,.08);
  color: var(--ink);
  transition: transform .2s var(--ease), background .2s var(--ease),
              border-color .2s var(--ease), box-shadow .2s var(--ease),
              color .2s var(--ease);
}
.hero-pills li:hover{
  transform: translateY(-3px);
  background: var(--mint);
  border-color: rgba(85,136,59,.45);
  box-shadow: 0 6px 14px rgba(85,136,59,.18);
  color: var(--green-deep);
}

.hero-card{
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  background:#fff; padding: 12px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.2deg);
}
.hero-card-inner{
  display: block;
  width: 100%;
  background: var(--mint);
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0; /* prevent baseline gap */
}
.hero-card-inner img{
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* -------- Bands -------- */
.band{ padding: clamp(36px, 6vw, 64px) 0; }
.band-light{ background: var(--mint-pale); }
.band-inner{ text-align:center; }
.mission-eyebrow{
  font-family: var(--font-display); font-weight:700;
  text-transform: uppercase; letter-spacing:.18em; font-size:.78rem;
  color: var(--green-deep); margin: 0 0 .5rem;
}
.mission-text{
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.2rem, 2.3vw, 1.7rem);
  line-height: 1.35; max-width: 56ch; margin: 0 auto;
  color: var(--ink);
}
.mission-text strong{ color: var(--green-deep); font-weight: 800; }

.band-accent{
  background: linear-gradient(135deg, var(--green-deep), var(--green-dark));
  color:#fff;
  padding: clamp(48px, 7vw, 84px) 0;
}
.band-quote{
  max-width: 780px; margin: 0 auto; text-align:center;
  font-family: var(--font-display);
}
.band-quote p{
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 600; line-height: 1.4;
  margin: 0 0 .8rem;
}
.band-quote footer{ font-size: .95rem; opacity: .85; }
.quote-mark{
  width: 40px; height: 40px; color: var(--mint);
  margin: 0 auto 1rem;
}

/* Real customer testimonial — photo + quote side by side */
.testimonial{
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 720px){
  .testimonial{ grid-template-columns: 1fr; max-width: 460px; }
}
.testimonial-photo{
  display: block; width: 100%;
  border: 0; padding: 0; background: transparent;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,.28);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  line-height: 0;
}
.testimonial-photo:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0,0,0,.34);
}
.testimonial-photo img{
  width: 100%; height: auto; display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.testimonial-body{ color: #fff; font-family: var(--font-display); }
.testimonial-stars{
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  flex-wrap: wrap;
  margin-bottom: .55rem;
  line-height: 1;
}
.stars-glyphs{
  color: #ffd966;
  letter-spacing: .22em;
  font-size: 1.15rem;
}
.stars-headline{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
}
.testimonial-body .quote-mark{
  width: 28px; height: 28px;
  color: var(--mint);
  margin: 0 0 .4rem;
}
.testimonial-body p{
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 600; line-height: 1.45;
  margin: 0 0 .8rem;
}
.testimonial-body footer{ font-size: .9rem; opacity: .85; }

/* -------- Sections -------- */
.section{ padding: clamp(56px, 8vw, 110px) 0; }
.section-alt{ background: var(--mint-pale); }
.section-dark{
  background: var(--ink); color:#f1f1f1;
  background-image:
    radial-gradient(700px 400px at 90% 10%, rgba(102,158,35,.25), transparent 60%),
    radial-gradient(500px 300px at 10% 100%, rgba(154,103,53,.18), transparent 60%);
}
.section-dark h2, .section-dark h3{ color:#fff; }
.section-dark a{ color: var(--mint); }
.section-dark a:hover{ color:#fff; }

.section-head{ max-width: 760px; margin: 0 auto clamp(36px, 5vw, 56px); text-align:center; }
.section-head .eyebrow{ margin-bottom: 1rem; }
.section-sub{ color: #4a4a4a; font-size: 1.05rem; }
.section-dark .section-sub{ color: #cfcfcf; }

/* Services */
.services-grid{
  display:grid; gap: 1.2rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 920px){ .services-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .services-grid{ grid-template-columns: 1fr; } }

.service-card{
  background:#fff; border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(15,17,16,.06);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  display:flex; flex-direction:column;
}
.service-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(85,136,59,.25); }
.service-icon{
  width: 52px; height: 52px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--mint), var(--green));
  color: var(--ink);
  margin-bottom: 1rem;
  box-shadow: inset 0 -3px 0 rgba(15,17,16,.06);
}
.service-icon svg{ width: 28px; height: 28px; }
.service-card h3{ margin-bottom: .4rem; }
.service-card p{ color:#4a4a4a; flex: 1; }
.ticks{ list-style:none; padding:0; margin: 1rem 0 0; display:flex; flex-direction:column; gap:.4rem; }
.ticks li{
  padding-left: 1.4rem; position:relative; font-size: .92rem; color: var(--ink);
}
.ticks li::before{
  content:""; position:absolute; left:0; top:.45em;
  width: .65rem; height: .65rem; border-radius:50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(193,232,153,.45);
}
.soon{
  font-size: .7rem; text-transform: uppercase; letter-spacing: .12em;
  background: var(--earth); color:#fff; padding: .12rem .45rem;
  border-radius: 4px; margin-left:.3rem;
}

/* Why grid */
.why-grid{
  display:grid; gap: 1.2rem;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1080px){ .why-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .why-grid{ grid-template-columns: 1fr; } }
.why-card{
  background:#fff; border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(15,17,16,.06);
}
.why-num{
  font-family: var(--font-display); font-weight: 800;
  font-size: 2rem; color: var(--green-deep);
  letter-spacing: -.02em; margin-bottom:.4rem;
}
.why-card h3{ margin-bottom:.3rem; }
.why-card p{ margin:0; color:#4a4a4a; }

/* Process */
.process-list{
  list-style:none; counter-reset: step;
  padding: 0; margin: 0;
  display:grid; gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1080px){ .process-list{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .process-list{ grid-template-columns: 1fr; } }
.process-list li{
  background: var(--mint-pale);
  border-radius: var(--radius); padding: 1.4rem;
  border: 1px solid rgba(102,158,35,.15);
  position: relative;
}
.process-list .step{
  display:inline-grid; place-items:center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--green-deep); color:#fff;
  font-family: var(--font-display); font-weight: 800;
  margin-bottom: .8rem;
  box-shadow: 0 0 0 5px rgba(193,232,153,.45);
}
.process-list h3{ margin-bottom: .25rem; }
.process-list p{ margin:0; color:#4a4a4a; }

/* Area */
.area-inner{
  display:grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 920px){ .area-inner{ grid-template-columns: 1fr; } }
.area-copy p{ color:#dcdcdc; font-size: 1.05rem; max-width: 56ch; }
.area-copy a{ text-decoration: underline; text-underline-offset: 3px; }
.area-list{
  list-style:none; padding:0; margin: 1.2rem 0 0;
  columns: 2;
  column-gap: 2.4rem;
  font-family: var(--font-display); font-weight: 600;
}
.area-list li{
  padding-left: 1.2rem;
  position:relative;
  color: var(--mint);
  margin-bottom: .4rem;
  break-inside: avoid;
}
.area-list li::before{
  content:""; position:absolute; left:0; top:.55em;
  width: .55rem; height: .55rem; border-radius:50%;
  background: var(--green);
}
.area-map{
  background:#fff; border-radius: var(--radius);
  padding: 1rem; box-shadow: var(--shadow);
}
.area-map svg{ width:100%; height: auto; max-height: 460px; }

/* Gallery (before-and-after work cards) */
.work-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
@media (max-width: 760px){
  .work-grid{ grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; }
}
.work-card{
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15,17,16,.06);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.work-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.work-card-feature{
  grid-column: 1 / -1;
}
.work-pair{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(15,17,16,.08);
}
@media (max-width: 500px){
  .work-pair{ grid-template-columns: 1fr; }
}
.work-shot{
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--mint-pale);
}
.work-card-feature .work-shot{
  aspect-ratio: 16 / 9;
}
.work-shot img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.work-zoom{
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  display: block;
}
.work-zoom:hover img{ transform: scale(1.04); }
.work-zoom:focus-visible{
  outline: 3px solid var(--green);
  outline-offset: -3px;
}
.work-label{
  position: absolute;
  top: .6rem; left: .6rem;
  background: rgba(15,17,16,.78);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .25rem .55rem;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.work-label-after{
  background: var(--green-deep);
}
.work-caption{
  margin: 0;
  padding: .95rem 1.2rem 1.05rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}

/* -------- Lightbox (image enlarger) -------- */
.lightbox{
  padding: 0;
  border: 0;
  background: transparent;
  max-width: 100vw;
  max-height: 100vh;
  width: 100vw;
  height: 100vh;
  margin: 0;
  color: #fff;
}
.lightbox::backdrop{
  background: rgba(15, 17, 16, .92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.lightbox[open]{
  display: grid;
  place-items: center;
}
.lightbox-figure{
  margin: 0;
  display: grid;
  place-items: center;
  gap: 1rem;
  padding: clamp(1rem, 4vw, 3rem);
  max-width: 100vw;
  max-height: 100vh;
}
.lightbox-figure img{
  max-width: min(92vw, 1400px);
  max-height: 78vh;
  width: auto; height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
}
.lightbox-caption{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: #f1f1f1;
  text-align: center;
  max-width: 640px;
  margin: 0;
}
.lightbox-close,
.lightbox-nav{
  position: fixed;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .15s var(--ease), transform .15s var(--ease);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  line-height: 1;
  padding: 0;
}
.lightbox-close{
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 26px;
  font-weight: 300;
}
.lightbox-nav{
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 400;
}
.lightbox-prev{ left: 1rem; }
.lightbox-next{ right: 1rem; }
.lightbox-close:hover,
.lightbox-nav:hover{
  background: rgba(255, 255, 255, .22);
}
.lightbox-close:active,
.lightbox-nav:active{ transform: translateY(-50%) scale(.95); }
.lightbox-close:active{ transform: scale(.95); }
@media (max-width: 540px){
  .lightbox-nav{ width: 40px; height: 40px; font-size: 24px; }
  .lightbox-prev{ left: .5rem; }
  .lightbox-next{ right: .5rem; }
}

/* Contact */
.section-contact{ background: var(--mint-pale); }
.contact-inner{
  display:grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(28px, 5vw, 64px); align-items: start;
}
@media (max-width: 920px){ .contact-inner{ grid-template-columns: 1fr; } }
.contact-copy p{ color:#3a3a3a; font-size: 1.05rem; }
.contact-list{
  list-style:none; padding:0; margin: 1.4rem 0 0;
  display:flex; flex-direction:column; gap:.6rem;
}
.contact-list li{
  display:grid; grid-template-columns: 80px 1fr; gap:.8rem; align-items:baseline;
  font-family: var(--font-display); font-size: 1.02rem;
}
.contact-list .ci{
  text-transform: uppercase; letter-spacing:.14em; font-size:.72rem;
  font-weight: 800; color: var(--green-deep);
}

/* Click-to-copy email button — used in contact list + footer */
.copy-email{
  background: transparent; border: 0; padding: 0;
  font: inherit; font-family: var(--font-display);
  color: var(--green-deep);
  display: inline-flex; align-items: center; gap: .4rem;
  transition: color .15s var(--ease);
  text-align: left;
  position: relative;
}
.copy-email:hover{ color: var(--green-dark); }
.copy-email:focus-visible{
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}
.copy-email-text{ text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(85,136,59,.4); }
.copy-email:hover .copy-email-text{ text-decoration-color: var(--green-dark); }
.copy-email-icon{ opacity: .6; flex-shrink: 0; }
.copy-email:hover .copy-email-icon{ opacity: 1; }
.copy-email-status{
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--green-deep);
  background: var(--mint);
  padding: .15rem .45rem;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(2px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  pointer-events: none;
}
.copy-email-status.is-shown{ opacity: 1; transform: translateY(0); }

/* Footer variant — light text on dark bg */
.copy-email-footer{ color: #fff; font-family: var(--font-body); font-weight: 400; }
.copy-email-footer:hover{ color: var(--green); }
.copy-email-footer .copy-email-text{ text-decoration-color: rgba(255,255,255,.35); }
.copy-email-footer:hover .copy-email-text{ text-decoration-color: var(--green); }
.contact-form{
  background:#fff; border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow);
  border: 1px solid rgba(15,17,16,.06);
}
.field{ display:flex; flex-direction:column; gap:.35rem; margin-bottom: .9rem; }
.field label{
  font-family: var(--font-display); font-weight: 700; font-size:.85rem;
  color: var(--ink);
}
.field input, .field select, .field textarea{
  font: inherit; font-family: var(--font-body);
  padding: .7rem .85rem;
  border-radius: 10px;
  border: 1.5px solid rgba(15,17,16,.12);
  background: #fbfdf7;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color: var(--green-deep);
  box-shadow: 0 0 0 4px rgba(193,232,153,.45);
}
.field-row{ display:grid; grid-template-columns: 1fr 1fr; gap:.8rem; }
@media (max-width: 480px){ .field-row{ grid-template-columns: 1fr; } }
.form-note{ margin: .9rem 0 0; font-size:.88rem; color:#555; text-align:center; }

/* Honeypot — hidden from real users, visible to dumb bots that fill every field */
.honeypot{
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important; height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* "Did you mean ...?" nudge under the email field for likely typos */
.email-suggest{
  margin: .4rem 0 0;
  font-size: .85rem;
  color: #5a5a5a;
  line-height: 1.4;
}
.email-suggest-btn{
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  color: var(--green-deep);
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.email-suggest-btn:hover,
.email-suggest-btn:focus-visible{
  color: var(--green-dark);
  outline: none;
}

/* Cloudflare Turnstile widget (auto-rendered inside the contact form).
   Usually invisible — just gives the widget some breathing room. */
.contact-form .cf-turnstile{
  margin: .25rem 0 .9rem;
  min-height: 65px;
}

/* Inline error banner above the submit button when submission fails */
.form-error{
  background: #fdecec;
  color: #8a1f1f;
  padding: .75rem 1rem;
  border-radius: 10px;
  border: 1px solid #f4b8b8;
  font-size: .92rem;
  margin: 0 0 .9rem;
  line-height: 1.4;
}

/* Success state — replaces the form once Web3Forms confirms the submission */
.form-success{
  text-align: center;
  padding: 1.4rem .5rem .8rem;
}
.form-success-icon{
  width: 56px; height: 56px;
  margin: 0 auto .7rem;
  padding: 10px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green-deep);
  box-shadow: 0 0 0 6px rgba(193,232,153,.45);
}
.form-success h3{
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--green-deep);
  margin: 0 0 .4rem;
}
.form-success p{
  color: #4a4a4a;
  margin: 0 0 .4rem;
}
.form-success-extra{
  font-size: .95rem;
  color: #4a4a4a;
  margin: 1rem auto 0 !important;
  max-width: 40ch;
  line-height: 1.5;
}
.form-success-extra a{
  color: var(--green-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-success-meta{
  font-size: .9rem;
  color: #6a6a6a;
  margin-top: .9rem;
}

/* Footer */
.site-footer{
  background: var(--ink); color:#cfcfcf;
  padding: clamp(40px, 5vw, 64px) 0 1.2rem;
}
.site-footer a{ color:#fff; }
.site-footer a:hover{ color: var(--green); }
.footer-inner{ display:flex; flex-direction:column; gap: 2rem; }
.footer-brand{
  display:flex; gap: 1rem; align-items:center;
}
.footer-brand img{ width: 56px; height:56px; border-radius: 12px; }
.footer-name{ margin:0; font-family: var(--font-display); font-weight: 800; color:#fff; font-size: 1.05rem; }
.footer-tag{ margin:0; font-size:.85rem; opacity:.8; }
.footer-cols{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
@media (max-width: 720px){ .footer-cols{ grid-template-columns: 1fr; } }
.footer-cols h4{
  font-size: .78rem; letter-spacing:.18em; text-transform: uppercase;
  color: var(--green); margin-bottom: .6rem;
}
.footer-cols ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:.4rem; font-size:.95rem; }
.footer-legal{
  font-size: .8rem; color: #8a8a8a; text-align:center;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1rem; margin: 1rem 0 0;
}

/* Section foot (centered CTA below a grid, e.g. gallery Facebook button) */
.section-foot{
  margin-top: clamp(28px, 4vw, 40px);
  text-align: center;
}

/* Inline mid-page CTA — appears after Services and Process */
.inline-cta{
  margin: clamp(40px, 5vw, 56px) auto 0;
  max-width: 720px;
  padding: 1.6rem 1.8rem;
  background: #fff;
  border: 1px solid rgba(15,17,16,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display:flex; flex-direction:column; align-items:center; gap: 1rem;
}
.section-alt .inline-cta{
  background: #fff;
}
.inline-cta p{
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--ink);
}
.inline-cta-actions{
  display:flex; flex-wrap: wrap; justify-content:center; gap: .6rem;
}

/* Mobile floating action bar — two clear conversion paths */
.floating-bar{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
  gap: .55rem;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-top: 1px solid rgba(15,17,16,.08);
  box-shadow: 0 -6px 22px rgba(15,17,16,.08);
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.floating-bar.is-hidden{ transform: translateY(120%); opacity: 0; pointer-events: none; }
.floating-bar-quote{
  flex: 1;
  display: inline-flex; align-items:center; justify-content:center;
  padding: .85rem 1.1rem;
  background: var(--green-deep); color:#fff;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(85,136,59,.3);
}
.floating-bar-quote:active{ background: var(--green-dark); color:#fff; }
.floating-bar-call{
  flex: 0 0 auto;
  display: inline-flex; align-items:center; justify-content:center;
  width: 50px; height: 50px;
  background: var(--ink); color:#fff;
  border-radius: 50%;
  text-decoration: none;
}
.floating-bar-call:active{ background: var(--green-deep); color:#fff; }
@media (max-width: 880px){
  .floating-bar{ display: flex; }
  /* Give the page bottom breathing room so the bar never covers content */
  body{ padding-bottom: 80px; }
}

/* Service card — tight one-line under heading replaces prose */
.service-line{
  font-size: .95rem;
  color: #4a4a4a;
  margin: 0;
  flex: 0 0 auto;
}
.service-card .ticks{ margin-top: auto; padding-top: 1rem; }

/* "What we do" merged section — sub-block labels and compact service rows */
.works-sub-label{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-deep);
  text-align: center;
  margin: 0 0 1.4rem;
  position: relative;
}
.works-sub-label::before,
.works-sub-label::after{
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(30px, 8vw, 60px);
  height: 1px;
  background: rgba(85,136,59,.3);
}
.works-sub-label::before{ right: calc(50% + 6rem); }
.works-sub-label::after{ left: calc(50% + 6rem); }
@media (max-width: 540px){
  .works-sub-label::before,
  .works-sub-label::after{ display: none; }
}
.works-sub-label-2{
  margin-top: clamp(48px, 6vw, 72px);
}

.works-services{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 0;
}
@media (max-width: 900px){
  .works-services{ grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
.works-service{
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(15,17,16,.06);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.works-service .service-icon{
  width: 44px; height: 44px;
  flex-shrink: 0;
  margin: 0;
}
.works-service .service-icon svg{ width: 24px; height: 24px; }
.works-service h3{
  margin: 0 0 .15rem;
  font-size: 1rem;
}
.works-service p{
  margin: 0;
  font-size: .88rem;
  color: #5a5a5a;
  line-height: 1.35;
}

/* -------- Legal pages (privacy, etc) -------- */
.legal-page{
  padding: clamp(48px, 7vw, 90px) 0;
  background: var(--paper);
}
.legal-doc{
  max-width: 760px; margin: 0 auto;
  background: #fff;
  padding: clamp(28px, 4vw, 56px);
  border-radius: var(--radius);
  border: 1px solid rgba(15,17,16,.06);
  box-shadow: var(--shadow-sm);
}
.legal-eyebrow{
  font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em; font-size: .72rem;
  color: var(--green-deep); margin: 0 0 .6rem;
}
.legal-doc h1{
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin: 0 0 .35em;
}
.legal-meta{
  color: #777; font-size: .9rem; margin: 0 0 1.6rem;
}
.legal-intro{
  background: var(--mint-pale);
  padding: 1rem 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(85,136,59,.18);
  font-size: 1rem;
}
.legal-doc h2{
  font-size: 1.2rem;
  margin: 2.2rem 0 .6rem;
  color: var(--ink);
}
.legal-doc h2:first-of-type{ margin-top: 1.6rem; }
.legal-doc p, .legal-doc ul{
  color: #2a2a2a; font-size: 1rem; line-height: 1.65;
}
.legal-doc ul{ padding-left: 1.3rem; margin: 0 0 1rem; }
.legal-doc li{ margin-bottom: .35rem; }
.legal-doc a{ color: var(--green-deep); text-decoration: underline; text-underline-offset: 3px; }
.legal-doc a:hover{ color: var(--green-dark); }
.legal-back{
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(15,17,16,.08);
  font-family: var(--font-display); font-weight: 600;
}

/* Reveal animation */
.reveal{ opacity:0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in{ opacity:1; transform: none; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior: auto; }
}

/* -------- Intro band: mission + trust grid (one mint section) -------- */
.intro-band{
  padding-top: clamp(40px, 6vw, 64px);
  padding-bottom: clamp(40px, 6vw, 64px);
}
.intro-mission{
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.intro-band .trust-grid{
  border-top: 1px solid rgba(85,136,59,.18);
  padding-top: clamp(28px, 4vw, 40px);
}
.trust-grid{
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 720px){ .trust-grid{ grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; } }
.trust-grid li{
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-rows: auto auto;
  align-items: start;
  column-gap: .75rem;
  row-gap: .15rem;
  padding: .55rem .65rem;
  margin: -.55rem -.65rem; /* negate padding so layout stays tight */
  border-radius: 12px;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.trust-grid li:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,.55);
}
.trust-icon{
  grid-row: 1 / span 2;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--mint), var(--green));
  color: var(--ink);
}
.trust-icon svg{ width: 22px; height: 22px; }
.trust-grid strong{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .98rem;
  color: var(--ink);
  line-height: 1.25;
}
.trust-grid span{
  font-size: .85rem;
  color: #5a5a5a;
  line-height: 1.35;
}

/* -------- Our grass section -------- */
.grass-grid{
  display: grid; gap: 1.4rem;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  max-width: 920px;
  margin: 0 auto;
}
.grass-grid-two{ /* keep hook for the 2-card layout */ }
@media (max-width: 820px){ .grass-grid{ grid-template-columns: 1fr; max-width: 460px; } }

.grass-card{
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15,17,16,.06);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.grass-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(85,136,59,.25);
}
.grass-card-feature{
  border-color: rgba(85,136,59,.45);
  box-shadow: var(--shadow);
  outline: 2px solid rgba(147,221,54,.35);
  outline-offset: -2px;
}

.grass-photo{
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--mint);
}
.grass-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.grass-card:hover .grass-photo img{ transform: scale(1.04); }
.grass-photo::after{
  content: ""; position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 65%, rgba(15,17,16,.12));
}

.grass-body{
  padding: 1.4rem 1.6rem 1.6rem;
  display: flex; flex-direction: column; gap: .45rem;
  flex: 1;
}
.grass-tag{
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--mint-pale);
  padding: .25rem .6rem;
  border-radius: 999px;
}
.grass-tag-feature{
  color: #fff;
  background: var(--green-deep);
}
.grass-card h3{ margin: 0; font-size: 1.35rem; }
.grass-line{ color: #4a4a4a; font-size: 1rem; margin: 0; }
.grass-note{
  display: inline-flex;
  align-items: flex-start;
  gap: .4rem;
  margin: 0;
  padding: .55rem .7rem;
  background: var(--mint-pale);
  border-radius: 8px;
  font-size: .82rem;
  color: #4a4a4a;
  line-height: 1.4;
}
.grass-note svg{
  color: var(--green-deep);
  flex-shrink: 0;
  margin-top: 2px;
}
.grass-note a{
  color: var(--green-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.grass-card .ticks{ margin-top: .4rem; padding-top: 0; }

.grass-foot{
  margin: clamp(28px, 4vw, 40px) auto 0;
  max-width: 640px;
  text-align: center;
  color: #4a4a4a;
  font-size: 1rem;
}

/* -------- File upload (drag & drop) -------- */
.field-optional{
  font-weight: 500;
  color: #888;
  font-size: .82rem;
  margin-left: .3rem;
}
.file-drop{
  position: relative;
  display: block;
  padding: 1.4rem 1rem;
  border: 1.5px dashed rgba(15,17,16,.18);
  border-radius: 12px;
  background: #fbfdf7;
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .15s var(--ease);
}
.file-drop:hover{
  border-color: var(--green-deep);
  background: #fff;
}
.file-drop.is-dragover{
  border-color: var(--green-deep);
  background: var(--mint-pale);
  transform: scale(1.01);
}
.file-input{
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.file-drop-prompt{
  text-align: center;
  pointer-events: none;
  color: #4a4a4a;
}
.file-drop-prompt svg{ color: var(--green-deep); margin: 0 auto .4rem; }
.file-drop-prompt p{ margin: 0; font-size: .95rem; }
.file-drop-prompt strong{ color: var(--ink); }
.file-link{ color: var(--green-deep); text-decoration: underline; text-underline-offset: 3px; }
.file-hint{ font-size: .8rem !important; color: #777; margin-top: .25rem !important; }

.file-preview{
  list-style: none;
  padding: 0;
  margin: .8rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: .55rem;
}
.file-preview li{
  position: relative;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: #eee;
  box-shadow: var(--shadow-sm);
}
.file-preview img{
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.file-remove{
  position: absolute;
  top: 4px; right: 4px;
  width: 22px; height: 22px;
  border: 0; border-radius: 50%;
  background: rgba(15,17,16,.7);
  color: #fff;
  font-size: 14px; line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
  padding: 0;
}
.file-remove:hover{ background: var(--pop); }
.file-note{
  margin: .6rem 0 0;
  font-size: .82rem;
  color: #777;
  font-style: italic;
}
.file-note.file-note-warning{
  color: #8a1f1f;
  background: #fdecec;
  border: 1px solid #f4b8b8;
  font-style: normal;
  padding: .5rem .7rem;
  border-radius: 8px;
}

/* The skip-link target needs to suppress its focus outline because we
   programmatically focus it after the user clicks the skip link. */
main[tabindex]:focus{ outline: none; }

/* "Back to home" link at the top of secondary pages */
.page-back{
  margin: 0 0 1.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
}
.page-back a{
  color: var(--green-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .15s var(--ease), color .15s var(--ease);
}
.page-back a:hover{
  color: var(--green-dark);
  border-bottom-color: currentColor;
}

/* Compact FAQ link tucked under the "Ready to get a price?" CTA box */
.inline-cta-foot{
  margin: .9rem 0 0;
  font-size: .9rem;
  color: #5a5a5a;
  font-family: var(--font-body);
}
.inline-cta-foot a{
  color: var(--green-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.inline-cta-foot a:hover{ color: var(--green-dark); }

/* =========================================================
   Suburb / area landing pages
   ========================================================= */

.area-hero{
  padding: clamp(2.4rem, 5vw, 4rem) 0 clamp(1.6rem, 4vw, 3rem);
  background: linear-gradient(180deg, var(--mint-pale) 0%, #fff 100%);
}
.area-hero h1{
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  line-height: 1.1;
  margin: .6rem 0 .8rem;
}
.area-hero .lede{
  max-width: 60ch;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: #2c2f2c;
}
.area-hero .hero-ctas{ margin-top: 1.4rem; }

.crumbs{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  color: #5a635a;
  margin-bottom: .6rem;
}
.crumbs a{
  color: var(--green-deep);
  text-decoration: none;
}
.crumbs a:hover{ text-decoration: underline; }
.crumbs [aria-current]{ color: var(--ink); font-weight: 600; }

.area-prose{
  max-width: 70ch;
}
.area-prose h2{
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  margin: 1.6rem 0 .6rem;
}
.area-prose h2:first-child{ margin-top: 0; }
.area-prose p{
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0 0 1rem;
  color: #2c2f2c;
}
.area-prose .bullets{
  list-style: none;
  padding: 0;
  margin: .4rem 0 1.2rem;
}
.area-prose .bullets li{
  position: relative;
  padding: .35rem 0 .35rem 1.6rem;
  line-height: 1.55;
}
.area-prose .bullets li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .85rem;
  width: .6rem;
  height: .6rem;
  background: var(--green-bright);
  border-radius: 50%;
}
.area-prose .bullets strong{ color: var(--ink); }

.suburb-grid{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.suburb-card{
  background: #fff;
  border: 1px solid #e5ebe1;
  border-radius: 14px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.suburb-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(85, 136, 59, 0.12);
  border-color: var(--green-bright);
}
.suburb-card a{
  display: block;
  padding: 1.1rem 1.2rem 1.2rem;
  text-decoration: none;
  color: inherit;
}
.suburb-card h2,
.suburb-card h3{
  font-size: 1.1rem;
  margin: 0 0 .35rem;
  color: var(--ink);
}
.suburb-card p{
  margin: 0;
  font-size: .92rem;
  color: #5a635a;
  line-height: 1.45;
}
.suburb-cta{
  display: inline-block;
  margin-top: .8rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--green-deep);
}

.area-other-note{
  margin-top: 1.6rem;
  text-align: center;
  color: #5a635a;
}
.area-other-note a{ color: var(--green-deep); font-weight: 600; }

.area-cta-band{
  text-align: center;
}
.area-cta-band h2{
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 0 0 .5rem;
}
.area-cta-band p{
  margin: 0 auto 1.2rem;
  max-width: 50ch;
}
.area-cta-band .inline-cta-actions{
  justify-content: center;
}

/* =========================================================
   FAQ accordion
   ========================================================= */

.faq-list{
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: .7rem;
}
.faq-item{
  background: #fff;
  border: 1px solid #e5ebe1;
  border-radius: 12px;
  padding: .1rem .4rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open]{
  border-color: var(--green-bright);
  box-shadow: 0 4px 12px rgba(85, 136, 59, 0.08);
}
.faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 1rem 2.4rem 1rem 1rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  position: relative;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green-deep);
  transition: transform .2s ease;
  line-height: 1;
}
.faq-item[open] summary::after{
  content: "−";
}
.faq-item summary:hover{
  color: var(--green-deep);
}
.faq-item p{
  margin: 0 1rem 1rem;
  padding-top: .2rem;
  color: #444;
  line-height: 1.6;
  font-size: .98rem;
}
.faq-item p a{
  color: var(--green-deep);
  font-weight: 600;
}
