/* ===================================================
   A Bee to Z Cleaning – Stylesheet
   Brand colors: Rust #c1622e | Cream #faf6f1 | Dark #2a2118
   =================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:    #c1622e;
  --primary-dk: #a04f24;
  --primary-lt: #f5e8de;
  --gold:       #d4a84b;
  --cream:      #faf6f1;
  --off-white:  #f3ede6;
  --dark:       #2a2118;
  --text:       #3d3028;
  --muted:      #7a6a5e;
  --border:     #e8ddd5;
  --white:      #ffffff;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-sm:  0 2px 8px rgba(42,33,24,.08);
  --shadow-md:  0 6px 24px rgba(42,33,24,.12);
  --shadow-lg:  0 16px 48px rgba(42,33,24,.16);

  --section-gap: 88px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-sans); }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-gap) 0; }

/* ---------- Typography helpers ---------- */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--muted); font-size: 17px; }

h1, h2, h3 { font-family: var(--font-serif); color: var(--dark); line-height: 1.2; }
h1 { font-size: clamp(38px, 5.5vw, 60px); }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 600; }
h4 { font-size: 15px; font-weight: 600; color: var(--dark); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }

p { margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: all .22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(193,98,46,.28);
}
.btn-primary:hover {
  background: var(--primary-dk);
  box-shadow: 0 6px 20px rgba(193,98,46,.38);
  transform: translateY(-1px);
}
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary-lt);
  transform: translateY(-1px);
}

/* ---------- Navigation ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  background: none;
  gap: 10px;
}
.nav-logo img { height: 58px; width: auto; }
.nav-brand-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links li a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.nav-links li a:hover { color: var(--primary); background: var(--primary-lt); }
.nav-links .nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 600;
}
.nav-links .nav-cta:hover { background: var(--primary-dk) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .25s;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 50vh;
  max-height: 70vh;
  display: flex;
  align-items: center;
  padding: 160px 0 80px;
  background: linear-gradient(140deg, var(--cream) 0%, var(--off-white) 60%, #ffe8d8 100%);
  overflow: hidden;
}

.hero .hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 48px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.hero-content h1 {
  margin-bottom: 20px;
  color: var(--dark);
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust span {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
  max-width: 380px;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--primary);
  padding: 28px 0;
}
.trust-bar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--white);
}
.trust-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.trust-item strong { font-size: 14px; font-weight: 600; display: block; }
.trust-item p { font-size: 12px; opacity: .8; margin: 0; }

/* ---------- Service Area ---------- */
.service-area { background: var(--off-white); }
.service-area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}
.area-column {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.area-column h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-lt);
}
.area-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.area-list li {
  font-size: 14px;
  color: var(--text);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.area-list li::before {
  content: '📍';
  font-size: 12px;
  flex-shrink: 0;
}
.service-area-note {
  background: var(--cream);
  border: 2px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  text-align: center;
}
.service-area-note p {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
  margin: 0;
}
.service-area-note a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}
.service-area-note a:hover {
  color: var(--primary-dk);
}

/* ---------- About ---------- */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.75;
}
.about-text p strong { color: var(--dark); }

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.value-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow .2s;
}
.value-card:hover { box-shadow: var(--shadow-sm); }
.value-icon { font-size: 26px; flex-shrink: 0; }
.value-card h3 { font-size: 16px; margin-bottom: 6px; }
.value-card p { font-size: 14px; color: var(--muted); margin: 0; }

.promise-block {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%);
  border-radius: var(--radius-lg);
  padding: 44px 52px;
  text-align: center;
}
.promise-block h3 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 26px;
  margin-bottom: 24px;
}
.promise-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 36px;
}
.promise-list li {
  color: rgba(255,255,255,.92);
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.promise-list li span {
  background: rgba(255,255,255,.2);
  color: var(--white);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* ---------- Services ---------- */
.services { background: var(--cream); }

.services-tabs { margin-top: 8px; }
.tab-buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  border: 2px solid var(--border);
  background: var(--white);
  transition: all .2s;
}
.tab-btn:hover { border-color: var(--primary); color: var(--primary); }
.tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(193,98,46,.25);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.service-note {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  padding: 12px 18px;
  background: var(--white);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.checklist-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.checklist-card h4 {
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-lt);
  font-size: 13px;
}
.checklist-card ul li {
  font-size: 14px;
  color: var(--text);
  padding: 5px 0;
  border-bottom: 1px solid var(--off-white);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.checklist-card ul li::before {
  content: '✓';
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.checklist-card ul li.note-item { color: var(--muted); font-style: italic; font-size: 12px; }
.checklist-card ul li.note-item::before { content: '*'; color: var(--muted); }

/* Add-ons */
.addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.addon-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.addon-section h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-lt);
  padding: 3px 8px;
  border-radius: 50px;
}
.addon-list { display: flex; flex-direction: column; gap: 2px; }
.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--off-white);
  gap: 16px;
}
.addon-item:last-child { border-bottom: none; }
.addon-name { font-size: 14px; color: var(--text); }
.addon-name em { color: var(--muted); font-size: 12px; }
.addon-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}
.addon-item--multi {
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}
.addon-item--multi .addon-name { font-weight: 600; }
.addon-desc { font-size: 12px; color: var(--muted); margin-top: 2px; font-weight: 400; }
.addon-prices {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.addon-prices span {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-lt);
  padding: 4px 10px;
  border-radius: 50px;
}

.supplies-cta {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.supplies-cta p { font-size: 16px; font-weight: 500; color: var(--dark); margin: 0; }

/* ---------- Pricing ---------- */
.pricing { background: var(--white); }

.pricing-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.pricing-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  border: 2px solid var(--border);
  background: var(--white);
  transition: all .2s;
}
.pricing-btn:hover { border-color: var(--primary); color: var(--primary); }
.pricing-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(193,98,46,.25);
}

.pricing-table-wrap { display: none; }
.pricing-table-wrap.active { display: block; }

.table-scroll { overflow-x: auto; }
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.pricing-table thead tr {
  background: var(--primary);
  color: var(--white);
}
.pricing-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}
.pricing-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:nth-child(even) { background: var(--cream); }
.pricing-table tbody tr:hover { background: var(--primary-lt); }
.pricing-table td {
  padding: 14px 20px;
  color: var(--text);
}
.pricing-table td:first-child { font-weight: 600; color: var(--dark); }
.pricing-table td:not(:first-child) { font-weight: 700; color: var(--primary); }
.hourly-cell {
  font-size: 13px !important;
  color: var(--muted) !important;
  font-weight: 500 !important;
}
.hourly-cell span { display: block; font-size: 11px; color: var(--muted); font-weight: 400; }
.hourly-row td { background: var(--off-white) !important; }

.pricing-note {
  margin-top: 32px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.pricing-note p { font-size: 15px; color: var(--text); margin: 0; }

/* ---------- FAQ ---------- */
.faq { background: var(--cream); }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}
.faq-answer p a { color: var(--primary); font-weight: 600; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all .25s ease;
  box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.testimonial-rating {
  font-size: 18px;
  line-height: 1;
  color: var(--gold);
}

.testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
  margin: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 12px;
  border-top: 2px solid var(--border);
}

.testimonial-author strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.testimonial-author span {
  font-size: 12px;
  color: var(--muted);
}

.testimonial-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%);
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.testimonial-cta p {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.testimonial-cta .btn-primary {
  background: var(--white);
  color: var(--primary);
}

.testimonial-cta .btn-primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* ---------- Contact ---------- */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}
.contact-info .section-label { display: block; margin-bottom: 8px; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all .2s;
}
.contact-item:hover {
  border-color: var(--primary);
  background: var(--primary-lt);
  transform: translateX(4px);
}
.contact-icon { font-size: 26px; }
.contact-item strong { font-size: 13px; font-weight: 600; color: var(--dark); display: block; }
.contact-item p { font-size: 16px; color: var(--primary); font-weight: 600; margin: 0; }

.contact-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.contact-image {
  display: flex;
  justify-content: center;
}
.contact-image img {
  max-width: 340px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .footer-logo {
  height: 140px;
  width: auto;
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 6px;
}
.footer-tagline { font-size: 12px; opacity: .55; }

.site-footer h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links ul li a {
  font-size: 14px;
  transition: color .2s;
}
.footer-links ul li a:hover { color: var(--white); }

.footer-contact p {
  font-size: 14px;
  margin-bottom: 6px;
}
.footer-contact a { transition: color .2s; }
.footer-contact a:hover { color: var(--white); }
.footer-hours { font-size: 12px; opacity: .5; margin-top: 10px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
  text-align: center;
  font-size: 13px;
  opacity: .45;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .checklist-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .service-area-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  :root { --section-gap: 64px; }
  .hero { 
    min-height: auto; 
    max-height: none; 
    padding: 100px 0 60px; 
  }
  .hero .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-image img { max-width: 280px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-image { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .addons-grid { grid-template-columns: 1fr; }
  .promise-block { padding: 36px 28px; }
  .service-area-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-cta { justify-content: center; text-align: center; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a { display: block; padding: 12px 16px; border-radius: var(--radius-sm); }
  .nav-links .nav-cta { text-align: center; }
  .nav-toggle { display: flex; }

  .hero { padding: 80px 0 50px; }
  .hero .hero-inner { padding-top: 20px; gap: 24px; }
  .hero-content h1 { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-note, .supplies-cta { flex-direction: column; align-items: flex-start; }
  .promise-list { flex-direction: column; align-items: center; }
  .tab-buttons, .pricing-toggle { gap: 6px; }
  .tab-btn, .pricing-btn { font-size: 13px; padding: 8px 18px; }
  .service-area-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-cta { flex-direction: column; padding: 28px 24px; }
}

/* ---------- Scroll animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .hero-image img { animation: none; }
}

@media (max-width: 420px) {
  .hero { padding: 60px 0 40px; }
  .hero-content h1 { font-size: 32px; }
  .hero-image img { max-width: 240px; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
}
