/* ============================================================
   EAST76 LANDSCAPING — v2 Premium Redesign
   Light/white base theme — Montserrat + Inter
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700;1,800;1,900&family=Inter:wght@400;500;600&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── TOKENS ── */
:root {
  --green:    #578234;
  --green-dk: #3f6126;
  --green-lt: #72b83e;
  --ink:      #111311;
  --gray-1:   #2e3228;
  --gray-2:   #5a6354;
  --gray-3:   #9aa494;
  --stone:    #f5f3ef;
  --white:    #ffffff;
  --border:   #e4e6e0;
  --radius:   8px;
  --max:      1160px;
  --nav-h:    76px;
  --sh:       0 2px 16px rgba(17,19,17,.08);
  --sh-lg:    0 8px 40px rgba(17,19,17,.13);
}

/* ── BASE ── */
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px; line-height: 1.65;
  color: var(--ink); background: var(--white);
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5 { font-family: 'Montserrat', sans-serif; line-height: 1.15; }

/* ── UTILITIES ── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--green); margin-bottom: 10px;
}
.green-line { width: 44px; height: 3px; background: var(--green); border-radius: 2px; margin: 14px 0 20px; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: .82rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 4px;
  border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-primary { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { background: var(--green-dk); border-color: var(--green-dk); }
.btn-ghost-green { background: transparent; color: var(--green); border-color: var(--green); }
.btn-ghost-green:hover { background: var(--green); color: #fff; }
.btn-white { background: #fff; color: var(--ink); border-color: #fff; }
.btn-white:hover { background: var(--stone); }
.btn-ghost-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost-dark:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ── LOGO SVG ── */
.logo-svg { height: 50px; width: auto; }

/* ── HEADER / NAV ── */
header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--sh);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: var(--nav-h);
}
.brand { display: flex; align-items: center; }
nav ul { display: flex; gap: 26px; align-items: center; }
nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: .76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--gray-2); padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
nav a:hover, nav a.active { color: var(--green); border-bottom-color: var(--green); }
.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: .76rem;
  letter-spacing: .07em; text-transform: uppercase;
  background: var(--green); color: #fff;
  padding: 10px 20px; border-radius: 4px;
  transition: background .2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--green-dk); border-color: var(--green-dk); }
.menu-btn { display: none; color: var(--ink); font-size: 1.6rem; line-height: 1; padding: 4px; }

@media (max-width: 900px) {
  nav ul { display: none; }
  .menu-btn { display: block; }
  nav ul.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 8px 28px 18px; z-index: 199;
    box-shadow: 0 8px 24px rgba(0,0,0,.09);
  }
  nav ul.open li a {
    display: block; padding: 12px 0;
    border-bottom: 1px solid var(--border); font-size: .9rem;
  }
  nav ul.open li:last-child a { border-bottom: none; }
  .nav-cta { display: none; }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--ink); color: #fff;
  padding: 80px 0 68px; text-align: center;
  border-bottom: 3px solid var(--green);
}
.page-hero .eyebrow { color: var(--green-lt); }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900; letter-spacing: -.01em; margin-bottom: 14px;
}
.page-hero h1 em { font-style: normal; color: var(--green-lt); }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }

/* ── HOME HERO ── */
.hero {
  position: relative; color: #fff;
  min-height: 100svh; display: flex; align-items: center;
  background: linear-gradient(165deg, rgba(8,12,8,.62), rgba(8,12,8,.82)),
              url('../images/hero-bg.jpg') center/cover no-repeat;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--green);
}
.hero-content { padding: 120px 0 100px; max-width: 740px; animation: heroIn .9s ease both; }
@keyframes heroIn { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:none; } }
.hero .eyebrow { color: var(--green-lt); }
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 900;
  line-height: 1.0; letter-spacing: -.02em; margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--green-lt); display: block; }
.hero p { font-size: 1.18rem; color: rgba(255,255,255,.82); max-width: 520px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── INTRO + STATS (home) ── */
.intro-section { padding: 88px 0 72px; }
.intro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.intro-text .section-title { font-size: clamp(1.9rem,4vw,2.8rem); font-weight: 900; line-height: 1.1; }
.intro-text p { color: var(--gray-2); margin-top: 16px; font-size: 1.05rem; }
.stats-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.stat-box {
  background: var(--stone); border-radius: var(--radius);
  padding: 28px 24px; border-left: 3px solid var(--green);
}
.stat-box .n { font-family: 'Montserrat',sans-serif; font-size: 2.4rem; font-weight: 900; color: var(--green); line-height: 1; }
.stat-box .l { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gray-2); margin-top: 6px; }

/* ── SERVICES GRID (home preview) ── */
.services-section { padding: 88px 0; background: var(--stone); }
.section-head { margin-bottom: 52px; }
.section-head h2 { font-size: clamp(1.9rem,4vw,2.8rem); font-weight: 900; color: var(--ink); line-height: 1.1; }
.section-head p { color: var(--gray-2); margin-top: 12px; font-size: 1.05rem; max-width: 560px; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.svc-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--sh);
  transition: box-shadow .3s, transform .3s;
}
.svc-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.svc-card .photo-wrap { height: 200px; overflow: hidden; }
.svc-card .photo-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.svc-card:hover .photo-wrap img { transform: scale(1.07); }
.svc-card .card-body { padding: 22px 24px 26px; }
.card-tag {
  display: inline-block; background: var(--green); color: #fff;
  font-family: 'Montserrat',sans-serif; font-size: .62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 3px 8px; border-radius: 2px; margin-bottom: 8px;
}
.svc-card h3 { font-size: 1.02rem; font-weight: 800; color: var(--ink); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .02em; }
.svc-card p { font-size: .92rem; color: var(--gray-2); line-height: 1.55; }

/* ── SERVICES FULL (services.html) ── */
.services-full { padding: 88px 0; }
.svc-full-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.svc-full-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: var(--white); box-shadow: var(--sh);
  transition: box-shadow .3s, transform .3s;
}
.svc-full-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.svc-full-card .photo-wrap { height: 240px; overflow: hidden; }
.svc-full-card .photo-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.svc-full-card:hover .photo-wrap img { transform: scale(1.06); }
.svc-full-card .card-body { padding: 28px; }
.svc-full-card h3 { font-size: 1.12rem; font-weight: 800; text-transform: uppercase; color: var(--ink); letter-spacing: .02em; margin: 8px 0; }
.svc-full-card p { font-size: .95rem; color: var(--gray-2); line-height: 1.6; }
.svc-full-card ul { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.svc-full-card li { font-size: .9rem; color: var(--gray-1); padding-left: 16px; position: relative; }
.svc-full-card li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; background: var(--green-lt); border-radius: 1px;
}

/* ── GALLERY (home preview) ── */
.gallery-section { padding: 88px 0; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  grid-auto-rows: 230px; gap: 10px;
}
.g-tile { position: relative; overflow: hidden; border-radius: 4px; background: var(--border); }
.g-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.g-tile:hover img { transform: scale(1.06); }
.cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(10,14,10,.85));
  color: #fff; padding: 28px 14px 12px;
  opacity: 0; transition: opacity .3s;
}
.g-tile:hover .cap { opacity: 1; }
.cap b { font-family: 'Montserrat',sans-serif; font-size: .88rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; display: block; }
.cap small { font-size: .72rem; color: #c5d0be; letter-spacing: .04em; }
.g-tile.wide { grid-column: span 2; }
.g-tile.tall { grid-row: span 2; }
.gallery-cta { text-align: center; margin-top: 40px; }

/* ── GALLERY FULL (work.html) ── */
.gallery-full { padding: 88px 0; }
.gallery-full-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 230px; gap: 10px; }

/* tile-cap for work page */
.tile-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(10,14,10,.85));
  color: #fff; padding: 28px 14px 12px;
  opacity: 0; transition: opacity .3s;
}
.g-tile:hover .tile-cap { opacity: 1; }
.tile-cap b { font-family: 'Montserrat',sans-serif; font-size: .88rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; display: block; }
.tile-cap small { font-size: .72rem; color: #c5d0be; letter-spacing: .04em; }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 88px 0; background: var(--stone); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
.tcard {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--sh);
  border-top: 3px solid var(--green);
}
.tcard .stars { color: var(--green); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.tcard blockquote { font-size: 1rem; color: var(--gray-1); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.tcard .reviewer { font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink); }
.tcard .reviewer span { font-weight: 400; color: var(--gray-3); font-family: 'Inter',sans-serif; text-transform: none; letter-spacing: 0; font-size: .85rem; }

/* ── COMMUNITY TEASER (home) ── */
.community-section { padding: 88px 0; }
.community-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.community-text h2 { font-size: clamp(1.9rem,4vw,2.7rem); font-weight: 900; color: var(--ink); line-height: 1.1; }
.community-text p { color: var(--gray-2); margin-top: 16px; font-size: 1.05rem; }
.community-text .btn { margin-top: 28px; }
.community-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.community-imgs .photo-cell { height: 210px; overflow: hidden; border-radius: 4px; }
.community-imgs .photo-cell img { width: 100%; height: 100%; object-fit: cover; }

/* ── COMMUNITY PAGE ── */
.community-page { padding: 88px 0; }
.relief-intro { max-width: 740px; margin-bottom: 52px; }
.relief-intro h2 { font-size: clamp(1.9rem,4vw,2.7rem); font-weight: 900; color: var(--ink); line-height: 1.1; }
.relief-intro p { color: var(--gray-2); margin-top: 14px; font-size: 1.05rem; }
.relief-imgs { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 72px; }
.relief-imgs .photo-cell { height: 240px; overflow: hidden; border-radius: 4px; }
.relief-imgs .photo-cell img { width: 100%; height: 100%; object-fit: cover; }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-text h2 { font-size: clamp(1.9rem,4vw,2.7rem); font-weight: 900; color: var(--ink); line-height: 1.1; }
.about-text p { color: var(--gray-2); margin-top: 14px; font-size: 1.05rem; }
.about-photo { border-radius: var(--radius); overflow: hidden; height: 400px; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--ink); color: #fff; padding: 80px 0; text-align: center; }
.cta-banner h2 { font-size: clamp(1.9rem,4vw,2.8rem); font-weight: 900; line-height: 1.1; }
.cta-banner p { color: rgba(255,255,255,.7); margin: 16px auto 36px; max-width: 520px; font-size: 1.05rem; }
.cta-banner-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact-section { padding: 88px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-info h2 { font-size: clamp(1.9rem,4vw,2.7rem); font-weight: 900; color: var(--ink); line-height: 1.1; }
.contact-info p { color: var(--gray-2); margin-top: 14px; font-size: 1.05rem; }
.cinfo { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.cinfo-row { display: flex; gap: 16px; align-items: baseline; }
.cinfo-label { font-family: 'Montserrat',sans-serif; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--green); min-width: 96px; flex-shrink: 0; }
.cinfo-val { font-size: 1rem; color: var(--ink); }
.cinfo-val a { color: var(--ink); transition: color .2s; }
.cinfo-val a:hover { color: var(--green); }
.contact-form-wrap { background: var(--stone); border-radius: var(--radius); padding: 36px; border: 1px solid var(--border); }
.contact-form-wrap label { display: block; font-family: 'Montserrat',sans-serif; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--gray-2); margin-bottom: 6px; }
.contact-form-wrap input,
.contact-form-wrap textarea,
.contact-form-wrap select {
  width: 100%; padding: 12px 14px; margin-bottom: 18px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 4px; font-size: .96rem; color: var(--ink);
  transition: border-color .2s;
}
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus,
.contact-form-wrap select:focus { outline: none; border-color: var(--green); }
.contact-form-wrap button[type=submit] {
  width: 100%; background: var(--green); color: #fff; border: none;
  padding: 15px; font-family: 'Montserrat',sans-serif; font-weight: 700;
  font-size: .88rem; text-transform: uppercase; letter-spacing: .08em;
  border-radius: 4px; cursor: pointer; transition: background .2s;
}
.contact-form-wrap button[type=submit]:hover { background: var(--green-dk); }

/* ── MAP ── */
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); height: 340px; margin-top: 52px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── SCHEDULE ── */
.sched-section { padding: 88px 0; background: var(--stone); }
.toggle-row { display: flex; justify-content: center; gap: 0; margin-bottom: 32px; }
.toggle-row button { font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; padding: 12px 28px; border: 2px solid var(--border); background: var(--white); color: var(--gray-2); cursor: pointer; transition: .2s; }
.toggle-row button:first-child { border-radius: 4px 0 0 4px; }
.toggle-row button:last-child  { border-radius: 0 4px 4px 0; border-left: none; }
.toggle-row button.active { background: var(--green); color: #fff; border-color: var(--green); }
.panel { display: none; }
.panel.show { display: block; }
.sched-wrap { max-width: 720px; margin: 0 auto; }

/* Chat assistant */
.assistant { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--sh); }
.as-top { background: var(--green); padding: 16px 20px; display: flex; align-items: center; gap: 12px; }
.as-top .dot { width: 10px; height: 10px; border-radius: 50%; background: #9ce88a; box-shadow: 0 0 0 3px rgba(156,232,138,.3); flex-shrink: 0; }
.as-top b { font-family: 'Montserrat',sans-serif; text-transform: uppercase; letter-spacing: .06em; color: #fff; font-size: .9rem; }
.as-top small { color: rgba(255,255,255,.75); font-size: .74rem; display: block; }
.chat { padding: 22px 20px; min-height: 260px; max-height: 360px; overflow-y: auto; }
.msg { margin-bottom: 14px; display: flex; }
.msg .bub { padding: 11px 15px; border-radius: 12px; font-size: .96rem; max-width: 82%; line-height: 1.5; }
.msg.bot .bub { background: var(--stone); color: var(--ink); border-bottom-left-radius: 3px; }
.msg.me { justify-content: flex-end; }
.msg.me .bub { background: var(--green); color: #fff; border-bottom-right-radius: 3px; }
.opts { display: flex; flex-wrap: wrap; gap: 9px; padding: 0 20px 18px; }
.opts button { background: transparent; border: 1.5px solid var(--border); color: var(--gray-1); padding: 9px 16px; border-radius: 20px; font-size: .9rem; cursor: pointer; transition: .2s; }
.opts button:hover { background: var(--green); color: #fff; border-color: var(--green); }
.as-field { display: flex; gap: 8px; padding: 0 20px 20px; }
.as-field input { flex: 1; background: var(--stone); border: 1px solid var(--border); color: var(--ink); padding: 11px; border-radius: 4px; font-family: inherit; font-size: .95rem; }
.as-field input:focus { outline: none; border-color: var(--green); }
.as-field button { background: var(--green); color: #fff; border: 0; padding: 0 20px; border-radius: 4px; font-family: 'Montserrat',sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; cursor: pointer; }
.demo-note { font-size: .78rem; color: var(--gray-3); margin-top: 10px; text-align: center; }

/* Booking form */
.booker { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--sh); }
.booker h3 { font-family: 'Montserrat',sans-serif; font-weight: 800; text-transform: uppercase; color: var(--ink); font-size: 1.15rem; margin-bottom: 4px; }
.booker .sub { color: var(--gray-2); font-size: .92rem; margin-bottom: 26px; }
.seg { margin-bottom: 24px; }
.seg .lbl { font-family: 'Montserrat',sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; font-size: .7rem; color: var(--green); margin-bottom: 10px; display: block; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { background: var(--stone); border: 1.5px solid var(--border); color: var(--gray-1); padding: 10px 18px; border-radius: 4px; cursor: pointer; font-size: .9rem; transition: .2s; }
.chip.sel { background: var(--green); color: #fff; border-color: var(--green); }
.days { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; }
.day { background: var(--stone); border: 1.5px solid var(--border); color: var(--gray-1); padding: 10px 4px; border-radius: 4px; cursor: pointer; text-align: center; transition: .2s; }
.day:hover { border-color: var(--green); }
.day.sel { background: var(--green); color: #fff; border-color: var(--green); }
.day .dow { font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: .65rem; text-transform: uppercase; letter-spacing: .06em; display: block; opacity: .8; }
.day .dnum { font-size: 1.25rem; font-family: 'Montserrat',sans-serif; font-weight: 800; line-height: 1.1; }
.day .mon { font-size: .6rem; text-transform: uppercase; letter-spacing: .05em; opacity: .7; }
.times { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.time { background: var(--stone); border: 1.5px solid var(--border); color: var(--gray-1); padding: 9px 4px; border-radius: 4px; cursor: pointer; text-align: center; font-size: .86rem; transition: .2s; }
.time.sel { background: var(--green); color: #fff; border-color: var(--green); }
.booker input, .booker textarea { width: 100%; background: var(--stone); border: 1px solid var(--border); color: var(--ink); padding: 12px; border-radius: 4px; font-family: inherit; font-size: .95rem; margin-bottom: 12px; }
.booker input:focus, .booker textarea:focus { outline: none; border-color: var(--green); }
.booker .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booker .submit { width: 100%; background: var(--green); color: #fff; border: 0; padding: 15px; font-family: 'Montserrat',sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; font-size: .9rem; cursor: pointer; border-radius: 4px; margin-top: 6px; transition: background .2s; }
.booker .submit:hover { background: var(--green-dk); }
.confirm { text-align: center; padding: 32px 10px; }
.confirm .ck { width: 64px; height: 64px; border-radius: 50%; background: var(--green); margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
.confirm h3 { font-size: 1.5rem; color: var(--ink); margin-bottom: 10px; }
.confirm p { color: var(--gray-2); margin-bottom: 6px; }
.confirm .det { background: var(--stone); border-radius: 4px; padding: 18px; margin: 20px auto; text-align: left; display: inline-block; min-width: 290px; }
.confirm .det div { display: flex; justify-content: space-between; gap: 24px; padding: 5px 0; font-size: .95rem; }
.confirm .det .k { color: var(--green); font-family: 'Montserrat',sans-serif; font-weight: 700; text-transform: uppercase; font-size: .7rem; letter-spacing: .07em; }
.confirm .det .v { color: var(--ink); }
.sched-contact { text-align: center; margin-top: 36px; color: var(--gray-2); font-size: .95rem; }
.sched-contact a { color: var(--green); }
.sched-contact strong { color: var(--ink); font-family: 'Montserrat',sans-serif; }

/* ── FAQ ── */
.faq-section { padding: 88px 0; }
.faq-group { margin-bottom: 40px; }
.faq-group-title { font-size: 1.1rem; font-weight: 800; color: var(--ink); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 2px solid var(--green); }
.faq-grid { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; background: var(--white); font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: .95rem; color: var(--ink); cursor: pointer; transition: background .2s; gap: 16px; }
.faq-q:hover { background: var(--stone); }
.faq-item.open .faq-q { background: var(--stone); color: var(--green); }
.faq-q .icon { font-size: 1.3rem; font-weight: 300; color: var(--green); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 24px 20px; color: var(--gray-2); font-size: .97rem; line-height: 1.7; background: var(--stone); }
.faq-item.open .faq-a { display: block; }

/* ── FOOTER ── */
footer { background: var(--ink); color: rgba(255,255,255,.6); padding: 60px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 200px 1fr 1fr; gap: 52px; margin-bottom: 48px; }
.footer-logo-wrap { display: flex; align-items: flex-start; }
.footer-nav h4, .footer-contact-col h4 { font-family: 'Montserrat',sans-serif; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: .9rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-nav a:hover { color: var(--green-lt); }
.footer-contact-col p { font-size: .9rem; line-height: 2.0; }
.footer-contact-col a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-contact-col a:hover { color: var(--green-lt); }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.22); border-top: 1px solid rgba(255,255,255,.07); padding-top: 28px; text-align: center; }

/* ── THANKS PAGE ── */
.thanks-section { min-height: 60vh; display: flex; align-items: center; padding: 80px 0; }
.thanks-card { max-width: 520px; margin: 0 auto; text-align: center; padding: 48px 40px; background: var(--stone); border-radius: var(--radius); border: 1px solid var(--border); }
.thanks-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.thanks-icon svg { width: 36px; height: 36px; }
.thanks-card h1 { font-size: 1.9rem; font-weight: 900; color: var(--ink); margin-bottom: 14px; }
.thanks-card p { color: var(--gray-2); margin-bottom: 20px; font-size: 1.05rem; }
.thanks-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1040px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .svc-full-grid { grid-template-columns: 1fr; }
  .intro-inner { grid-template-columns: 1fr; gap: 48px; }
  .community-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
  .gallery-full-grid { grid-template-columns: repeat(3,1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-logo-wrap { grid-column: span 2; }
}
@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 180px; }
  .g-tile.tall { grid-row: span 1; }
  .gallery-full-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 180px; }
  .relief-imgs { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-logo-wrap { grid-column: span 1; }
  .days { grid-template-columns: repeat(3,1fr); }
  .times { grid-template-columns: repeat(3,1fr); }
  .booker .row2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .hero h1 { font-size: 2.4rem; }
  .gallery-grid, .gallery-full-grid { grid-template-columns: 1fr; }
  .relief-imgs { grid-template-columns: 1fr; }
}
