/* =========================================================
   Maple Street Auto — friendly family neighbourhood garage
   Aesthetic: warm, bright, approachable, trustworthy.
   Cream/off-white base, friendly teal + warm-orange accents.
   Display: Fraunces (soft). Body: Mulish (humanist).
   ========================================================= */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { min-height: 100%; line-height: 1.65; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, picture, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-weight: 600; line-height: 1.08; }

/* ---- Tokens ---- */
:root {
  --cream:    #fbf6ec;   /* warm off-white base */
  --cream-2:  #f4ebd9;
  --paper:    #fffdf8;   /* card surface */
  --sand:     #efe3cd;
  --ink:      #2b2620;   /* warm near-black */
  --ink-2:    #4a4339;
  --muted:    #877c6c;
  --line:     #e6d9c2;

  --teal:     #1f8a82;   /* friendly teal */
  --teal-d:   #14625c;
  --teal-l:   #36a89f;
  --teal-bg:  #e3f2ef;

  --orange:   #e8843a;   /* warm orange */
  --orange-d: #c96a23;
  --orange-l: #f4a567;
  --orange-bg:#fbe9d8;

  --emerald:  #2f9e5e;   /* on-brand success (form note) */

  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body:    "Mulish", "Segoe UI", Helvetica, sans-serif;

  --mw: 1180px;
  --gutter: clamp(20px, 5vw, 60px);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 26px 60px -30px rgba(43, 38, 32, 0.42);
  --shadow-sm: 0 16px 36px -24px rgba(43, 38, 32, 0.4);
  --shadow-soft: 0 8px 24px -16px rgba(43, 38, 32, 0.35);
}

/* ---- Base ---- */
body {
  font-family: var(--body);
  color: var(--ink-2);
  background: var(--cream);
  font-size: 17px;
}

.wrap { max-width: var(--mw); margin: 0 auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-d);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 3px; border-radius: 3px;
  background: var(--orange);
}
.eyebrow.center { justify-content: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0.95em 1.7em;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: background .3s, color .3s, border-color .3s, transform .3s, box-shadow .3s;
}
.btn-solid { background: var(--orange); color: #fff; box-shadow: 0 12px 26px -14px rgba(232,132,58,.8); }
.btn-solid:hover { background: var(--orange-d); transform: translateY(-2px); }
.btn-teal { background: var(--teal); color: #fff; box-shadow: 0 12px 26px -14px rgba(31,138,130,.7); }
.btn-teal:hover { background: var(--teal-d); transform: translateY(-2px); }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn .arr { transition: transform .3s; }
.btn:hover .arr { transform: translateX(4px); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--cream) 90%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-logo { width: 42px; height: 42px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-mark {
  font-family: var(--display);
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-mark .amp { color: var(--orange); }
.brand-sub {
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); font-weight: 800; margin-top: 0.35rem;
}
.nav-links { display: flex; gap: 1.9rem; align-items: center; }
.nav-links a {
  font-size: 0.96rem; font-weight: 700;
  color: var(--ink-2); position: relative; padding: 0.4em 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 3px; border-radius: 3px; background: var(--orange); transition: width .3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active, .nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 1.1rem; }
.nav-phone { font-size: 0.95rem; font-weight: 800; color: var(--teal-d); display: inline-flex; align-items: center; gap: 0.4em; white-space: nowrap; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 26px; height: 3px; border-radius: 3px; background: var(--ink); transition: .3s; }

/* =========================================================
   Reveal anim
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
[data-d="1"]{transition-delay:.08s}[data-d="2"]{transition-delay:.16s}
[data-d="3"]{transition-delay:.24s}[data-d="4"]{transition-delay:.32s}

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; overflow: hidden; padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(30px, 5vw, 64px); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 500px at 88% -8%, var(--teal-bg) 0%, transparent 60%),
    radial-gradient(700px 460px at -6% 110%, var(--orange-bg) 0%, transparent 60%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.hero-copy { max-width: 38ch; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 0.55em;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; padding: 0.5em 1em; font-size: 0.84rem; font-weight: 800;
  color: var(--teal-d); box-shadow: var(--shadow-soft); margin-bottom: 1.4rem;
}
.hero-pill .star { color: var(--orange); }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.7rem, 6.4vw, 5rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.02;
}
.hero h1 em { font-style: normal; color: var(--teal); position: relative; }
.hero h1 em::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: 0.04em; height: 0.26em;
  background: var(--orange-l); opacity: .55; border-radius: 6px; z-index: -1;
}
.hero-tag {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--ink-2);
  margin: 1.4rem 0 2.1rem;
}
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-trustline { display: flex; align-items: center; gap: 0.7rem; margin-top: 1.8rem; font-size: 0.92rem; color: var(--muted); font-weight: 600; }
.hero-trustline .avis { display: flex; }
.hero-trustline .avis span {
  width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--cream);
  margin-left: -10px; display: grid; place-items: center; font-weight: 800; font-size: 0.8rem; color: #fff;
}
.hero-trustline .avis span:first-child { margin-left: 0; }

.hero-art { position: relative; }
.hero-art svg { width: 100%; height: auto; filter: drop-shadow(0 30px 50px rgba(43,38,32,.16)); }
.hero-badge {
  position: absolute; bottom: 6%; left: -2%;
  background: var(--ink); color: var(--cream);
  border-radius: var(--radius-sm); padding: 0.9rem 1.2rem;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 0.7rem;
}
.hero-badge .n { font-family: var(--display); font-size: 2rem; color: var(--orange-l); line-height: 1; }
.hero-badge .l { font-size: 0.72rem; line-height: 1.3; color: #d8d0c2; font-weight: 700; }

/* =========================================================
   Trust badges strip
   ========================================================= */
.trust {
  background: var(--ink);
  color: var(--cream);
}
.trust-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  padding: clamp(1.6rem, 3vw, 2.4rem) 1.2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 38px; height: 38px; }
.trust-item .n { font-family: var(--display); font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--orange-l); line-height: 1; }
.trust-item .l { font-size: 0.82rem; color: #cfc6b7; font-weight: 600; }

/* =========================================================
   Section scaffolding
   ========================================================= */
.section { padding-block: clamp(58px, 8vw, 104px); }
.section.paper { background: var(--paper); }
.section.sand { background: var(--cream-2); }
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: clamp(2.2rem, 4vw, 3.2rem); flex-wrap: wrap; }
.sec-head h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  color: var(--ink);
  letter-spacing: -0.01em;
  max-width: 18ch;
}
.sec-head p { color: var(--muted); max-width: 40ch; }
.sec-head.center { flex-direction: column; align-items: center; text-align: center; }
.sec-head.center h2 { max-width: 22ch; }
.sec-head.center p { margin-top: 0.8rem; }

/* =========================================================
   Services (honest pricing)
   ========================================================= */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.2vw, 1.8rem); }
.svc-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem 1.7rem 1.6rem;
  display: flex; flex-direction: column;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--teal-l); }
.svc-ico {
  width: 60px; height: 60px; border-radius: 16px;
  background: var(--teal-bg); display: grid; place-items: center;
  margin-bottom: 1.2rem;
}
.svc-ico svg { width: 34px; height: 34px; }
.svc-card:nth-child(3n+2) .svc-ico { background: var(--orange-bg); }
.svc-card h3 { font-family: var(--display); font-weight: 600; font-size: 1.4rem; color: var(--ink); margin-bottom: 0.5rem; }
.svc-card p { font-size: 0.96rem; color: var(--muted); flex: 1; margin-bottom: 1.2rem; }
.svc-price {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-top: 1.1rem; border-top: 1px dashed var(--line);
}
.svc-price .from { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 800; }
.svc-price .amt { font-family: var(--display); font-weight: 600; font-size: 1.55rem; color: var(--teal-d); }
.svc-card:nth-child(3n+2) .svc-price .amt { color: var(--orange-d); }

/* services detail rows (services page) */
.price-table { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.price-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.2rem; align-items: center;
  padding: 1.3rem clamp(1.2rem, 3vw, 2rem); border-bottom: 1px solid var(--line);
  transition: background .3s;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--cream); }
.price-row .pr-ico { width: 48px; height: 48px; border-radius: 12px; background: var(--teal-bg); display: grid; place-items: center; }
.price-row:nth-child(even) .pr-ico { background: var(--orange-bg); }
.price-row .pr-ico svg { width: 28px; height: 28px; }
.price-row h4 { font-family: var(--display); font-weight: 600; font-size: 1.2rem; color: var(--ink); margin-bottom: 0.2rem; }
.price-row p { font-size: 0.9rem; color: var(--muted); }
.price-row .pr-cost { text-align: right; white-space: nowrap; }
.price-row .pr-cost .from { display: block; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 800; }
.price-row .pr-cost .amt { font-family: var(--display); font-weight: 600; font-size: 1.4rem; color: var(--teal-d); }

.note-strip {
  display: flex; gap: 0.8rem; align-items: flex-start;
  background: var(--teal-bg); border: 1px solid color-mix(in srgb, var(--teal) 25%, transparent);
  border-radius: var(--radius-sm); padding: 1.1rem 1.3rem; margin-top: 1.6rem;
  font-size: 0.95rem; color: var(--teal-d); font-weight: 600;
}
.note-strip svg { width: 24px; height: 24px; flex: none; }

/* =========================================================
   Meet the family
   ========================================================= */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 2.5vw, 2rem); }
.team-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.6rem; text-align: center;
  transition: transform .35s, box-shadow .35s;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.team-avatar { width: 116px; height: 116px; margin: 0 auto 1.2rem; }
.team-card h3 { font-family: var(--display); font-weight: 600; font-size: 1.4rem; color: var(--ink); }
.team-card .role { color: var(--orange-d); font-weight: 800; font-size: 0.86rem; letter-spacing: 0.04em; margin: 0.3rem 0 0.9rem; }
.team-card p { font-size: 0.94rem; color: var(--muted); }
.team-card .tag { display: inline-block; margin-top: 1rem; font-size: 0.8rem; font-weight: 800; color: var(--teal-d); background: var(--teal-bg); border-radius: 999px; padding: 0.4em 1em; }

/* =========================================================
   Why choose us
   ========================================================= */
.why-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.why-art svg { width: 100%; height: auto; filter: drop-shadow(0 26px 44px rgba(43,38,32,.14)); }
.why-list { display: grid; gap: 1.1rem; margin-top: 1.6rem; }
.why-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1.2rem 1.3rem; transition: transform .3s, box-shadow .3s;
}
.why-item:hover { transform: translateX(5px); box-shadow: var(--shadow-soft); }
.why-item .wi-ico { width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--orange-bg); display: grid; place-items: center; }
.why-item:nth-child(even) .wi-ico { background: var(--teal-bg); }
.why-item .wi-ico svg { width: 26px; height: 26px; }
.why-item h4 { font-family: var(--display); font-weight: 600; font-size: 1.18rem; color: var(--ink); margin-bottom: 0.25rem; }
.why-item p { font-size: 0.93rem; color: var(--muted); }

/* =========================================================
   Reviews
   ========================================================= */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 2.5vw, 2rem); }
.review {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.7rem; display: flex; flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform .35s, box-shadow .35s;
}
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.review .stars { color: var(--orange); letter-spacing: 0.12em; font-size: 1.05rem; margin-bottom: 0.9rem; }
.review blockquote { font-size: 1.02rem; color: var(--ink-2); flex: 1; line-height: 1.55; }
.review .who { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.review .who .av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; font-size: 1rem; flex: none; }
.review .who b { display: block; color: var(--ink); font-weight: 800; }
.review .who span { font-size: 0.84rem; color: var(--muted); }
.gbadge { display: inline-flex; align-items: center; gap: 0.6em; margin-top: 0.4rem; font-weight: 700; color: var(--muted); font-size: 0.95rem; }
.gbadge svg { width: 22px; height: 22px; }

/* =========================================================
   Blog teaser / listing
   ========================================================= */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 2.5vw, 2rem); }
.post {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .35s, box-shadow .35s;
}
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-art { aspect-ratio: 16/9; position: relative; overflow: hidden; display: grid; place-items: center; }
.post-art.a1 { background: linear-gradient(135deg, var(--teal-bg), #cfe9e4); }
.post-art.a2 { background: linear-gradient(135deg, var(--orange-bg), #f6d6b4); }
.post-art.a3 { background: linear-gradient(135deg, var(--cream-2), var(--sand)); }
.post-art svg { width: 46%; height: auto; }
.post-body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.post .meta { font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); font-weight: 800; display: flex; gap: 0.7rem; align-items: center; margin-bottom: 0.8rem; }
.post .meta .type { color: var(--orange-d); }
.post .meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line); }
.post h3 { font-family: var(--display); font-weight: 600; font-size: 1.3rem; color: var(--ink); margin-bottom: 0.6rem; transition: color .3s; }
.post:hover h3 { color: var(--teal-d); }
.post p { font-size: 0.95rem; color: var(--muted); flex: 1; margin-bottom: 1.1rem; }
.post .more { font-size: 0.86rem; font-weight: 800; color: var(--teal-d); display: inline-flex; gap: 0.4em; }

/* blog featured */
.blog-feature {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 0;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-soft); margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.blog-feature .fart { min-height: 320px; position: relative; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--teal-bg), var(--orange-bg)); }
.blog-feature .fart svg { width: 52%; }
.blog-feature .fbody { padding: clamp(2rem, 4vw, 3.2rem); display: flex; flex-direction: column; justify-content: center; }
.blog-feature .tag { display: inline-flex; align-self: flex-start; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 800; color: #fff; background: var(--orange); border-radius: 999px; padding: 0.4em 1em; margin-bottom: 1rem; }
.blog-feature h2 { font-family: var(--display); font-weight: 600; font-size: clamp(1.7rem, 3.2vw, 2.5rem); color: var(--ink); margin-bottom: 1rem; line-height: 1.1; }
.blog-feature p { color: var(--ink-2); margin-bottom: 1.4rem; }
.blog-feature .fmeta { font-size: 0.82rem; color: var(--muted); font-weight: 700; }

/* filter bar */
.filter-bar { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; margin-bottom: clamp(2rem, 4vw, 2.8rem); }
.filter-bar .lbl { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 800; margin-right: 0.4rem; }
.filter-btn {
  font-size: 0.86rem; font-weight: 800;
  padding: 0.6em 1.2em; border-radius: 999px; border: 2px solid var(--line); color: var(--ink-2);
  transition: all .25s; background: var(--paper);
}
.filter-btn:hover { border-color: var(--teal); color: var(--teal-d); }
.filter-btn.active { background: var(--teal); color: #fff; border-color: var(--teal); }
.filter-count { margin-left: auto; font-size: 0.9rem; color: var(--muted); font-weight: 700; }
.filter-count b { font-family: var(--display); color: var(--ink); font-size: 1.1rem; }
.post.hide { display: none; }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--teal); color: #fff;
  text-align: center; padding-block: clamp(58px, 8vw, 100px);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .14;
  background-image: radial-gradient(circle, #fff 1.6px, transparent 1.6px);
  background-size: 26px 26px;
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band .eyebrow { color: #fff; }
.cta-band .eyebrow::before { background: var(--orange-l); }
.cta-band h2 { font-family: var(--display); font-weight: 600; font-size: clamp(2.1rem, 4.6vw, 3.5rem); margin: 1rem auto 1rem; max-width: 20ch; letter-spacing: -0.01em; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 46ch; margin: 0 auto 2rem; font-size: 1.08rem; }
.cta-band .hero-actions { justify-content: center; }
.cta-band .btn-ghost { border-color: rgba(255,255,255,0.6); color: #fff; }
.cta-band .btn-ghost:hover { background: #fff; color: var(--teal-d); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--ink); color: #cfc6b7; padding-top: clamp(50px, 7vw, 78px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.4rem; padding-bottom: 2.8rem; }
.footer-grid h4 { font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange-l); margin-bottom: 1.1rem; font-weight: 800; }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand .brand-mark { color: var(--cream); }
.footer-brand .brand-sub { color: #9a9081; }
.footer-brand p { font-size: 0.94rem; color: #a89e8e; max-width: 34ch; }
.footer-col a, .footer-col p { display: block; font-size: 0.94rem; color: #cfc6b7; padding: 0.3em 0; transition: color .3s; }
.footer-col a:hover { color: var(--orange-l); }
.footer-nap { font-style: normal; font-size: 0.94rem; line-height: 1.95; color: #cfc6b7; }
.footer-nap a:hover { color: var(--orange-l); }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); display: grid; place-items: center; transition: background .3s, border-color .3s; }
.footer-social a:hover { background: var(--orange); border-color: var(--orange); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 1.5rem; display: flex; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap; font-size: 0.82rem; color: #8e8576;
}
.footer-disclaimer { background: #211d18; color: #7d7466; font-size: 0.78rem; text-align: center; padding: 0.95rem var(--gutter); }

/* =========================================================
   Page hero (interior)
   ========================================================= */
.page-hero { position: relative; overflow: hidden; padding-block: clamp(48px, 7vw, 84px); border-bottom: 1px solid var(--line); }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(800px 460px at 92% -20%, var(--teal-bg) 0%, transparent 60%),
              radial-gradient(600px 380px at -6% 130%, var(--orange-bg) 0%, transparent 60%);
}
.page-hero h1 { font-family: var(--display); font-weight: 600; font-size: clamp(2.3rem, 5.4vw, 4rem); color: var(--ink); margin: 0.8rem 0 0.7rem; letter-spacing: -0.015em; }
.page-hero p { color: var(--ink-2); max-width: 54ch; font-size: 1.08rem; }
.crumbs { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 800; }
.crumbs a:hover { color: var(--teal-d); }
.crumbs .sep { color: var(--orange); margin: 0 0.5em; }

/* =========================================================
   Contact page
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2.4rem, 5vw, 4rem); align-items: start; }
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.7rem, 3.5vw, 2.6rem); box-shadow: var(--shadow-sm); }
.form-card h2 { font-family: var(--display); font-weight: 600; font-size: 1.7rem; color: var(--ink); margin-bottom: 0.4rem; }
.form-card .sub { color: var(--muted); margin-bottom: 1.7rem; font-size: 0.98rem; }
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-size: 0.8rem; letter-spacing: 0.04em; color: var(--ink); margin-bottom: 0.45rem; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85em 1em; background: var(--cream); border-radius: var(--radius-sm);
  border: 2px solid var(--line); color: var(--ink); transition: border-color .25s, background .25s;
}
.field input::placeholder, .field textarea::placeholder { color: #b3a896; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); background: var(--paper); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-note { font-size: 0.9rem; color: var(--muted); margin-top: 1rem; font-weight: 700; }

.contact-aside { display: grid; gap: 1.4rem; }
.info-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.7rem; box-shadow: var(--shadow-soft); }
.info-card h3 { font-family: var(--display); font-weight: 600; font-size: 1.3rem; color: var(--ink); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem; }
.info-card h3 svg { width: 24px; height: 24px; }
.info-card address, .info-card p { font-style: normal; color: var(--ink-2); line-height: 1.9; }
.info-card a { font-weight: 700; color: var(--teal-d); }
.info-card a:hover { color: var(--orange-d); }
.hours-row { display: flex; justify-content: space-between; padding: 0.45em 0; font-size: 0.97rem; border-bottom: 1px dashed var(--line); }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 700; color: var(--ink); }
.hours-row .hrs { color: var(--muted); }
.hours-row.closed .hrs { color: var(--orange-d); font-weight: 700; }
.hours-row.today { background: var(--teal-bg); margin-inline: -0.8rem; padding-inline: 0.8rem; border-radius: 8px; border-bottom-color: transparent; }

/* faux map */
.map-card { margin-top: clamp(2.2rem, 4vw, 3.2rem); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.map-card svg { width: 100%; height: auto; display: block; }

/* =========================================================
   Services page hero band + steps
   ========================================================= */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 2.4vw, 1.8rem); }
.step {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.5rem; position: relative; transition: transform .35s, box-shadow .35s;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step .num { font-family: var(--display); font-weight: 600; font-size: 2.6rem; color: var(--orange-l); line-height: 1; }
.step h4 { font-family: var(--display); font-weight: 600; font-size: 1.22rem; color: var(--ink); margin: 0.5rem 0 0.5rem; }
.step p { font-size: 0.93rem; color: var(--muted); }

/* faq */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 1rem; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.3rem 1.5rem; }
.faq-item h4 { font-family: var(--display); font-weight: 600; font-size: 1.18rem; color: var(--ink); margin-bottom: 0.4rem; display: flex; gap: 0.6rem; align-items: flex-start; }
.faq-item h4 .q { color: var(--teal); flex: none; }
.faq-item p { font-size: 0.96rem; color: var(--muted); padding-left: 1.5rem; }

/* generic intro lead */
.lead-block { max-width: 60ch; }
.lead-block .lead { font-size: 1.18rem; color: var(--ink-2); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 100%; }
  .hero-art { max-width: 520px; margin-inline: auto; }
  .svc-grid, .team-grid, .reviews-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid, .contact-grid, .blog-feature { grid-template-columns: 1fr; }
  .why-art { max-width: 460px; }
  .blog-feature .fart { min-height: 240px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links, .nav-phone, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 78px; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 1.4rem var(--gutter); gap: 1.1rem; box-shadow: var(--shadow-sm);
  }
  .nav.open .nav-links a { font-size: 1.05rem; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .svc-grid, .team-grid, .reviews-grid, .blog-grid, .steps-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: auto 1fr; grid-template-areas: "ico body" "cost cost"; }
  .price-row .pr-cost { grid-area: cost; text-align: left; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 420px) {
  :root { --gutter: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badge { left: 4%; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto; }
}
