/* ============================================
   SCHONS CLEANING — Main Stylesheet
   Brand Colors: Purple #7B5CF5, Pink #E879A0
   Font: Poppins
   ============================================ */

/* ── CSS Variables ── */
:root {
  --purple:       #7B5CF5;
  --purple-dark:  #5B3FD4;
  --purple-light: #A78BFA;
  --purple-pale:  #F3F0FF;
  --pink:         #E879A0;
  --pink-light:   #F9A8D4;
  --white:        #FFFFFF;
  --gray-50:      #F9FAFB;
  --gray-100:     #F3F4F6;
  --gray-200:     #E5E7EB;
  --gray-400:     #9CA3AF;
  --gray-600:     #4B5563;
  --gray-800:     #1F2937;
  --text:         #1F2937;
  --text-muted:   #6B7280;

  --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:       0 4px 16px rgba(123,92,245,.15);
  --shadow-lg:    0 10px 40px rgba(123,92,245,.2);

  --radius:       14px;
  --radius-sm:    8px;
  --radius-lg:    24px;

  --transition:   0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: 1.2rem; }

/* ── Utility ── */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-pale);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-title {
  color: var(--gray-800);
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  border: none;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(123,92,245,.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(123,92,245,.5);
}

.btn-sms {
  background: linear-gradient(135deg, var(--pink), #D6428A);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,121,160,.35);
}
.btn-sms:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,121,160,.5);
}

.btn-white {
  background: var(--white);
  color: var(--purple);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); }

.btn-full { width: 100%; justify-content: center; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

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

.logo-img { height: 52px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--white);
  transition: var(--transition);
}

.navbar.scrolled .nav-links a { color: var(--gray-800); }

.nav-links a:hover { background: rgba(255,255,255,.15); }
.navbar.scrolled .nav-links a:hover { background: var(--purple-pale); color: var(--purple); }

.nav-cta {
  background: var(--white) !important;
  color: var(--purple) !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  padding: 10px 20px !important;
  box-shadow: var(--shadow);
}
.navbar.scrolled .nav-cta {
  background: var(--purple) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.navbar.scrolled .nav-toggle span { background: var(--gray-800); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #6C4FF5 0%, #8B6BF7 40%, #A78BFA 70%, #C9A8FB 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 90px;
  overflow: hidden;
}

/* Bubbles */
.bubbles { position: absolute; inset: 0; pointer-events: none; }

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  animation: floatBubble linear infinite;
}

.b1 { width: 120px; height: 120px; bottom: -60px; left: 5%; animation-duration: 14s; animation-delay: 0s; }
.b2 { width: 200px; height: 200px; bottom: -100px; left: 15%; animation-duration: 18s; animation-delay: -3s; }
.b3 { width: 80px;  height: 80px;  bottom: -40px; left: 30%; animation-duration: 12s; animation-delay: -6s; }
.b4 { width: 160px; height: 160px; bottom: -80px; left: 55%; animation-duration: 20s; animation-delay: -2s; }
.b5 { width: 60px;  height: 60px;  bottom: -30px; left: 70%; animation-duration: 10s; animation-delay: -8s; }
.b6 { width: 240px; height: 240px; bottom: -120px; left: 80%; animation-duration: 22s; animation-delay: -4s; }
.b7 { width: 90px;  height: 90px;  bottom: -45px; right: 5%; animation-duration: 16s; animation-delay: -1s; }

@keyframes floatBubble {
  0%   { transform: translateY(0) scale(1); opacity: .6; }
  50%  { transform: translateY(-60vh) scale(1.05); opacity: .3; }
  100% { transform: translateY(-110vh) scale(1); opacity: 0; }
}

/* Hero layout */
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .05em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-accent {
  color: #FFE066;
}

.hero-sub {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #FFE066;
  font-size: .9rem;
}
.trust-stars span { color: var(--white); font-weight: 700; margin-left: 4px; }

.hero-trust p { color: rgba(255,255,255,.8); font-size: .85rem; }

/* Hero image */
.hero-image { position: relative; display: flex; justify-content: center; }

.hero-photo-wrap {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.12);
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}

.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-photo-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.7);
}
.hero-photo-placeholder i { font-size: 3.5rem; }
.hero-photo-placeholder p { text-align: center; font-size: .85rem; }
.hero-photo-placeholder small { font-size: .75rem; opacity: .7; font-family: monospace; }

.hero-photo-wrap.no-photo .hero-photo-placeholder { display: flex; }

.hero-badge {
  position: absolute;
  bottom: 24px; left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
  font-size: .85rem;
}
.hero-badge i { font-size: 1.4rem; color: var(--purple); }
.hero-badge strong { display: block; color: var(--gray-800); font-size: .9rem; }
.hero-badge span { color: var(--text-muted); font-size: .8rem; }

/* Stats bar */
.hero-stats {
  max-width: 1200px;
  margin: 0 auto 0;
  padding: 0 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.2);
  position: relative;
  z-index: 1;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 24px 16px;
}
.stat strong { display: block; color: var(--white); font-size: 1.8rem; font-weight: 800; }
.stat span   { color: rgba(255,255,255,.75); font-size: .8rem; font-weight: 500; }

.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); flex-shrink: 0; }

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--gray-50);
}

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

.service-card--wide { grid-column: span 3; display: flex; flex-direction: row; }
.service-card--wide .service-img-wrap { flex: 0 0 300px; aspect-ratio: 16/9; }
.service-card--wide .service-body { flex: 1; }

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--purple-pale);
}

.service-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .service-img { transform: scale(1.05); }

.service-img-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-light);
  font-size: 2.5rem;
}

.service-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.service-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--purple-pale);
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.service-body h3 { margin-bottom: 8px; color: var(--gray-800); }
.service-body p  { color: var(--text-muted); font-size: .9rem; flex: 1; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--purple);
  font-weight: 600;
  font-size: .9rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }

/* ============================================
   WHY US
   ============================================ */
.why-us {
  padding: 100px 0;
  background: var(--white);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.why-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.why-img-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  aspect-ratio: 4/5;
  background: var(--purple-pale);
  border-radius: var(--radius-lg);
  color: var(--purple-light);
  font-size: .9rem;
  text-align: center;
}
.why-img-placeholder i { font-size: 3rem; }

.why-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; font-weight: 600;
  box-shadow: var(--shadow-lg);
}
.why-badge i { font-size: 1.3rem; }

.why-lead {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.why-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }

.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(123,92,245,.3);
}

.why-list strong { display: block; font-size: .95rem; color: var(--gray-800); margin-bottom: 4px; }
.why-list p { color: var(--text-muted); font-size: .87rem; margin: 0; }

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: 100px 0;
  background: var(--gray-50);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  background: var(--purple-pale);
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-placeholder {
  display: none;
  position: absolute; inset: 0;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  color: var(--purple-light);
}
.gallery-placeholder i { font-size: 2rem; }
.gallery-placeholder span { font-size: .8rem; font-family: monospace; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}

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

.testimonial-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); }

.t-stars { display: flex; gap: 3px; color: #FBBF24; margin-bottom: 14px; }

.testimonial-card > p {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.t-author { display: flex; align-items: center; gap: 12px; }

.t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}

.t-author strong { display: block; font-size: .9rem; color: var(--gray-800); }
.t-author span   { font-size: .8rem; color: var(--text-muted); }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple), #9B7BF8);
  padding: 64px 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-band-text h2 { color: var(--white); margin-bottom: 8px; }
.cta-band-text p  { color: rgba(255,255,255,.8); }

.cta-band-actions { display: flex; gap: 16px; flex-shrink: 0; }

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--gray-50);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.3rem;
  color: var(--gray-800);
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
  color: var(--text);
  transition: color var(--transition);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-item:hover { color: var(--purple); }
.contact-item.no-link { cursor: default; }
.contact-item.no-link:hover { color: var(--text); }

.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--purple-pale);
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

.contact-item strong { display: block; font-size: .85rem; color: var(--gray-800); }
.contact-item span   { font-size: .9rem; color: var(--text-muted); }

.btn-sms-big {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--pink), #D6428A);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(232,121,160,.35);
  transition: var(--transition);
}
.btn-sms-big:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,121,160,.5); }
.btn-sms-big i { font-size: 1.8rem; flex-shrink: 0; }
.btn-sms-big strong { display: block; font-size: .95rem; }
.btn-sms-big span   { font-size: .8rem; opacity: .85; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-600);
}
.form-group label span { color: var(--pink); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(123,92,245,.12);
}

.form-group textarea { resize: vertical; }

.form-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  display: none;
}
.form-message.success { background: #D1FAE5; color: #065F46; border: 1px solid #6EE7B7; display: block; }
.form-message.error   { background: #FEE2E2; color: #991B1B; border: 1px solid #FCA5A5; display: block; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-800);
  color: var(--gray-400);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo { height: 56px; margin-bottom: 16px; }

.footer-brand p { font-size: .87rem; line-height: 1.7; max-width: 260px; }

.footer-social {
  display: flex; gap: 12px; margin-top: 20px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--gray-400);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--purple); color: var(--white); }

.footer-links h4,
.footer-contact h4 { color: var(--white); font-size: .95rem; margin-bottom: 20px; }

.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .87rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--purple-light); }

.footer-contact p {
  font-size: .87rem;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.footer-contact i { color: var(--purple-light); width: 16px; }
.footer-contact a:hover { color: var(--purple-light); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: var(--purple-light); }
.footer-bottom a:hover { text-decoration: underline; }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--purple-dark); }

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--wide { grid-column: span 2; }
  .why-inner { gap: 40px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

/* Mobile */
@media (max-width: 768px) {
  /* Nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 40px;
    gap: 4px;
    box-shadow: -4px 0 20px rgba(0,0,0,.1);
    transition: right var(--transition);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--gray-800) !important; width: 100%; }
  .nav-cta { background: var(--purple) !important; color: var(--white) !important; margin-top: 12px; }

  /* Hero */
  .hero-content { grid-template-columns: 1fr; padding: 40px 24px 20px; gap: 32px; }
  .hero-image { order: -1; }
  .hero-photo-wrap { max-width: 300px; margin: 0 auto; }
  .hero-badge { left: 0; bottom: -16px; }
  .hero-stats { flex-wrap: wrap; }
  .stat { min-width: 45%; }
  .stat-divider { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card--wide { grid-column: span 1; flex-direction: column; }
  .service-card--wide .service-img-wrap { flex: none; }

  /* Why us */
  .why-inner { grid-template-columns: 1fr; }
  .why-image { display: none; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* CTA band */
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; flex-wrap: wrap; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Sections */
  .services, .why-us, .gallery, .testimonials, .contact { padding: 64px 0; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 16px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .bubble { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
