@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700&display=swap');

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
  --bg:#f4f2ed;
  --fg:#1a1a1a;
  --accent:#d4210a;
  --rule:#c8c4bc;
  --gutter:1.25rem;
  --body:0.9375rem;
  --heading:1.5rem;
  --max-w:60rem;
  --font:'Barlow Condensed','Arial Narrow',sans-serif;
}

body{
  font-family:var(--font);
  font-size:var(--body);
  font-weight:400;
  line-height:1.55;
  color:var(--fg);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
}

img{max-width:100%;height:auto;display:block}
a{color:inherit}

.wrap{
  max-width:var(--max-w);
  margin:0 auto;
  padding-left:var(--gutter);
  padding-right:var(--gutter);
}

/* ─── NAV ─── */
.nav{
  position:sticky;top:0;z-index:100;
  background:var(--fg);color:var(--bg);
}
.nav-inner{
  display:flex;align-items:center;
  justify-content:space-between;
  min-height:52px;gap:0.5rem;
}
.nav-brand{
  font-size:var(--heading);font-weight:700;
  letter-spacing:0.06em;white-space:nowrap;
}
.nav-right{display:flex;align-items:center;gap:0.75rem}
.nav-phone{
  text-decoration:none;font-weight:600;
  letter-spacing:0.02em;white-space:nowrap;
}
.nav-status{display:flex;align-items:center;gap:0.35rem;font-weight:500}
.status-dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--rule);flex-shrink:0;
}

/* ─── HERO ─── */
.hero{
  position:relative;overflow:hidden;
  background:var(--fg);color:var(--bg);
  padding:3rem 0;
}
.hero-bg{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;opacity:0.2;
  pointer-events:none;
}
.hero-content{position:relative;z-index:1}
.hero-title{
  font-size:clamp(4rem,18vw,11rem);
  font-weight:700;line-height:0.85;
  letter-spacing:-0.02em;
  text-transform:uppercase;
  margin-bottom:1.25rem;
}
.hero-sub{
  font-size:var(--heading);font-weight:400;
  line-height:1.3;margin-bottom:2rem;
}
.hero-ctas{display:flex;flex-wrap:wrap;gap:0.75rem}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:48px;padding:0.7rem 1.5rem;
  font-family:var(--font);font-size:var(--body);
  font-weight:600;text-transform:uppercase;
  letter-spacing:0.06em;text-decoration:none;
  border:2px solid;
}
.btn-primary{background:var(--accent);color:#fff;border-color:var(--accent)}
.btn-secondary{background:transparent;color:var(--bg);border-color:var(--bg)}
.btn-lg{font-size:var(--heading);padding:0.9rem 2.5rem}

/* ─── STATS ─── */
.stats-band{
  border-top:3px solid var(--accent);
  border-bottom:1px solid var(--rule);
  padding:1.5rem 0;
}
.stats-row{display:flex;justify-content:center;flex-wrap:wrap}
.stat{text-align:center;padding:0.4rem 1.25rem}
.stat+.stat{border-left:1px solid var(--rule)}
.stat-val{
  display:block;font-size:var(--heading);
  font-weight:700;color:var(--accent);line-height:1.1;
}
.stat-label{
  display:block;font-weight:500;
  text-transform:uppercase;letter-spacing:0.08em;
  margin-top:0.1rem;
}

/* ─── SECTIONS ─── */
section{padding:3rem 0;border-bottom:1px solid var(--rule)}
section h2{
  font-size:var(--heading);font-weight:700;
  text-transform:uppercase;letter-spacing:0.04em;
  margin-bottom:1.75rem;line-height:1.2;
}
section h2::before{
  content:'';display:block;
  width:2rem;height:3px;
  background:var(--accent);
  margin-bottom:0.6rem;
}

/* ─── SERVICES ─── */
.svc-grid{
  display:grid;grid-template-columns:1fr;
  border-top:1px solid var(--rule);
  border-bottom:1px solid var(--rule);
}
.svc-item{padding:1.25rem 0}
.svc-item+.svc-item{border-top:1px solid var(--rule)}
.svc-name{
  font-size:var(--heading);font-weight:600;
  text-transform:uppercase;letter-spacing:0.03em;
  margin-bottom:0.15rem;
}
.svc-desc{color:#666}

/* ─── TEAM ─── */
.team-desc{margin-bottom:1.25rem}
.team-photo{width:100%;max-height:300px;object-fit:cover}

/* ─── REVIEWS ─── */
.review-list{
  border-top:1px solid var(--rule);
  border-bottom:1px solid var(--rule);
}
.review-item{padding:1.5rem 0}
.review-item+.review-item{border-top:1px solid var(--rule)}
.review-stars{color:var(--accent);margin-bottom:0.5rem;letter-spacing:0.1em}
.review-text{line-height:1.65;margin-bottom:0.6rem}
.review-author{font-weight:600;text-transform:uppercase;letter-spacing:0.06em}

/* ─── VISIT ─── */
.visit-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
.visit-address{margin-bottom:0.75rem;line-height:1.6}
.visit-phone{margin-bottom:1.25rem}
.visit-phone a{color:var(--accent);text-decoration:none;font-weight:600}
.hours-table{width:100%;border-collapse:collapse}
.hours-table td{padding:0.35rem 0;border-bottom:1px solid var(--rule)}
.hours-table td:last-child{text-align:right;font-weight:500}
.visit-map iframe{width:100%;height:280px;border:1px solid var(--rule)}

/* ─── FOOT CTA ─── */
.foot-cta{background:var(--fg);color:var(--bg);padding:3.5rem 0;text-align:center}
.foot-cta p{
  font-size:var(--heading);font-weight:700;
  text-transform:uppercase;letter-spacing:0.04em;
  margin-bottom:1.25rem;
}

/* ─── FOOTER ─── */
.footer{background:var(--fg);color:var(--rule);padding:1.25rem 0;border-top:1px solid #333}
.footer-inner{display:flex;flex-wrap:wrap;justify-content:space-between;gap:0.5rem}
.footer a{text-decoration:none}

/* ═══ DESKTOP ═══ */
@media(min-width:720px){
  :root{--gutter:2.5rem}
  .hero{padding:5rem 0 4rem}
  section{padding:4rem 0}

  .svc-grid{grid-template-columns:1fr 1fr}
  .svc-item+.svc-item{border-top:none}
  .svc-item:nth-child(n+3){border-top:1px solid var(--rule)}
  .svc-item:nth-child(odd){padding-right:var(--gutter);border-right:1px solid var(--rule)}
  .svc-item:nth-child(even){padding-left:var(--gutter)}

  .visit-grid{grid-template-columns:1fr 1fr;gap:0}
  .visit-info{padding-right:var(--gutter);border-right:1px solid var(--rule)}
  .visit-map{padding-left:var(--gutter)}
  .visit-map iframe{height:100%;min-height:300px}
}
