/* Army/kelly green + tan palette */
:root{
  --paper: #f5f0df;        /* army-tan */
  --paper2:#efe6cf;
  --green:#1f3a2b;         /* army green */
  --green2:#2e6b3f;        /* kelly-ish accent */
  --edge: rgba(0,0,0,.12);
  --shadow: 0 10px 30px rgba(0,0,0,.18);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#0b0f0c;
  background:var(--paper);
}
.container{width:min(1120px, calc(100% - 32px)); margin:0 auto}

.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(245,240,223,.92);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid var(--edge);
}
.topbar__inner{display:flex; align-items:center; justify-content:space-between; padding:10px 0; gap:12px}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none; color:inherit}
.brand__mark{
  font-family:"Stardos Stencil", system-ui;
  font-weight:700;
  background:var(--green);
  color:var(--paper);
  width:38px; height:38px;
  display:grid; place-items:center;
  border-radius:10px;
}
.brand__name{font-weight:800; letter-spacing:.3px}
.topbar__actions{display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--edge);
  background:transparent;
  color:inherit;
  text-decoration:none;
  font-weight:800;
  cursor:pointer;
}
.btn--lg{padding:14px 18px; border-radius:16px}
.btn--full{width:100%}
.btn--primary{
  background:linear-gradient(180deg, var(--green2), var(--green));
  color:var(--paper);
  border-color:rgba(0,0,0,0);
  box-shadow:0 10px 22px rgba(31,58,43,.26);
}
.btn--secondary{
  background:rgba(31,58,43,.10);
  border-color:rgba(31,58,43,.18);
}
.btn--ghost{background:transparent}

.fab{
  position:fixed; right:16px; bottom:16px; z-index:60;
  display:none; gap:10px; flex-direction:column;
}
.fab__btn{
  background:rgba(245,240,223,.96);
  border:1px solid var(--edge);
  border-radius:16px;
  padding:10px 12px;
  text-decoration:none;
  color:inherit;
  display:flex; align-items:center; gap:8px;
  box-shadow:var(--shadow);
  font-weight:900;
}

.hero{padding:46px 0 24px}
.hero__grid{display:grid; grid-template-columns: 1.25fr .9fr; gap:26px; align-items:start}
.badge{
  display:inline-flex; padding:8px 12px;
  border:1px solid rgba(31,58,43,.20);
  background:rgba(31,58,43,.08);
  border-radius:999px;
  font-weight:900;
  letter-spacing:.12em;
  font-size:12px;
}
h1{
  margin:14px 0 10px;
  font-family:"Stardos Stencil", system-ui;
  letter-spacing:.02em;
  line-height:1.05;
  font-size: clamp(40px, 4.3vw, 62px);
}
.accent{color:var(--green2)}
.lead{font-size:18px; line-height:1.55; color:rgba(0,0,0,.78); margin:0 0 16px}
.cta{display:flex; gap:12px; flex-wrap:wrap; margin:14px 0 18px}

.proof{display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; margin-top:14px}
.proof__item{padding:12px; border-radius:16px; border:1px solid var(--edge); background:rgba(255,255,255,.35)}
.proof__title{font-weight:900}
.proof__sub{font-size:13px; color:rgba(0,0,0,.68); margin-top:2px}
.fineprint{font-size:12px; color:rgba(0,0,0,.55)}

.hero__media{display:grid; gap:12px}
.hero__card{border:1px solid var(--edge); background:rgba(255,255,255,.38); border-radius:18px; overflow:hidden; box-shadow:0 12px 34px rgba(0,0,0,.10)}
.hero__cardTop{padding:16px}
.kicker{font-weight:900; letter-spacing:.12em; font-size:12px; color:rgba(0,0,0,.72)}
.mini{margin-top:6px; color:rgba(0,0,0,.72)}
.hero__cardActions{display:grid; gap:10px; padding:0 16px 16px}

.hero__image{border-radius:18px; border:1px solid var(--edge); overflow:hidden; background:linear-gradient(180deg, rgba(31,58,43,.10), rgba(31,58,43,.04)); min-height:260px; display:grid; place-items:center}
.placeholder{padding:22px; text-align:center}
.placeholder__title{font-weight:900}
.placeholder__sub{color:rgba(0,0,0,.7); margin-top:6px}

.section{padding:52px 0}
.section--alt{background:var(--paper2); border-top:1px solid var(--edge); border-bottom:1px solid var(--edge)}
.section__head{margin-bottom:18px}
h2{font-family:"Stardos Stencil", system-ui; font-size:34px; margin:0 0 6px}
.section__head p{margin:0; color:rgba(0,0,0,.72); font-size:16px; line-height:1.5}

.cards{display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; margin-top:16px}
.card{padding:16px; border-radius:18px; border:1px solid var(--edge); background:rgba(255,255,255,.40)}
.card h3{margin:0 0 6px; font-size:18px}
.card p{margin:0; color:rgba(0,0,0,.70); line-height:1.5}

.callout{margin-top:18px; display:flex; align-items:center; justify-content:space-between; gap:12px; padding:16px; border-radius:18px; border:1px solid rgba(31,58,43,.18); background:rgba(31,58,43,.08)}
.callout__title{font-weight:900}
.callout__sub{color:rgba(0,0,0,.72); margin-top:2px}
.callout__actions{display:flex; gap:10px; flex-wrap:wrap}

.contact{display:grid; grid-template-columns:.85fr 1.15fr; gap:14px; margin-top:16px}
.contact__card{padding:16px; border-radius:18px; border:1px solid var(--edge); background:rgba(255,255,255,.40)}
.contact__label{font-weight:900; letter-spacing:.08em; font-size:12px; color:rgba(0,0,0,.70)}
.contact__phone{display:inline-block; margin-top:8px; font-size:26px; font-weight:900; color:var(--green); text-decoration:none}
.contact__hours{margin-top:6px; color:rgba(0,0,0,.70)}
.contact__btns{display:grid; gap:10px; margin-top:12px}

.form{padding:16px; border-radius:18px; border:1px solid var(--edge); background:rgba(255,255,255,.45)}
label{display:grid; gap:6px; font-weight:800; margin-bottom:12px}
input, textarea{border-radius:14px; border:1px solid rgba(0,0,0,.18); padding:12px; font:inherit; background:rgba(245,240,223,.65)}
.row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.form__actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:8px}

.tiny{font-size:12px; color:rgba(0,0,0,.62); line-height:1.5}

.after{margin-top:14px; padding:14px; border-radius:18px; border:1px solid rgba(31,58,43,.18); background:rgba(31,58,43,.08)}
.after__title{font-weight:900}
.after__sub{color:rgba(0,0,0,.72); margin-top:2px}
.after__actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}

.footer{padding:22px 0; border-top:1px solid var(--edge); background:rgba(255,255,255,.22)}
.footer__inner{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap}
.footer__brand{font-weight:900}
.footer a{color:var(--green); font-weight:900; text-decoration:none}

.toast{display:none; margin-top:10px; padding:10px 12px; border-radius:14px; border:1px solid rgba(31,58,43,.20); background:rgba(31,58,43,.10); font-weight:900}

.modal{position:fixed; inset:0; display:none; z-index:80}
.modal[aria-hidden="false"]{display:block}
.modal__backdrop{position:absolute; inset:0; background:rgba(0,0,0,.35)}
.modal__panel{position:relative; margin:min(12vh, 90px) auto 0; width:min(520px, calc(100% - 24px)); background:var(--paper); border-radius:20px; border:1px solid var(--edge); box-shadow:var(--shadow); overflow:hidden}
.modal__head{display:flex; justify-content:space-between; align-items:flex-start; gap:10px; padding:16px; border-bottom:1px solid var(--edge)}
.modal__title{margin:6px 0 0; font-family:"Stardos Stencil", system-ui}
.iconBtn{border:1px solid var(--edge); background:rgba(255,255,255,.35); border-radius:12px; width:38px; height:38px; cursor:pointer; font-weight:900}
.modal__body{padding:16px}
.modal__actions{display:grid; gap:10px; margin-top:12px}

/* ===================== Reviews (Google-authentic) ===================== */
.thinRule{
  height:1px;
  width:100%;
  background: rgba(0,0,0,.14);
  margin: 10px 0 18px;
}

.reviewGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}

.reviewCard{
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(0,0,0,.14);
  background: rgba(255,255,255,.55);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}

.reviewTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}

.reviewLeft{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}

.reviewAvatar{
  width:34px;
  height:34px;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-weight:900;
  background: rgba(31,58,43,.10);
  border: 1px solid rgba(31,58,43,.18);
  color: rgba(0,0,0,.72);
  flex: 0 0 auto;
}

.reviewId{
  display:grid;
  gap:2px;
  min-width:0;
}

.reviewName{
  font-weight:900;
  color: rgba(0,0,0,.78);
  line-height:1.1;
}

.reviewStars{
  font-weight:900;
  letter-spacing:.10em;
  font-size:12px;
  color: #f4b400;
}

.reviewBadge{
  font-size:12px;
  font-weight:900;
  color: rgba(0,0,0,.60);
  border:1px solid rgba(0,0,0,.12);
  padding:6px 10px;
  border-radius:999px;
  background: rgba(245,240,223,.65);
  flex: 0 0 auto;
}

.reviewText{
  margin:0;
  color: rgba(0,0,0,.72);
  line-height:1.55;
  font-weight:700;
}

.reviewActions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .row{grid-template-columns:1fr}
  .fab{display:flex}
  .topbar__actions .btn--ghost{display:none}

  .reviewGrid{grid-template-columns:repeat(2, minmax(0,1fr))}
}
@media (max-width: 640px){
  .reviewGrid{grid-template-columns:1fr}
}
