/* Peachy Clean Junk Removal — Custom styles
   ----------------------------------------------------------------
   Brand kit palette (2026-06-30):
     --green:      #A6CE39   primary brand green
     --green-dark: #86A82D   text accent / hover
     --green-pale: #F4F8E6   tinted backgrounds
     --ink:        #131313   dark green (headings / "black")
     --dark:       #262421   body text
     --mid:        #5B6B60   secondary text
     --cream:      #FFF6E3   warm page bg
     --peach:      #F68B1F   orange accent (floating peaches, shimmer, delight)
     --peach-deep: #D9740F
     --peach-light:#FFC56B   soft peach (section tints, FAQ panels, checkmarks)
   Typography: Anton (headlines) + Montserrat (body) — Google Fonts
*/

:root {
  /* Brand kit palette (2026-06-30): dark green #0B2B18 · green #A6CE39 · orange #F68B1F · peach #FFC56B · cream #FFF6E3 */
  --green:       #A6CE39;
  --green-dark:  #86A82D;
  --green-pale:  #F4F8E6;
  --green-soft:  #E6F0C2;
  --ink:         #131313;
  --dark:        #262421;
  --mid:         #5B6B60;
  --cream:       #FFF6E3;
  --peach:       #F68B1F;
  --peach-deep:  #D9740F;
  --peach-light: #FFC56B;
  --border:      #E0E0E0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: #FFFFFF;
  overflow-x: hidden;
  font-size: 1.0625rem;
  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: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.08;
}
/* Headings tagged font-serif now render crisp Montserrat ExtraBold (was Anton) */
.font-serif { font-family: 'Montserrat', system-ui, sans-serif !important; font-weight: 800; letter-spacing: -0.015em; }

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; }
/* The ::before gradient sits above any content that has no stacking context, so
   an unwrapped label gets painted over and vanishes on hover. Lift every child
   above the overlay, and set a white hover colour on the link itself, so a pill
   stays readable even if the .area-pill-text wrapper is ever missing. */
.area-pill > * { position: relative; z-index: 1; }
.area-pill:hover, .area-pill:hover * { 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: 'Montserrat', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  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: 'Montserrat', sans-serif;
  font-size: 6rem;
  font-weight: 800;
  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: 'Montserrat', 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;
  color: #262421;            /* typed text: charcoal */
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.input-peachy::placeholder { color: #5a5a52; opacity: 1; }   /* was light gray → readable charcoal-gray */
/* Nav dropdowns: bridge the 8px gap under the trigger so the menu doesn't close
   when the cursor moves down from the nav link into the panel. */
header nav .group > div.absolute::before {
  content: '';
  position: absolute;
  top: -0.9rem;
  left: 0;
  right: 0;
  height: 0.9rem;
}

/* 3-button CTA rows: stay on one line at desktop (stack only on tablet/mobile) */
@media (min-width: 1024px) {
  .cta-row { flex-wrap: nowrap !important; gap: 0.6rem !important; align-items: center; }
  .cta-row .btn-peachy, .cta-row .btn-outline, .cta-row [data-sms-quote] {
    padding: 0.65rem 0.95rem !important; font-size: 0.9rem !important; white-space: nowrap; flex: 0 0 auto;
  }
}
/* Global: darken light-gray placeholders on all light-bg form fields (beats Tailwind preflight). Dark bg-ink fields kept light below. */
input::placeholder, textarea::placeholder { color: #5a5a52 !important; opacity: 1; }
.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: 1280px) and (max-width: 1480px) {
  header nav {
    gap: 1.1rem !important;
  }
  header nav a {
    font-size: 0.9rem !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); }

/* === Dark form cards (partner pages): readable inputs, placeholders & dropdown options === */
.bg-ink input::placeholder,
.bg-ink textarea::placeholder { color: rgba(255,246,227,.85) !important; opacity: 1; }
.bg-ink select,
.bg-ink input,
.bg-ink textarea { color: #FFF6E3; }
/* dropdown option list renders on a light menu — force dark, readable text */
.bg-ink select option { color: #0B2B18; background: #FFFFFF; }
.bg-ink select:invalid,
.bg-ink select option[value=""] { color: rgba(255,246,227,.65); }

/* === Before/After comparison slider (Real Results) === */
.ba-slider { container-type: inline-size; position: relative; aspect-ratio: 4/3; overflow: hidden;
  border-radius: 1rem; box-shadow: 0 12px 30px rgba(0,0,0,.12); user-select: none; touch-action: pan-y; }
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-before { position: absolute; inset: 0; width: 50%; height: 100%; overflow: hidden; }
.ba-before img { width: 100cqw; max-width: none; }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; z-index: 6; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 4px; background: #fff; transform: translateX(-50%);
  pointer-events: none; z-index: 5; box-shadow: 0 0 0 1px rgba(0,0,0,.25), 0 0 12px rgba(0,0,0,.45); }
.ba-handle::after { content: "\2194"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 46px; height: 46px; background: var(--peach); color: #fff; border-radius: 9999px; border: 3px solid #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 800; box-shadow: 0 3px 14px rgba(0,0,0,.45); }
.ba-label { position: absolute; top: .7rem; font-size: .8rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; padding: .3rem .8rem; border-radius: 9999px; z-index: 4; box-shadow: 0 2px 8px rgba(0,0,0,.3); }
.ba-label-before { left: .7rem; background: var(--ink); color: #fff; }
.ba-label-after  { right: .7rem; background: var(--peach); color: #fff; }
/* Visible drag instruction (client: make it bright, larger, bold) */
.ba-hint { position: absolute; left: 50%; bottom: .8rem; transform: translateX(-50%); z-index: 7;
  background: var(--peach); color: #131313; font-weight: 800; font-size: .85rem; letter-spacing: .02em;
  padding: .4rem .95rem; border-radius: 9999px; white-space: nowrap; pointer-events: none;
  box-shadow: 0 3px 12px rgba(0,0,0,.4); animation: ba-nudge 1.8s ease-in-out infinite; }
@keyframes ba-nudge { 0%,100%{ transform: translateX(-50%) translateY(0);} 50%{ transform: translateX(-50%) translateY(-3px);} }
.ba-slider.ba-touched .ba-hint { opacity: 0; transition: opacity .4s; animation: none; }

/* === [CONFIRM] placeholder tag (internal — remove once client answers) === */
.confirm-tag { display:inline-block; background:#FFE08A; color:#7A4B00; font-weight:700;
  font-size:0.72rem; letter-spacing:.03em; padding:0.05rem 0.45rem; border-radius:0.4rem;
  border:1px dashed #C98A00; vertical-align:middle; }

/* === Peach checkmark list (client note: peach check marks) === */
.check-peach { list-style: none; padding-left: 0; }
.check-peach li { position: relative; padding-left: 2rem; margin-bottom: 0.6rem; }
.check-peach li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 1.4rem; height: 1.4rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--peach-light); color: var(--ink);
  border-radius: 9999px; font-size: 0.85rem; font-weight: 700;
}

/* === FAQ peach panels (client note: peach behind the questions) === */
.faq-panel { background: #FFE6C8; border:1px solid var(--peach-light); }
.faq-panel .faq-question { color: var(--ink); }
.faq-panel .faq-question:hover { color: var(--peach-deep); }
.faq-panel.open { background: #FFEFD9; }
.faq-panel + .faq-panel { margin-top:.75rem; }


/* === Alternating box colors (client note: alternate colors) === */
.alt-boxes > * { background:#ffffff !important; border-color:#E6F0C2 !important; }
.alt-boxes > *:nth-child(even) { background:#FFE6C8 !important; border-color:#FFD09B !important; }

/* A button told not to wrap must not shrink either. Without this, a flex row
   squeezes the button narrower than its own text and the label spills out the
   side (seen on the "Not Sure What Your X Costs?" CTA band at desktop). */
.btn-peachy.whitespace-nowrap,
.btn-outline.whitespace-nowrap,
.btn-lime.whitespace-nowrap,
[data-sms-quote].whitespace-nowrap { flex-shrink: 0; }
