/* Peachy Clean Junk Removal — Custom styles
   ----------------------------------------------------------------
   Brand palette (matched to live logo):
     --green:      #AFC938   primary brand
     --green-dark: #8FA42D   text accent / hover
     --green-pale: #F5F9E8   tinted backgrounds
     --ink:        #1A1A1A   headings
     --dark:       #2D2D2D   body text
     --mid:        #666666   secondary text
     --cream:      #FFF8F2   warm page bg
     --peach:      #F18F2A   accent only (floating peaches, shimmer, delight)
     --peach-deep: #E26F1A
   Typography: Ubuntu (Google Fonts) — single typeface, all weights
*/

/* Ubuntu Local Fonts (Self-hosted for performance & compliance) */
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local('Ubuntu Light'), local('Ubuntu-Light'), url('assets/fonts/ubuntu-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Ubuntu Regular'), local('Ubuntu'), url('assets/fonts/ubuntu-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local('Ubuntu Medium'), local('Ubuntu-Medium'), url('assets/fonts/ubuntu-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Ubuntu Bold'), local('Ubuntu-Bold'), url('assets/fonts/ubuntu-700.woff2') format('woff2');
}

:root {
  --green:       #AFC938;
  --green-dark:  #8FA42D;
  --green-pale:  #F5F9E8;
  --green-soft:  #E5EFC0;
  --ink:         #1A1A1A;
  --dark:        #2D2D2D;
  --mid:         #666666;
  --cream:       #FFF8F2;
  --peach:       #F18F2A;
  --peach-deep:  #E26F1A;
  --border:      #E0E0E0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Ubuntu', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: #FFFFFF;
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Reserve room at the bottom for the sticky mobile CTA bar (mobile only) */
@media (max-width: 1023px) {
  body { padding-bottom: 76px; }
}

/* Keep decorative peach mascots and blurred blobs from forcing horizontal scroll on small screens */
@media (max-width: 768px) {
  .peach-blob { display: none; }
  .peach-float-1, .peach-float-2, .peach-float-3 { font-size: clamp(2.5rem, 8vw, 4rem) !important; opacity: 0.4 !important; }
}

h1, h2, h3, h4, .display {
  font-family: 'Ubuntu', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}

img { max-width: 100%; display: block; }

/* ========= Parallax ========= */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  .parallax { background-attachment: scroll; }
}

.parallax-layer {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ========= Floating Peaches (3D) — kept as secondary delight ========= */
@keyframes float-1 {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(20px, -30px, 0) rotate(15deg); }
}
@keyframes float-2 {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(-25px, -40px, 0) rotate(-12deg); }
}
@keyframes float-3 {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-5deg); }
  50% { transform: translate3d(15px, -25px, 0) rotate(10deg); }
}
.peach-float-1 { animation: float-1 8s ease-in-out infinite; }
.peach-float-2 { animation: float-2 10s ease-in-out infinite; }
.peach-float-3 { animation: float-3 12s ease-in-out infinite; }

/* ========= 3D Card Tilt ========= */
.card-3d {
  transform-style: preserve-3d;
  transition: transform 1.1s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  perspective: 1000px;
}
.card-3d:hover {
  transform: perspective(1000px) rotateX(4deg) rotateY(-4deg) translateY(-10px) scale(1.025);
  box-shadow: 0 35px 70px -15px rgba(175, 201, 56, 0.45), 0 22px 40px -18px rgba(26, 26, 26, 0.18);
}

.card-3d-icon {
  transition: transform 1.1s cubic-bezier(0.19, 1, 0.22, 1);
}
.card-3d:hover .card-3d-icon {
  transform: translateZ(40px) scale(1.18);
}

/* ========= Service Area pill hover ========= */
.area-pill {
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.9s cubic-bezier(0.19, 1, 0.22, 1), color 0.7s ease;
  position: relative;
  overflow: hidden;
}
.area-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 0;
}
.area-pill:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px -8px rgba(175, 201, 56, 0.55);
}
.area-pill:hover::before { opacity: 1; }
.area-pill:hover .area-pill-text { color: #fff; }
.area-pill-text { position: relative; z-index: 1; transition: color 0.7s ease; }

/* ========= CTA Buttons ========= */
.btn-peachy {
  background: var(--green);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.9s cubic-bezier(0.19, 1, 0.22, 1), background 0.4s ease;
  box-shadow: 0 8px 25px -5px rgba(175, 201, 56, 0.5);
  position: relative;
  overflow: hidden;
  border: 2px solid var(--green);
}
.btn-peachy::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 1.2s cubic-bezier(0.19, 1, 0.22, 1), height 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.btn-peachy:hover {
  transform: translateY(-4px) scale(1.04);
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 18px 40px -5px rgba(143, 164, 45, 0.6);
}
.btn-peachy:hover::after { width: 500px; height: 500px; }

.btn-lime {
  background: var(--green);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.9s cubic-bezier(0.19, 1, 0.22, 1), background 0.4s ease;
  box-shadow: 0 8px 25px -5px rgba(175, 201, 56, 0.5);
  border: 2px solid var(--green);
}
.btn-lime:hover {
  transform: translateY(-4px) scale(1.04);
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 18px 40px -5px rgba(143, 164, 45, 0.65);
}

.btn-outline {
  border: 2px solid var(--ink);
  color: var(--ink);
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, transform 0.9s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  background: transparent;
}
.btn-outline:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -5px rgba(175, 201, 56, 0.4);
}

/* ========= Underline link animation ========= */
.nav-link {
  position: relative;
  transition: color 0.6s ease;
  color: var(--ink);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--green-dark); }
.nav-link.active { color: var(--green-dark); }

/* ========= Reveal on scroll ========= */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========= Hero text shimmer (peach accent kept as delight) ========= */
@keyframes shimmer-in {
  0% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}
.shimmer-text {
  background: linear-gradient(90deg, var(--ink) 0%, var(--ink) 28%, var(--green-dark) 50%, var(--ink) 72%, var(--ink) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-in 7s ease-in-out infinite;
}

/* ========= Decorative blob ========= */
.peach-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
}
.lime-blob { background: var(--green); }
.orange-blob { background: var(--peach); opacity: 0.25; }

/* ========= Number ticker ========= */
.stat-number {
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

/* ========= Service grid card ========= */
.service-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.4s ease, box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--green);
  box-shadow: 0 25px 50px -12px rgba(175, 201, 56, 0.4);
}
.service-card .icon-circle {
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), background 0.4s ease;
}
.service-card:hover .icon-circle {
  transform: rotateY(360deg) scale(1.12);
  background: var(--green);
}
.service-card:hover .icon-circle svg { color: #fff; transition: color 0.4s ease; }

/* ========= Hero glow ========= */
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(175, 201, 56, 0.45) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-orange {
  background: radial-gradient(circle, rgba(241, 143, 42, 0.35) 0%, transparent 70%);
}

/* ========= Trust marquee ========= */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-track {
  animation: marquee 30s linear infinite;
}

/* ========= Reviews carousel (infinite loop) ========= */
.reviews-carousel {
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
@keyframes reviews-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.reviews-carousel__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: reviews-scroll 60s linear infinite;
  padding-inline: 1.5rem;
}
.reviews-carousel:hover .reviews-carousel__track { animation-play-state: paused; }
.review-card {
  flex: 0 0 360px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: 14px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.review-card__stars { color: var(--green); font-size: 1.05rem; letter-spacing: 0.06em; }
.review-card__text  { font-size: 0.95rem; color: var(--dark); font-style: italic; flex: 1; line-height: 1.6; }
.review-card__author { font-weight: 700; font-size: 0.85rem; color: var(--ink); }
.review-card__location { font-size: 0.78rem; color: var(--mid); }
@media (max-width: 640px) {
  .review-card { flex-basis: 280px; padding: 1.25rem; }
}

/* ========= Step card connector ========= */
.step-card { position: relative; }
.step-card .step-number {
  font-family: 'Ubuntu', sans-serif;
  font-size: 6rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  opacity: 0.95;
}

/* ========= Hamburger button + Mobile menu ========= */
.hamburger {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: var(--ink);
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.4s ease, transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger:hover { background: var(--green-dark); transform: scale(1.06); }
.hamburger span {
  width: 22px;
  height: 2.5px;
  background: var(--green);
  border-radius: 2px;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(86vw, 380px);
  background: var(--ink);
  color: #fff;
  z-index: 60;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: -20px 0 60px -10px rgba(0,0,0,0.4);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-backdrop {
  position: fixed; inset: 0;
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 55;
}
.mobile-backdrop.open { opacity: 1; pointer-events: auto; }
.mobile-link {
  display: block;
  padding: 1rem 0;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff;
  border-bottom: 1px solid rgba(175, 201, 56, 0.25);
  transition: color 0.4s ease, padding 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.mobile-link:hover { color: var(--green); padding-left: 0.75rem; }
.mobile-link.active { color: var(--green); }

/* ========= Form input ========= */
.input-peachy {
  background: white;
  border: 2px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  width: 100%;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.input-peachy:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(175, 201, 56, 0.2);
}

/* ========= FAQ accordion ========= */
.faq-item {
  border-bottom: 1px solid var(--border);
  transition: border-color 0.4s ease;
}
.faq-question {
  cursor: pointer;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.4s ease;
}
.faq-question:hover { color: var(--green-dark); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.19, 1, 0.22, 1), padding 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}
.faq-icon {
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ========= Trust bar ========= */
.trust-bar-item {
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), color 0.4s ease;
}
.trust-bar-item:hover {
  transform: translateY(-4px);
  color: var(--green-dark);
}

/* ========= Image hover lift ========= */
.lift-on-hover {
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  overflow: hidden;
}
.lift-on-hover img { transition: transform 1.6s cubic-bezier(0.19, 1, 0.22, 1); }
.lift-on-hover:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 35px 70px -15px rgba(26, 26, 26, 0.3);
}
.lift-on-hover:hover img { transform: scale(1.08); }

/* ========= Image frame ========= */
.photo-frame {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--ink);
}
.photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 26, 26, 0.4));
  pointer-events: none;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ========= Logo animation ========= */
.logo-mark {
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.logo-mark:hover { transform: rotate(-10deg) scale(1.08); }

/* ========= City service-area banner ========= */
.city-banner {
  position: relative;
  height: clamp(200px, 32vw, 360px);
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.city-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.15) 0%, rgba(26,26,26,0.55) 60%, var(--cream) 100%);
  pointer-events: none;
}
.city-banner__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 1.5rem;
}

/* ========= Sticky mobile CTA bar — 3 animated circular actions (Tucson-style) ========= */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  padding: 0.9rem max(0.9rem, env(safe-area-inset-left)) max(0.5rem, env(safe-area-inset-bottom)) max(0.9rem, env(safe-area-inset-right));
  background: #fff;
  border: 3px solid var(--peach);
  border-bottom: none;
  border-radius: 1.5rem 1.5rem 0 0;
  overflow: visible;
  box-shadow: 0 -10px 28px -10px rgba(26, 26, 26, 0.22);
  animation: ctaBarUp 0.5s cubic-bezier(0.19, 1, 0.22, 1) both;
}
.mobile-cta-bar__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 0.4rem;
  max-width: 460px;
  margin-inline: auto;
}
.mcta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.72rem;
  line-height: 1.1;
  text-align: center;
}
.mcta-circle {
  width: 48px;
  height: 48px;
  margin-top: -22px;
  border: 3px solid #fff;
  border-radius: 9999px;
  background: var(--peach);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px -4px rgba(241, 143, 42, 0.6);
  transition: transform 0.25s cubic-bezier(0.19, 1, 0.22, 1), background 0.3s ease;
}
.mcta-item:hover .mcta-circle { background: var(--peach-deep); transform: translateY(-2px); }
.mcta-item:active .mcta-circle { transform: scale(0.92); }
/* Center "Book Now" — larger + pulsing */
.mcta-book { font-size: 0.8rem; }
.mcta-book .mcta-circle {
  width: 64px;
  height: 64px;
  margin-top: -34px;
  box-shadow: 0 8px 22px -4px rgba(241, 143, 42, 0.75);
  animation: ctaPulse 2s ease-in-out infinite;
}
@keyframes ctaBarUp { from { transform: translateY(100%); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 8px 22px -4px rgba(241,143,42,0.75), 0 0 0 0 rgba(241,143,42,0.45); }
  50%      { box-shadow: 0 8px 22px -4px rgba(241,143,42,0.75), 0 0 0 12px rgba(241,143,42,0); }
}
@media (max-width: 1023px) { .mobile-cta-bar { display: block; } }

/* Continuously-moving bar icons (mimics Tucson's animated icons) */
.mcta-circle svg { display: block; will-change: transform; }
.mcta-anim-swing   { transform-origin: 50% 10%; animation: mctaSwing 2.4s ease-in-out infinite; }
.mcta-anim-ring    { transform-origin: 50% 50%; animation: mctaRing 2s ease-in-out infinite; }
.mcta-anim-shutter { transform-origin: 50% 50%; animation: mctaShutter 1.8s ease-in-out infinite; }
@keyframes mctaSwing { 0%, 100% { transform: rotate(-9deg); } 50% { transform: rotate(9deg); } }
@keyframes mctaRing {
  0%, 55%, 100% { transform: rotate(0); }
  60% { transform: rotate(-13deg); }
  66% { transform: rotate(11deg); }
  72% { transform: rotate(-9deg); }
  78% { transform: rotate(7deg); }
  84% { transform: rotate(-4deg); }
  90% { transform: rotate(0); }
}
@keyframes mctaShutter { 0%, 100% { transform: scale(1); } 45% { transform: scale(1.16); } 62% { transform: scale(0.95); } }

/* ========= Hero feature cards — staggered scroll reveal ========= */
body.reveal-ready .feat-card { opacity: 0; transform: translateY(26px); }
body.reveal-ready .feat-card.in {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
body.reveal-ready .feat-card.in:nth-child(2) { transition-delay: 0.1s; }
body.reveal-ready .feat-card.in:nth-child(3) { transition-delay: 0.2s; }
body.reveal-ready .feat-card.in:nth-child(4) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .mobile-cta-bar { animation: none; }
  .mcta-book .mcta-circle,
  .mcta-anim-swing, .mcta-anim-ring, .mcta-anim-shutter { animation: none; }
  body.reveal-ready .feat-card { opacity: 1; transform: none; }
}

/* ========= Reduce motion ========= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .parallax { background-attachment: scroll; }
  .reviews-carousel__track { animation: none; }
}

/* ========= Header Layout & Wrapping Fixes ========= */
header a[href^="tel:"] {
  white-space: nowrap !important;
}
header .btn-peachy {
  white-space: nowrap !important;
}
@media (min-width: 1024px) and (max-width: 1280px) {
  header nav {
    gap: 1rem !important;
  }
  header nav a {
    font-size: 0.875rem !important;
  }
}

/* ========= Uploader animations and utility ========= */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.animate-fade-in {
  animation: fadeIn 0.3s ease-out forwards;
}

/* === Redesign 2026: heading scale-up (client note #5) === */
h1, .display { font-size: clamp(2.5rem, 6vw, 4.25rem); line-height: 1.04; }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.08; }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }

/* === Placeholder peach SVG + float === */
.peach-svg { width: 2.5rem; height: 2.5rem; display: inline-block; }
.peach-float { animation: peachFloat 6s ease-in-out infinite; }
@keyframes peachFloat {
  0%,100% { transform: translateY(0) rotate(-4deg); }
  50%     { transform: translateY(-14px) rotate(4deg); }
}
@media (prefers-reduced-motion: reduce) { .peach-float { animation: none; } }

/* === Placeholder image greybox === */
.ph-img { background:
  repeating-linear-gradient(45deg,#ECECEC 0 12px,#E3E3E3 12px 24px);
  display:flex; align-items:center; justify-content:center;
  color:#9A9A9A; font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; }
.ph-img::after { content:"PLACEHOLDER"; }

/* === Light feature cards (Tucson style) === */
.feat-card { background:#fff; border:1px solid var(--green-soft); border-radius:1.25rem;
  padding:1.75rem 1.25rem; text-align:center; box-shadow:0 10px 30px rgba(0,0,0,.06);
  transition:transform .2s, box-shadow .2s; }
.feat-card:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(0,0,0,.10); }
.feat-card .ic { width:3rem; height:3rem; margin:0 auto .75rem; color:var(--peach); }

/* === FAQ peach panels (client note #7) === */
.faq-panel { background: var(--cream); border:1px solid var(--green-soft); }
.faq-panel + .faq-panel { margin-top:.75rem; }

