/* ============================================================
   Smiles 4 Miles Junk Removal
   Tokens
   ============================================================ */
:root {
  --ink: #171310;
  --ink-soft: #2b241d;
  --cream: #FFF8EC;
  --cream-dim: #F5EBDA;
  --paper: #FFFDF9;
  --pink: #FF2E93;
  --pink-deep: #C40F6D;
  --pink-tint: #FFE3F1;
  --yellow: #F5B400;
  --yellow-deep: #C98A00;
  --line: rgba(23, 19, 16, 0.12);

  --font-display: "Fredoka", system-ui, sans-serif;
  --font-script: "Kaushan Script", cursive;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-card: 0 14px 34px -14px rgba(23, 19, 16, 0.28);
  --shadow-pop: 0 22px 50px -18px rgba(196, 15, 109, 0.45);
  --wrap: 1220px;
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0; line-height: 1.12; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

:focus-visible {
  outline: 3px solid var(--pink-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--pink);
  color: white;
  padding: 12px 18px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============================================================
   Type helpers
   ============================================================ */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--pink-deep);
  margin: 0 0 14px;
}
.eyebrow.light { color: var(--yellow); }
.eyebrow.center { text-align: center; }

.section-title {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin-bottom: 18px;
  max-width: 20ch;
}
.section-title.center { margin-left: auto; margin-right: auto; text-align: center; max-width: 24ch; }
.section-title.light { color: var(--cream); }

.section-lede {
  max-width: 52ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.section-lede.center { margin: 0 auto 44px; text-align: center; }
.section-lede.light { color: rgba(255, 248, 236, 0.78); }

.script-underline {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--pink);
  position: relative;
  padding: 0 0.06em;
}
.script-underline::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -0.06em;
  height: 0.14em;
  background: var(--yellow);
  border-radius: 4px;
  transform: rotate(-1deg);
  z-index: -1;
  opacity: 0.55;
}
.light .script-underline { color: var(--yellow); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 13px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary {
  background: var(--pink);
  color: white;
  box-shadow: var(--shadow-pop);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 26px 54px -16px rgba(196, 15, 109, 0.55); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--pink); color: var(--pink-deep); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 248, 236, 0.5);
}
.btn-outline:hover { border-color: var(--cream); background: rgba(255, 248, 236, 0.08); }
.btn-outline-dark { color: var(--ink); border-color: rgba(23, 19, 16, 0.35); }
.btn-outline-dark:hover { border-color: var(--ink); background: rgba(23, 19, 16, 0.06); }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ============================================================
   Promo bar
   ============================================================ */
.promo-bar {
  background: var(--ink);
  text-align: center;
  padding: 10px 20px;
}
.promo-bar a {
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}
.promo-bar strong {
  color: var(--yellow);
  font-weight: 700;
}
.promo-bar a:hover strong { color: var(--pink); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 236, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { height: 78px; width: auto; border-radius: 12px; }
.brand-name { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name-main {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--pink);
  line-height: 1;
}
.brand-name-sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 4px;
}
.main-nav { display: flex; gap: 22px; }
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone { padding: 11px 18px; font-size: 0.92rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.nav-toggle span { display: block; height: 2px; width: 20px; margin: 0 auto; background: var(--ink); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 0;
}
.hero-blob {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle at 30% 30%, var(--pink-tint), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 70px;
}
.hero-copy h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  letter-spacing: -0.01em;
}
.hero-sub {
  margin-top: 20px;
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero-actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions.center-actions { justify-content: center; }

.hero-trust {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust li::before { content: "✓"; color: var(--pink); font-weight: 700; }
.hero-trust strong { color: var(--ink); font-family: var(--font-display); font-weight: 600; }

.hero-media { position: relative; }
.hero-photo-stack { position: relative; padding: 20px 30px 40px 0; }
.hero-photo {
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-card);
  border: 6px solid var(--paper);
}
.hero-photo-a { width: 100%; aspect-ratio: 4 / 5; }
.hero-photo-b {
  position: absolute;
  bottom: -12px;
  left: -28px;
  width: 46%;
  aspect-ratio: 4 / 5;
  transform: rotate(-6deg);
}
.hero-badge {
  position: absolute;
  top: 4px;
  right: -6px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  width: 118px;
  height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  transform: rotate(9deg);
  box-shadow: var(--shadow-card);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 10px;
  border: 3px solid var(--yellow);
}
.hero-badge-num { font-size: 1.3rem; font-weight: 700; color: var(--yellow); }

.service-ticker {
  position: relative;
  z-index: 1;
  background: var(--ink);
  overflow: hidden;
  padding: 14px 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: ticker 32s linear infinite;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--cream);
  white-space: nowrap;
}
.ticker-track span:nth-child(2n) { color: var(--pink); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   Truck divider
   ============================================================ */
.truck-divider {
  position: relative;
  height: 74px;
  background: var(--cream);
  overflow: hidden;
}
.truck-road {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  transform: translateY(-50%);
}
.truck-road path { stroke: var(--line); stroke-width: 4; }
.truck-icon {
  position: absolute;
  top: 50%;
  left: -140px;
  width: 90px;
  transform: translateY(-58%);
  transition: left 1.6s cubic-bezier(.22, .61, .36, 1);
}
.truck-icon.drive { left: calc(100% + 140px); }

/* ============================================================
   Services
   ============================================================ */
.services { padding: 90px 0 100px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: transparent; }
.service-icon {
  font-size: 1.6rem;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-tint);
  border-radius: 14px;
  margin-bottom: 16px;
}
.service-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.service-card p { color: var(--ink-soft); font-size: 0.94rem; }

/* ============================================================
   How it works
   ============================================================ */
.how { padding: 20px 0 100px; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-step {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
}
.how-step:nth-child(2) { background: var(--pink); }
.how-step:nth-child(3) { background: var(--yellow); color: var(--ink); }
.how-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.6rem;
  opacity: 0.35;
  margin-bottom: 6px;
}
.how-step h3 { font-size: 1.25rem; margin-bottom: 10px; }
.how-step p { opacity: 0.92; font-size: 0.96rem; }

/* ============================================================
   Transformations
   ============================================================ */
.transformations {
  background: var(--ink);
  padding: 100px 0;
  background-image: radial-gradient(circle at 85% 10%, rgba(255, 46, 147, 0.16), transparent 55%);
}

.ba-slider {
  position: relative;
  max-width: 720px;
  margin: 0 auto 50px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.6);
  cursor: ew-resize;
  user-select: none;
  border: 6px solid var(--ink-soft);
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-clip {
  position: absolute;
  inset: 0;
  width: 55%;
  overflow: hidden;
}
.ba-clip .ba-img { width: var(--slider-w, 100%); max-width: none; }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 55%;
  width: 52px;
  margin-left: -26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-handle::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 3px;
  background: var(--cream);
  transform: translateX(-50%);
}
.ba-handle svg {
  position: relative;
  width: 42px;
  height: 42px;
  padding: 8px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}
.ba-tag {
  position: absolute;
  top: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(23, 19, 16, 0.55);
  color: var(--cream);
  backdrop-filter: blur(4px);
}
.ba-tag-before { left: 16px; }
.ba-tag-after { right: 16px; }

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-strip figure { margin: 0; border-radius: var(--radius-md); overflow: hidden; position: relative; }
.gallery-strip img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.4s ease; }
.gallery-strip figure:hover img { transform: scale(1.06); }
.gallery-strip figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.72), transparent);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
}

/* ============================================================
   Crew
   ============================================================ */
.crew { padding: 100px 0; overflow: hidden; }
.crew-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.crew-copy p { color: var(--ink-soft); font-size: 1.03rem; margin-top: 6px; }
.crew-points { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.crew-points li { display: flex; gap: 10px; align-items: flex-start; font-weight: 500; }
.crew-points li::before { content: "✓"; color: var(--pink); font-weight: 700; }

.crew-photos { position: relative; height: 460px; }
.crew-photo {
  position: absolute;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 6px solid var(--paper);
  box-shadow: var(--shadow-card);
}
.crew-photo-a { width: 62%; aspect-ratio: 4/5; top: 0; right: 0; }
.crew-photo-b { width: 46%; aspect-ratio: 1/1; bottom: 0; left: 0; transform: rotate(-5deg); }
.crew-photo-c { width: 42%; aspect-ratio: 4/5; bottom: 24px; right: 6%; transform: rotate(6deg); z-index: 2; }

/* ============================================================
   Reviews
   ============================================================ */
.reviews { padding: 100px 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  align-items: start;
}
.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 26px;
}
.stars { color: var(--yellow-deep); letter-spacing: 2px; margin-bottom: 14px; }
.review-card p { font-size: 1.05rem; color: var(--ink); }
.review-card footer { margin-top: 20px; display: flex; flex-direction: column; }
.review-name { font-family: var(--font-display); font-weight: 600; }
.review-job { font-size: 0.85rem; color: var(--ink-soft); }

/* ============================================================
   CTA banner
   ============================================================ */
.cta-banner {
  background: var(--pink);
  background-image: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.18), transparent 45%);
  padding: 80px 0;
}
.cta-banner-inner { text-align: center; }
.cta-banner h2 { color: white; font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.cta-banner p { color: rgba(255,255,255,0.88); margin-top: 14px; font-size: 1.08rem; }
.cta-banner .btn-primary { background: var(--ink); box-shadow: 0 20px 44px -14px rgba(0,0,0,0.5); }
.cta-banner .btn-outline-dark { color: white; border-color: rgba(255,255,255,0.55); }
.cta-banner .btn-outline-dark:hover { border-color: white; background: rgba(255,255,255,0.12); }

/* ============================================================
   Contact
   ============================================================ */
.contact { padding: 100px 0 130px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-lede { margin-bottom: 34px; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
a.contact-card:hover { border-color: var(--pink); transform: translateX(4px); }
.contact-card-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); font-weight: 600; }
.contact-card-value { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; }

.service-area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.service-area-chips li {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.86rem;
  background: var(--pink-tint);
  color: var(--pink-deep);
  padding: 6px 14px;
  border-radius: 999px;
}

.quote-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.form-row { margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.form-row label { font-weight: 600; font-size: 0.92rem; }
.optional { font-weight: 400; color: var(--ink-soft); }
.form-row input, .form-row select, .form-row textarea {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: var(--cream);
  color: var(--ink);
  resize: vertical;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--pink);
}
.form-note { text-align: center; font-size: 0.85rem; color: var(--ink-soft); margin-top: 14px; }
.form-note.success { color: var(--pink-deep); font-weight: 600; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink); color: var(--cream); padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,248,236,0.14);
}
.footer-logo { height: 60px; border-radius: 10px; margin-bottom: 16px; }
.footer-brand-name { font-size: 1.15rem; margin-bottom: 10px; color: var(--cream); }
.footer-brand p { color: rgba(255,248,236,0.66); max-width: 34ch; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--yellow); margin-bottom: 4px; }
.footer-col a:hover { color: var(--pink); }
.footer-col span { color: rgba(255,248,236,0.66); font-size: 0.94rem; }
.footer-bottom { padding: 22px 24px; font-size: 0.85rem; color: rgba(255,248,236,0.5); }

/* ============================================================
   Mobile call bar
   ============================================================ */
.mobile-call-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 150;
  background: var(--pink);
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
}
.mobile-call-bar svg { width: 18px; height: 18px; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-media { order: -1; max-width: 420px; margin: 0 auto; }
  .crew-grid { grid-template-columns: 1fr; }
  .crew-photos { max-width: 440px; margin: 0 auto; height: 400px; }
  .contact-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .header-phone span { display: none; }
  .nav-toggle { display: flex; }
  .header-cta .btn-primary { display: none; }
  body { padding-bottom: 64px; }
  .mobile-call-bar { display: flex; }
  .brand-mark { height: 56px; }
  .brand-name-main { font-size: 1.15rem; }
  .brand-name-sub { font-size: 0.58rem; margin-top: 2px; }

  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 18px 24px 26px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-card);
  }
}

@media (max-width: 600px) {
  .gallery-strip { grid-template-columns: 1fr; }
  .quote-form { padding: 26px; }
  .hero-badge { width: 96px; height: 96px; font-size: 0.64rem; }
  .hero-badge-num { font-size: 1.1rem; }
}
