/* ============================================================
   Samazka Gardening & Landscaping LLC — brochure site
   Palette keyed to the brand logo: foliage green + deep garden
   green + turquoise water-wave on a warm off-white canvas.
   ============================================================ */

:root{
  --bg:        #F7FAF5;
  --bg-2:      #EEF4E9;
  --surface:   #FFFFFF;
  --text:      #16291A;
  --muted:     #5E6F62;
  --primary:   #2E8B33;
  --secondary: #1B4023;
  --accent:    #1F9AA8;
  --accent-deep:#157682;
  --border:    #E1E9DC;
  --focus:     #1F9AA8;

  --shadow-sm: 0 1px 2px rgba(22,41,26,.05), 0 1px 3px rgba(22,41,26,.04);
  --shadow-md: 0 4px 14px rgba(22,41,26,.07), 0 2px 6px rgba(22,41,26,.05);
  --shadow-lg: 0 18px 50px -12px rgba(22,41,26,.22), 0 8px 20px -10px rgba(22,41,26,.14);

  --r-sm: 10px;
  --r:    14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);

  --font-head: 'Bricolage Grotesque', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;

  --header-h: 124px;
}

/* heading font tweak hook */
:root[data-head="serif"]{ --font-head: 'Newsreader', Georgia, serif; }

*{ box-sizing: border-box; }
html{ -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior: auto; } }

body{
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1,h2,h3,h4{
  font-family: var(--font-head);
  color: var(--secondary);
  line-height: 1.06;
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
p{ margin: 0; text-wrap: pretty; }
a{ color: inherit; text-decoration: none; }
img{ display: block; max-width: 100%; }
button{ font-family: inherit; cursor: pointer; }

:focus-visible{ outline: 3px solid var(--focus); outline-offset: 2px; border-radius: 4px; }

.wrap{ max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.eyebrow{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: .55em;
}
.eyebrow::before{
  content:""; width: 22px; height: 2px; background: var(--accent); border-radius: 2px;
}
.section{ padding-block: clamp(64px, 9vw, 120px); }
.section-head{ max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head h2{
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  margin-top: 14px;
}
.section-head p{ color: var(--muted); font-size: 1.08rem; margin-top: 16px; }

/* ---------- buttons ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-weight: 700; font-size: .98rem; line-height: 1;
  padding: 15px 24px; border-radius: var(--r-pill);
  border: 1.5px solid transparent; min-height: 50px;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg{ width: 19px; height: 19px; flex: none; }
.btn-primary{ background: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover{ background: var(--secondary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost{ background: var(--surface); color: var(--secondary); border-color: var(--border); }
.btn-ghost:hover{ border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-wa{ background: #1FA855; color:#fff; }
.btn-wa:hover{ background:#178843; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg{ padding: 17px 30px; font-size: 1.05rem; min-height: 56px; }
.btn-block{ width: 100%; }

/* link with arrow */
.tlink{
  display:inline-flex; align-items:center; gap:.5em; font-weight:700; color: var(--primary);
  font-size:.98rem;
}
.tlink svg{ width:16px; height:16px; transition: transform .2s ease; }
.tlink:hover svg{ transform: translateX(4px); }

/* ============================================================
   HEADER
   ============================================================ */
.header{
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.header[data-scrolled="true"]{ border-color: var(--border); box-shadow: var(--shadow-sm); }
.header-in{
  height: var(--header-h);
  display: flex; align-items: center; gap: 24px;
}
.brand{ display:flex; align-items:center; gap: 12px; margin-right: auto; }
.brand img{ height: 112px; width:auto; }
.nav{ display: flex; align-items: center; gap: 6px; }
.nav a{
  font-weight: 600; font-size: .96rem; color: var(--secondary);
  padding: 9px 14px; border-radius: var(--r-pill);
  transition: background .18s ease, color .18s ease;
}
.nav a:hover{ background: var(--bg-2); color: var(--primary); }
.header-cta{ display: flex; align-items: center; gap: 12px; }
.header-phone{
  display:inline-flex; align-items:center; gap:.5em; font-weight:700; color: var(--secondary);
  font-size:.96rem;
}
.header-phone svg{ width:18px; height:18px; color: var(--primary); }

.hamburger{
  display:none; width:48px; height:48px; border-radius: var(--r-sm);
  border:1px solid var(--border); background: var(--surface); align-items:center; justify-content:center;
}
.hamburger svg{ width:24px; height:24px; color: var(--secondary); }

/* mobile menu */
.mobile-menu{
  position: fixed; inset: 0; z-index: 80;
  background: var(--surface);
  display: flex; flex-direction: column;
  padding: 18px var(--gutter) 40px;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  overflow-y: auto;
}
.mobile-menu[data-open="true"]{ opacity:1; transform: none; pointer-events: auto; }
.mobile-menu-top{ height: var(--header-h); display:flex; align-items:center; }
.mobile-menu-top img{ height: 88px; margin-right:auto; }
.mclose{ width:48px;height:48px;border-radius:var(--r-sm);border:1px solid var(--border);background:var(--surface);display:flex;align-items:center;justify-content:center; }
.mclose svg{ width:24px;height:24px; }
.mobile-menu nav{ display:flex; flex-direction:column; gap:4px; margin-top: 18px; }
.mobile-menu nav a{
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 600; color: var(--secondary);
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.mobile-menu .mm-actions{ margin-top: auto; display:flex; flex-direction:column; gap:12px; padding-top: 28px; }

/* ============================================================
   HERO
   ============================================================ */
.hero{ position: relative; padding-top: clamp(36px, 5vw, 64px); padding-bottom: clamp(56px, 7vw, 96px); }
.hero-grid{
  display:grid; grid-template-columns: 1.04fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: center;
}
.hero-eyebrow-loc{ }
.hero h1{
  font-size: clamp(2.55rem, 6vw, 4.4rem);
  margin-top: 18px;
  letter-spacing: -0.02em;
}
.hero h1 em{ font-style: normal; color: var(--primary); }
.hero-sub{ font-size: clamp(1.08rem, 1.6vw, 1.28rem); color: var(--muted); margin-top: 22px; max-width: 33ch; }
.hero-actions{ display:flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-foot{ display:flex; align-items:center; gap: 18px; margin-top: 30px; flex-wrap:wrap; color: var(--muted); font-size:.92rem; }
.hero-foot .dot{ width:5px;height:5px;border-radius:50%;background:var(--accent); }

.hero-media{ position: relative; }
.hero-media .frame{
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/5; background: var(--bg-2);
}
.hero-media .frame img{ width:100%; height:100%; object-fit: cover; }
.hero-badge{
  position:absolute; left: -22px; bottom: 34px; z-index: 2;
  background: var(--surface); border-radius: var(--r); box-shadow: var(--shadow-lg);
  padding: 16px 20px; display:flex; align-items:center; gap: 14px; max-width: 270px;
  border: 1px solid var(--border);
}
.hero-badge .ic{ width:44px;height:44px;border-radius:12px;background:var(--bg-2);display:flex;align-items:center;justify-content:center;flex:none;color:var(--primary); }
.hero-badge .ic svg{ width:24px;height:24px; }
.hero-badge b{ display:block; font-family:var(--font-head); color:var(--secondary); font-size:1rem; }
.hero-badge span{ font-size:.82rem; color: var(--muted); line-height:1.35; }
.hero-leaf{ position:absolute; color: var(--primary); opacity:.10; pointer-events:none; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust{
  border-block: 1px solid var(--border); background: var(--surface);
}
.trust-in{ display:grid; grid-template-columns: repeat(3,1fr); }
.trust-item{ display:flex; align-items:center; gap:14px; padding: 26px 20px; }
.trust-item + .trust-item{ border-left: 1px solid var(--border); }
.trust-item .ic{ width:46px;height:46px;border-radius:12px;background:var(--bg-2);display:flex;align-items:center;justify-content:center;color:var(--accent);flex:none; }
.trust-item .ic svg{ width:24px;height:24px; }
.trust-item b{ font-family:var(--font-head); color:var(--secondary); font-size:1.02rem; display:block; }
.trust-item span{ color: var(--muted); font-size:.9rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.svc-card{
  background: var(--surface); border:1px solid var(--border); border-radius: var(--r-lg);
  overflow:hidden; display:flex; flex-direction:column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.svc-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-photo{ aspect-ratio: 16/11; overflow:hidden; background: var(--bg-2); position:relative; }
.svc-photo img{ width:100%;height:100%;object-fit:cover; transition: transform .5s ease; }
.svc-card:hover .svc-photo img{ transform: scale(1.05); }
.svc-num{ position:absolute; top:12px; left:12px; background: color-mix(in srgb, var(--secondary) 78%, transparent); color:#fff; font-family:var(--font-head); font-size:.8rem; font-weight:600; padding:5px 10px; border-radius: var(--r-pill); backdrop-filter: blur(4px); }
.svc-body{ padding: 22px 22px 24px; display:flex; flex-direction:column; flex:1; }
.svc-body h3{ font-size: 1.28rem; }
.svc-body p{ color: var(--muted); font-size: .97rem; margin-top: 10px; flex:1; }
.svc-body .tlink{ margin-top: 18px; }
.svc-note{
  margin-top: 28px; display:flex; gap:12px; align-items:flex-start;
  background: var(--bg-2); border:1px dashed var(--border); border-radius: var(--r);
  padding: 16px 18px; color: var(--muted); font-size:.92rem;
}
.svc-note svg{ width:20px;height:20px;color:var(--accent);flex:none;margin-top:2px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery.section{ background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.gal-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:24px; flex-wrap:wrap; }
.gal-filters{ display:flex; gap:8px; flex-wrap:wrap; margin-top: 24px; }
.gal-filters button{
  border:1px solid var(--border); background:var(--surface); color:var(--secondary);
  font-weight:600; font-size:.9rem; padding:9px 17px; border-radius:var(--r-pill);
  transition: all .18s ease; min-height:42px;
}
.gal-filters button:hover{ border-color: var(--primary); color: var(--primary); }
.gal-filters button[data-active="true"]{ background: var(--secondary); color:#fff; border-color: var(--secondary); }
.gal-grid{
  margin-top: 34px;
  columns: 3; column-gap: 18px;
}
.gal-item{
  break-inside: avoid; margin-bottom: 18px; border-radius: var(--r); overflow:hidden;
  position: relative; cursor: pointer; background: var(--bg-2);
  box-shadow: var(--shadow-sm); display:block; width:100%; border:none; padding:0;
}
.gal-item img{ width:100%; height:auto; display:block; transition: transform .5s ease; }
.gal-item:hover img{ transform: scale(1.06); }
.gal-item .ov{
  position:absolute; inset:0; display:flex; align-items:flex-end; padding:16px;
  background: linear-gradient(0deg, rgba(11,24,13,.62) 0%, rgba(11,24,13,0) 50%);
  opacity:0; transition: opacity .25s ease;
}
.gal-item:hover .ov{ opacity:1; }
.gal-item .ov span{ color:#fff; font-weight:600; font-size:.92rem; }
.gal-item .tag{
  position:absolute; top:12px; left:12px; font-size:.72rem; font-weight:700; letter-spacing:.04em;
  text-transform:uppercase; color:#fff; background: color-mix(in srgb, var(--accent-deep) 82%, transparent);
  padding:4px 9px; border-radius: var(--r-pill); backdrop-filter: blur(4px);
  opacity:0; transition: opacity .25s ease;
}
.gal-item:hover .tag{ opacity:1; }

/* lightbox */
.lightbox{
  position: fixed; inset:0; z-index: 100; background: rgba(8,18,10,.92);
  display:flex; align-items:center; justify-content:center; padding: 24px;
  opacity:0; pointer-events:none; transition: opacity .25s ease;
}
.lightbox[data-open="true"]{ opacity:1; pointer-events:auto; }
.lb-img{ max-width: min(1000px, 92vw); max-height: 84vh; border-radius: var(--r); box-shadow: var(--shadow-lg); }
.lb-cap{ position:absolute; bottom: 26px; left:0; right:0; text-align:center; color:#fff; font-size:.95rem; opacity:.9; }
.lb-btn{
  position:absolute; top:50%; transform:translateY(-50%); width:54px;height:54px;border-radius:50%;
  background: rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.2); color:#fff;
  display:flex; align-items:center; justify-content:center; backdrop-filter: blur(6px);
  transition: background .18s ease;
}
.lb-btn:hover{ background: rgba(255,255,255,.24); }
.lb-btn svg{ width:26px;height:26px; }
.lb-prev{ left: 18px; } .lb-next{ right: 18px; }
.lb-close{ top: 18px; right: 18px; transform:none; width:48px;height:48px; }

/* ============================================================
   MAINTENANCE
   ============================================================ */
.maint-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.plan{
  background: var(--surface); border:1px solid var(--border); border-radius: var(--r-lg);
  padding: 30px 28px; display:flex; flex-direction:column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.plan:hover{ transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan.featured{ border-color: var(--primary); box-shadow: var(--shadow-md); position:relative; }
.plan.featured::before{
  content:"Most popular for villas"; position:absolute; top:-12px; left:28px;
  background: var(--primary); color:#fff; font-size:.74rem; font-weight:700; letter-spacing:.04em;
  text-transform:uppercase; padding:5px 12px; border-radius: var(--r-pill);
}
.plan .pic{ width:50px;height:50px;border-radius:14px;background:var(--bg-2);display:flex;align-items:center;justify-content:center;color:var(--primary);margin-bottom:18px; }
.plan .pic svg{ width:26px;height:26px; }
.plan h3{ font-size:1.35rem; }
.plan .tagline{ color:var(--muted); font-size:.95rem; margin-top:8px; }
.plan ul{ list-style:none; padding:0; margin:22px 0 26px; display:flex; flex-direction:column; gap:12px; }
.plan li{ display:flex; gap:11px; align-items:flex-start; font-size:.96rem; }
.plan li svg{ width:20px;height:20px;color:var(--primary);flex:none;margin-top:2px; }
.plan .btn{ margin-top:auto; }
.maint-foot{ margin-top:26px; color:var(--muted); font-size:.92rem; text-align:center; }

/* ============================================================
   AUDIENCES
   ============================================================ */
.aud.section{ background: var(--secondary); color: #EAF1E6; }
.aud .eyebrow{ color: #8FD79B; }
.aud .eyebrow::before{ background: var(--accent); }
.aud h2{ color:#fff; }
.aud-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap: 22px; margin-top: 44px; }
.aud-card{
  border:1px solid rgba(255,255,255,.14); border-radius: var(--r-lg); overflow:hidden;
  background: rgba(255,255,255,.04); display:flex; flex-direction:column;
}
.aud-photo{ aspect-ratio: 16/8; overflow:hidden; }
.aud-photo img{ width:100%;height:100%;object-fit:cover; }
.aud-body{ padding: 28px 28px 30px; }
.aud-body h3{ color:#fff; font-size:1.5rem; }
.aud-body p{ color:#CBD9C7; margin-top:12px; font-size:1rem; }
.aud-body ul{ list-style:none; padding:0; margin:18px 0 0; display:flex; flex-wrap:wrap; gap:8px; }
.aud-body li{ font-size:.85rem; font-weight:600; color:#DCE8D8; border:1px solid rgba(255,255,255,.18); padding:6px 12px; border-radius:var(--r-pill); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,72px); align-items:center; }
.about-media{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
.about-media .frame{ border-radius: var(--r); overflow:hidden; box-shadow: var(--shadow-md); aspect-ratio: 3/4; background:var(--bg-2); }
.about-media .frame img{ width:100%;height:100%;object-fit:cover; }
.about-media .frame:first-child{ margin-top: 32px; }
.about-text p{ color: var(--muted); font-size: 1.06rem; margin-top: 18px; }
.about-points{ list-style:none; padding:0; margin: 26px 0 0; display:grid; gap:14px; }
.about-points li{ display:flex; gap:12px; align-items:flex-start; color: var(--text); font-weight:500; }
.about-points svg{ width:22px;height:22px;color:var(--primary);flex:none;margin-top:2px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact.section{ background: var(--bg-2); }
.contact-grid{ display:grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px,4vw,56px); align-items:start; }
.contact-info .row{ display:flex; gap:15px; align-items:flex-start; padding: 18px 0; border-bottom:1px solid var(--border); }
.contact-info .row:last-child{ border-bottom:none; }
.contact-info .ic{ width:46px;height:46px;border-radius:12px;background:var(--surface);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;color:var(--primary);flex:none; }
.contact-info .ic svg{ width:23px;height:23px; }
.contact-info .lab{ font-size:.8rem; letter-spacing:.06em; text-transform:uppercase; color:var(--muted); font-weight:700; }
.contact-info .val{ font-size:1.08rem; font-weight:600; color:var(--secondary); margin-top:3px; }
.contact-info .val.muted{ font-weight:500; color:var(--muted); font-size:.98rem; }
.contact-actions{ display:flex; gap:12px; margin-top:24px; flex-wrap:wrap; }
.map-ph{
  margin-top: 26px; border-radius: var(--r); overflow:hidden; border:1px solid var(--border);
  aspect-ratio: 16/9; background:
    repeating-linear-gradient(45deg, #E7EEE1 0 14px, #EEF4E9 14px 28px);
  display:flex; align-items:center; justify-content:center; position:relative;
}
.map-ph .pin{ text-align:center; color: var(--muted); }
.map-ph .pin svg{ width:34px;height:34px;color:var(--accent); margin:0 auto 8px; }
.map-ph .pin b{ display:block; color:var(--secondary); font-family:var(--font-head); font-size:1.05rem; }
.map-ph .pin span{ font-size:.85rem; }

/* form */
.form-card{ background: var(--surface); border:1px solid var(--border); border-radius: var(--r-lg); padding: clamp(24px,3vw,38px); box-shadow: var(--shadow-md); }
.form-card h3{ font-size:1.5rem; }
.form-card > p{ color:var(--muted); margin-top:8px; font-size:.97rem; }
.field{ margin-top: 18px; }
.field label{ display:block; font-weight:600; font-size:.88rem; color:var(--secondary); margin-bottom:7px; }
.field label .req{ color: var(--accent); }
.field input, .field select, .field textarea{
  width:100%; font-family:inherit; font-size:1rem; color:var(--text);
  padding: 13px 15px; border-radius: var(--r-sm); border:1.5px solid var(--border);
  background: var(--bg); transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color: var(--primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 18%, transparent);
}
.field textarea{ resize: vertical; min-height: 110px; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-note{ font-size:.82rem; color:var(--muted); margin-top:14px; }
.form-ok{
  background: color-mix(in srgb, var(--primary) 12%, var(--surface)); border:1px solid var(--primary);
  border-radius: var(--r); padding: 28px; text-align:center;
}
.form-ok .ic{ width:56px;height:56px;border-radius:50%;background:var(--primary);color:#fff;display:flex;align-items:center;justify-content:center;margin:0 auto 14px; }
.form-ok .ic svg{ width:30px;height:30px; }
.form-ok h3{ color: var(--secondary); }
.form-ok p{ color: var(--muted); margin-top:8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background: var(--secondary); color: #C7D6C4; padding-top: clamp(56px,7vw,88px); }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand img{ height: 92px; width:auto; background:#fff; border-radius: var(--r); padding: 14px 18px; box-shadow: var(--shadow-md); }
.footer-brand p{ color:#A9BDA6; margin-top:20px; max-width: 38ch; font-size:.96rem; }
.footer h4{ color:#fff; font-size:1rem; font-family:var(--font-body); letter-spacing:.04em; text-transform:uppercase; margin-bottom:18px; font-weight:700; }
.footer-col a, .footer-col .li{ display:block; color:#B6C9B3; padding:7px 0; font-size:.96rem; transition: color .16s ease; }
.footer-col a:hover{ color:#fff; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.12); padding: 22px 0 34px; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size:.85rem; color:#92A88F; }
.footer-bottom a{ color:#B6C9B3; }

/* ============================================================
   STICKY MOBILE ACTION BAR
   ============================================================ */
.mobile-bar{
  position: fixed; left:0; right:0; bottom:0; z-index: 70;
  display:none; gap:0; background: var(--surface); border-top:1px solid var(--border);
  box-shadow: 0 -6px 24px rgba(22,41,26,.10);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar a{
  flex:1; display:flex; flex-direction:column; align-items:center; gap:4px; justify-content:center;
  padding: 11px 6px 12px; font-size:.74rem; font-weight:700; color: var(--secondary); min-height:60px;
}
.mobile-bar a svg{ width:22px;height:22px; }
.mobile-bar a.call{ color: var(--primary); }
.mobile-bar a.wa{ color:#1FA855; }
.mobile-bar a.quote{ background: var(--primary); color:#fff; margin: 8px; border-radius: var(--r-pill); flex: 1.2; }

/* reveal animation */
.reveal{ opacity:0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; transition:none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px){
  .svc-grid{ grid-template-columns: repeat(2,1fr); }
  .maint-grid{ grid-template-columns: 1fr; max-width: 460px; }
  .gal-grid{ columns: 2; }
}
@media (max-width: 900px){
  .nav, .header-cta .header-phone, .header-cta .btn{ display:none; }
  .hamburger{ display:flex; }
  .header-cta{ display:none; }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-media{ order:-1; }
  .hero-media .frame{ aspect-ratio: 16/11; }
  .hero h1{ font-size: clamp(2.4rem, 9vw, 3.4rem); }
  .hero-sub{ max-width: none; }
  .about-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .aud-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .footer-brand{ grid-column: 1 / -1; }
}
@media (max-width: 720px){
  body{ padding-bottom: 72px; } /* room for mobile bar */
  .mobile-bar{ display:flex; }
  .trust-in{ grid-template-columns: 1fr; }
  .trust-item + .trust-item{ border-left:none; border-top:1px solid var(--border); }
  .svc-grid{ grid-template-columns: 1fr; max-width: 440px; }
  .gal-grid{ columns: 1; }
  .field-row{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap:34px; }
  .lb-prev{ left: 8px; } .lb-next{ right: 8px; }
  .lb-btn{ width:46px;height:46px; }
}
@media (max-width: 420px){
  :root{ --header-h: 96px; }
  .brand img{ height: 84px; }
  .hero-badge{ left: 12px; right: 12px; bottom: 12px; max-width: none; }
}
