/* Eagle Rock Smile — built from the skill-e skeleton (v1.44).
   Palette sources are recorded in build-log.md. */

@font-face{font-family:'Nunito';src:url('fonts/nunito-var.woff2?v=1') format('woff2-variations');
  font-weight:400 800;font-style:normal;font-display:swap;}
@font-face{font-family:'Rubik';src:url('fonts/rubik-var.woff2?v=1') format('woff2-variations');
  font-weight:300 600;font-style:normal;font-display:swap;}

:root{
  --ground:#F5F8F9;      /* cool near-white, from the slate reception counter (img04) */
  --ink:#1E3140;         /* the ONE dark hue — their logo lockup's slate blue (img10) */
  --muted:#57707F;
  --line:#DCE5E9;
  --panel:#FFFFFF;
  --tint:#E9F0F3;
  --action:#A8451E;      /* the burnt-orange soffit and accent wall in reception (img04) */
  --action-dark:#8C3716;
  --open:#1B7F3B;
  --closed:#B0202F;
  --wrap:1080px;
  --display:'Nunito',system-ui,-apple-system,'Segoe UI',sans-serif;
  --body:'Rubik',system-ui,-apple-system,'Segoe UI',sans-serif;
}

/* ---------- reset ---------- */
*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto;}}
body{
  background:var(--ground);color:var(--ink);
  font-family:var(--body);font-weight:400;font-size:17px;line-height:1.5;
  -webkit-font-smoothing:antialiased;overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block;}
a{color:var(--ink);}
section[id]{scroll-margin-top:80px;}
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 20px;}
h1,h2,h3{font-family:var(--display);font-weight:700;line-height:1.15;margin:0;letter-spacing:-.01em;}

/* ---------- sticky header ---------- */
.site-header{position:sticky;top:0;z-index:50;background:var(--ground);border-bottom:1px solid var(--line);}
.header-inner{max-width:var(--wrap);margin:0 auto;padding:10px 20px;
  display:flex;align-items:center;justify-content:space-between;gap:12px;}
.wordmark{font-family:var(--display);font-weight:700;font-size:20px;letter-spacing:-.02em;
  color:var(--ink);text-decoration:none;white-space:nowrap;
  display:inline-flex;align-items:center;min-height:44px;}
.site-nav{display:none;gap:26px;}
.site-nav a{color:var(--muted);text-decoration:none;font-size:15px;white-space:nowrap;
  display:inline-flex;align-items:center;min-height:44px;}
.site-nav a:hover{color:var(--ink);}
@media (min-width:900px){ .site-nav{display:flex;} }

/* ---------- buttons ---------- */
.btn{display:inline-flex;align-items:center;justify-content:center;
  font-family:var(--display);font-weight:700;font-size:16px;
  border-radius:8px;text-decoration:none;border:2px solid transparent;
  padding:12px 22px;min-height:44px;transition:background .18s ease,color .18s ease;}
.btn-primary{background:var(--action);color:#fff;}
.btn-primary:hover{background:var(--action-dark);}
.btn-secondary{background:transparent;color:var(--action);border-color:var(--action);}
.btn-secondary:hover{background:color-mix(in srgb,var(--action) 8%,transparent);}
.btn-header{padding:10px 22px;font-size:15px;white-space:nowrap;min-width:104px;}
a:focus-visible,button:focus-visible,summary:focus-visible{outline:3px solid var(--action);outline-offset:2px;}

.hero-cta{display:flex;flex-direction:column;gap:10px;margin:18px 0 20px;}
.hero-cta .btn{width:100%;}
@media (min-width:600px){ .hero-cta{flex-direction:row;} .hero-cta .btn{width:auto;} }

/* ---------- hours ---------- */
.hours-status{display:flex;align-items:center;gap:8px;font-weight:700;margin:0 0 7px;font-size:16px;}
.dot{width:10px;height:10px;border-radius:50%;background:var(--muted);flex:none;}
.dot.open{background:var(--open);}
.dot.closed{background:var(--closed);}
.hours-table{display:grid;grid-template-columns:auto auto;gap:3px 18px;justify-content:start;
  margin:0;font-size:15px;color:var(--muted);line-height:1.35;}
.hours-table dt{font-weight:500;}
.hours-table dd{margin:0;font-variant-numeric:tabular-nums;}

/* ---------- hero ---------- */
.hero{padding:20px 0 8px;}
.hero-grid{display:grid;gap:20px;}
@media (min-width:900px){ .hero-grid{grid-template-columns:1.05fr .95fr;align-items:center;gap:44px;}
  .hero{padding:38px 0 14px;} }
.eyebrow{font-family:var(--display);font-weight:700;font-size:12px;letter-spacing:.12em;
  text-transform:uppercase;color:var(--muted);margin:0 0 10px;}
h1{font-size:clamp(29px,6.6vw,48px);margin:0 0 12px;text-wrap:balance;}
.sub{font-size:18px;color:var(--muted);margin:0;max-width:34em;line-height:1.45;text-wrap:pretty;}
.hero-photo img{border-radius:12px;width:100%;}

/* ---------- gallery grid (encoded columns) ---------- */
.gallery-grid{display:grid;grid-template-columns:1fr;gap:14px;}
@media (min-width:600px){ .gallery-grid{grid-template-columns:1fr 1fr;} }
@media (min-width:760px){ .gallery-grid{grid-template-columns:1fr 1fr 1fr;} }

/* ---------- reveal-on-scroll ---------- */
html.js .reveal{opacity:0;transform:translateY(14px);transition:opacity .3s ease,transform .3s ease;}
html.js .reveal.visible,html.js.noanim .reveal{opacity:1;transform:none;transition:none;}
@media (prefers-reduced-motion:reduce){ html.js .reveal{opacity:1;transform:none;transition:none;} }

/* ---------- footer ---------- */
.site-footer{border-top:1px solid var(--line);margin-top:48px;padding:26px 0 34px;
  color:var(--muted);font-size:14px;}
.site-footer a{display:inline-flex;align-items:center;min-height:44px;}

/* ═══════════════════════════════════════════════════════════════════════════
   PER-BUSINESS STYLES BELOW THIS LINE
═══════════════════════════════════════════════════════════════════════════ */

main > section{padding:38px 0;}
main > section.hero{padding-top:20px;}
@media (min-width:900px){ main > section{padding:54px 0;} main > section.hero{padding-top:38px;} }

h2{font-size:clamp(24px,4vw,32px);margin:0 0 18px;}
p{margin:0 0 14px;}

/* --- 2 · proof strip: quiet, light ground, no band --- */
.proof{padding:26px 0 26px;}
@media (min-width:900px){ .proof{padding:34px 0;} }
.proof blockquote{margin:0;}
.proof blockquote p{font-family:var(--display);font-weight:700;font-size:clamp(20px,3.1vw,27px);
  line-height:1.3;margin:0 0 10px;max-width:24em;}
.proof-cite{font-size:15px;color:var(--muted);margin:0;}

/* --- 3 · services: one card per service they name --- */
.svc-grid{list-style:none;margin:0;padding:0;display:grid;gap:10px;grid-template-columns:1fr 1fr;}
@media (min-width:760px){ .svc-grid{grid-template-columns:1fr 1fr 1fr;} }
.svc{background:var(--panel);border:1px solid var(--line);border-radius:10px;
  padding:14px 13px;font-family:var(--display);font-weight:700;font-size:16px;
  display:flex;align-items:center;min-height:56px;}
@media (min-width:760px){ .svc{padding:16px 18px;font-size:17px;min-height:58px;} }

/* --- 4 · pricing --- */
.pricing-panel{background:var(--tint);border-radius:14px;padding:26px 22px 24px;}
@media (min-width:760px){ .pricing-panel{padding:34px 34px 32px;} }
.pricing-panel p{max-width:40em;font-size:17px;}
.pricing-panel .btn{margin-top:6px;}
@media (max-width:599px){ .pricing-panel .btn{width:100%;} }

/* --- 5 · gallery --- */
.gallery-grid img{border-radius:10px;width:100%;}

/* --- 6 · reviews --- */
.review-grid{display:grid;gap:14px;grid-template-columns:1fr;}
@media (min-width:700px){ .review-grid{grid-template-columns:1fr 1fr;} }
.review{margin:0;background:var(--panel);border:1px solid var(--line);border-radius:12px;
  padding:20px 22px;display:flex;flex-direction:column;}
.review blockquote{margin:0;flex:1;}
.review blockquote p{margin:0 0 12px;font-size:17px;line-height:1.55;}
.review figcaption{font-size:14px;color:var(--muted);font-weight:500;}

/* --- 7 · about: the page's ONE band, and the signature element --- */
.about{background:var(--ink);color:#fff;}
.about h2{color:#fff;}
.about-text p{color:#D6E0E6;font-size:17px;line-height:1.65;max-width:38em;margin:0;}
.about-grid{display:grid;gap:18px;align-items:center;}
@media (min-width:760px){ .about-grid{grid-template-columns:150px 1fr;gap:38px;} }
.about-mark svg{width:88px;height:auto;display:block;}
@media (min-width:760px){ .about-mark svg{width:140px;} }
.about-mark path{fill:none;stroke:#5E7B8B;stroke-width:4;stroke-linejoin:round;}

/* --- 8 · faq --- */
.faq details{border-bottom:1px solid var(--line);padding:2px 0;}
.faq details:first-of-type{border-top:1px solid var(--line);}
.faq summary{font-family:var(--display);font-weight:700;font-size:18px;cursor:pointer;
  list-style:none;padding:16px 34px 16px 0;position:relative;min-height:44px;
  display:flex;align-items:center;}
.faq summary::-webkit-details-marker{display:none;}
.faq summary::after{content:"";position:absolute;right:6px;top:50%;width:9px;height:9px;
  border-right:2px solid var(--muted);border-bottom:2px solid var(--muted);
  transform:translateY(-70%) rotate(45deg);transition:transform .18s ease;}
.faq details[open] summary::after{transform:translateY(-30%) rotate(-135deg);}
@media (prefers-reduced-motion:reduce){ .faq summary::after{transition:none;} }
.faq details p{margin:0 0 18px;color:var(--muted);max-width:40em;}

/* --- 9 · final cta: the ask only --- */
.final-cta{text-align:center;}
.final-cta p{color:var(--muted);font-size:18px;margin:0 0 20px;}
.final-buttons{display:flex;flex-direction:column;gap:10px;align-items:stretch;}
@media (min-width:600px){ .final-buttons{flex-direction:row;justify-content:center;} }

/* --- 10 · footer: the reference block --- */
.footer-name{font-family:var(--display);font-weight:700;font-size:17px;color:var(--ink);margin:0 0 10px;}
.footer-facts{margin:0;display:grid;gap:2px;}
.footer-facts dt{font-weight:500;color:var(--muted);}
.footer-facts dd{margin:0;color:var(--ink);line-height:1.6;}
.footer-facts a{color:var(--ink);}
