
:root {
  --primary: #1BB56B;
  --accent: #FF7A00;
  --dark: #0E1A18;
  --light: #F6FBF8;
}
* { box-sizing: border-box; }
html,body { margin:0; padding:0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial; color:#14211e; background: var(--light);}
a { color: var(--primary); text-decoration: none; }
.container { width: min(1100px, 92%); margin: 0 auto; }
/* header */
header { position: sticky; top:0; z-index: 50; background:rgba(255,255,255,.9); backdrop-filter: blur(6px); border-bottom:1px solid #e7efe9; }
.nav { display:flex; align-items:center; justify-content: space-between; padding:.6rem 0; gap:1rem; }
.nav img.logo { height:42px; }
nav ul { list-style:none; display:flex; gap:1rem; margin:0; padding:0; flex-wrap:wrap; }
.btn { display:inline-block; padding:.7rem 1rem; border-radius:10px; font-weight:700; }
.btn-accent { background: var(--accent); color:#fff; }
.btn-outline { border:1px solid #cfe5dc; }
/* hero */
.hero { position: relative; min-height: 62vh; display:grid; place-items:center; overflow:hidden; }
.hero img.bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter:brightness(.65); }
.hero .content { position:relative; z-index:2; text-align:center; color:white; padding: 2rem 1rem; }
.hero .content h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin:.3rem 0 0; }
.hero .badges { display:flex; gap:.6rem; justify-content:center; flex-wrap:wrap; }
.badge { background: rgba(255,255,255,.15); padding:.35rem .6rem; border-radius:999px; border:1px solid rgba(255,255,255,.35); font-weight:600; }
.cta-stack { display:flex; gap:.6rem; justify-content:center; flex-wrap:wrap; margin-top:1rem; }
/* sections */
.section { padding: 2.2rem 0; }
.grid-2 { display:grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap:1rem; }
.cards { display:grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap:1rem; }
.card { background:white; border:1px solid #e8efe9; border-radius:14px; padding:1rem; }
.card img { width:100%; height:210px; object-fit:cover; border-radius:10px; border:1px solid #e8efe9; }
footer { background:white; border-top:1px solid #e7efe9; padding:1.6rem 0; margin-top:2rem; }
.small { color:#536661; font-size:.95rem; }
table.hours { width:100%; border-collapse:collapse; }
table.hours td { border-bottom:1px solid #eaeaea; padding:.35rem .2rem; }
.sticky-call { position:fixed; bottom:14px; right:14px; display:flex; flex-direction:column; gap:.5rem; z-index:60; }
.sticky-call a { background:var(--accent); color:#fff; padding:.7rem 1rem; border-radius:999px; box-shadow:0 10px 24px rgba(0,0,0,.18); }
