/* =============================================
   ADC Painting & Remodeling v2.0 — Styles
   Design System: The Creator (Craftsman)
   ============================================= */

/* --- Custom Properties --- */
:root {
  /* Primary */
  --terracotta: #C75B39;
  --terracotta-dark: #A84829;
  --terracotta-light: #E8A290;

  /* Secondary */
  --charcoal: #2D2926;
  --warm-gray: #4A4543;
  --slate: #6B6560;

  /* Neutrals */
  --linen: #FAF6F1;
  --sand: #F0EBE3;
  --stone: #E5DED4;
  --cream: #FFF9F2;

  /* Accent */
  --sage: #7A8B6F;
  --gold: #D4A853;

  /* Semantic */
  --success: #4A7C59;
  --error: #C44536;

  /* Typography */
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 80px;
  --space-10: 96px;

  /* Layout */
  --max-width: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(45,41,38,0.06), 0 1px 2px rgba(45,41,38,0.04);
  --shadow-md: 0 4px 12px rgba(45,41,38,0.08), 0 2px 4px rgba(45,41,38,0.04);
  --shadow-lg: 0 12px 40px rgba(45,41,38,0.12), 0 4px 12px rgba(45,41,38,0.06);
  --shadow-hover: 0 8px 24px rgba(45,41,38,0.10), 0 3px 8px rgba(45,41,38,0.05);

  --transition: 0.25s ease;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--warm-gray);
  background: var(--linen);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--terracotta-dark); }
ul { list-style: none; }

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.15;
}
h4 { font-family: var(--font-body); font-weight: 600; color: var(--charcoal); }
h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.875rem); }

.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.phone-number { font-family: var(--font-mono); font-weight: 500; letter-spacing: 0.02em; }

/* --- Eyebrow --- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  margin-bottom: var(--space-3);
}
.eyebrow--light { color: var(--terracotta-light); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.btn--primary { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }
.btn--primary:hover { background: var(--terracotta-dark); border-color: var(--terracotta-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-hover); }
.btn--charcoal { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.btn--charcoal:hover { background: #3D3835; border-color: #3D3835; color: #fff; transform: translateY(-1px); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }
.btn--sm { padding: 10px 20px; font-size: 0.875rem; }
.btn--full { width: 100%; }

/* --- Sections --- */
.section { padding: var(--space-10) 0; }
.section--linen { background: var(--linen); }
.section--sand { background: var(--sand); }
.section--charcoal { background: var(--charcoal); color: #fff; }
.section--charcoal h2, .section--charcoal h3 { color: #fff; }
.section--charcoal p { color: rgba(255,255,255,0.8); }

.section-header { text-align: center; max-width: 640px; margin: 0 auto var(--space-8); }
.section-header--light h2 { color: #fff; }
.section-header__sub { color: var(--slate); margin-top: var(--space-3); font-size: 1.0625rem; }
.section-header--light .section-header__sub { color: rgba(255,255,255,0.7); }

/* --- Header --- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}
.header.scrolled {
  background: rgba(250,246,241,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__logo img { height: 70px; width: auto; }
.header.scrolled .header__logo img { height: 60px; }
.header__nav { flex: 1; }
.header__menu { display: flex; gap: 28px; justify-content: center; }
.header__menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  transition: color var(--transition);
  position: relative;
}
.header.scrolled .header__menu a { color: var(--warm-gray); }
.header__menu a:hover { color: var(--terracotta); }
.header__menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--terracotta);
  transition: width var(--transition);
}
.header__menu a:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 16px; }
.header__phone { font-size: 0.875rem; color: #fff; font-weight: 500; }
.header.scrolled .header__phone { color: var(--charcoal); }
.header__toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.header__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}
.header.scrolled .header__toggle span { background: var(--charcoal); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: var(--space-10) 0 var(--space-9);
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,41,38,0.88) 0%, rgba(45,41,38,0.4) 50%, rgba(45,41,38,0.15) 100%);
}
.hero__content {
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  padding: 0 24px;
  margin: 0 auto;
}
.hero__eyebrow {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--terracotta-light);
  letter-spacing: 0.06em;
  margin-bottom: var(--space-4);
}
.hero__title { color: #fff; margin-bottom: var(--space-5); }
.hero__text { color: rgba(255,255,255,0.85); font-size: 1.0625rem; max-width: 560px; margin-bottom: var(--space-6); }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* --- Trust Bar --- */
.trust-bar {
  background: var(--charcoal);
  padding: var(--space-5) 0;
  border-bottom: 3px solid var(--terracotta);
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  text-align: center;
}
.trust-bar__item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #fff;
  font-weight: 400;
}
.trust-bar__item span { font-size: 0.8125rem; color: rgba(255,255,255,0.6); }

/* --- About --- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
.about__content h2 { margin-bottom: var(--space-5); }
.about__content p { margin-bottom: var(--space-4); }
.about__content .btn { margin-top: var(--space-4); }
.about__image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* --- Services --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--stone);
  transition: all var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.service-card__img { overflow: hidden; aspect-ratio: 4/3; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-card__img img { transform: scale(1.03); }
.service-card h3 { padding: var(--space-5) var(--space-5) var(--space-2); font-size: 1.25rem; }
.service-card p { padding: 0 var(--space-5) var(--space-5); font-size: 0.9375rem; color: var(--slate); }

/* --- Process --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.process-step { text-align: center; }
.process-step__number {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--terracotta);
  display: block;
  margin-bottom: var(--space-4);
}
.process-step h3 { margin-bottom: var(--space-3); color: #fff; }
.process-step p { font-size: 0.9375rem; color: rgba(255,255,255,0.7); }

/* --- Gallery --- */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}
.gallery-filter {
  background: none;
  border: 1.5px solid var(--stone);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-filter:hover, .gallery-filter.active {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.hidden { display: none; }

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(45,41,38,0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: var(--space-7);
}
.lightbox.active { display: flex; }
.lightbox__img { max-width: 90%; max-height: 85vh; border-radius: var(--radius-md); }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 12px;
  transition: opacity var(--transition);
}
.lightbox__close { top: 20px; right: 24px; font-size: 2.5rem; }
.lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }

/* --- Testimonials --- */
.testimonial-slider { max-width: 700px; margin: 0 auto; text-align: center; }
.testimonial { display: none; }
.testimonial.active { display: block; }
.testimonial__stars { color: var(--gold); font-size: 1.25rem; margin-bottom: var(--space-4); letter-spacing: 4px; }
.testimonial__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  color: var(--charcoal);
  line-height: 1.35;
  margin-bottom: var(--space-4);
  border: none;
  padding: 0;
}
.testimonial__detail { font-size: 0.9375rem; color: var(--slate); margin-bottom: var(--space-5); font-style: italic; }
.testimonial__author strong { display: block; color: var(--charcoal); font-size: 1rem; }
.testimonial__author span { font-size: 0.8125rem; color: var(--slate); }
.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: var(--space-6); }
.testimonial-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--stone);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.testimonial-dot.active { background: var(--terracotta); border-color: var(--terracotta); }

/* --- Cities --- */
.cities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}
.city-tag {
  padding: 8px 20px;
  background: var(--cream);
  border: 1px solid var(--stone);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--warm-gray);
  transition: all var(--transition);
}
.city-tag:hover { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }

/* --- FAQ --- */
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--stone); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-5) 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--terracotta); }
.faq-icon {
  width: 24px; height: 24px;
  position: relative;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--charcoal);
  transition: transform 0.3s ease;
}
.faq-icon::before { width: 14px; height: 2px; top: 11px; left: 5px; }
.faq-icon::after { width: 2px; height: 14px; top: 5px; left: 11px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding-bottom: var(--space-5); color: var(--slate); font-size: 0.9375rem; line-height: 1.7; }

/* --- CTA Band --- */
.cta-band {
  background: var(--terracotta);
  padding: var(--space-9) 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: var(--space-3); }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: var(--space-6); font-size: 1.0625rem; }
.cta-band__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* --- Contact --- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}
.contact__info h2 { margin-bottom: var(--space-4); }
.contact__info > p { margin-bottom: var(--space-6); }
.contact__details { display: flex; flex-direction: column; gap: var(--space-4); }
.contact__item { display: flex; gap: var(--space-3); align-items: flex-start; }
.contact__item svg { color: var(--terracotta); flex-shrink: 0; margin-top: 2px; }
.contact__item strong { display: block; color: var(--charcoal); font-size: 0.875rem; margin-bottom: 2px; }
.contact__item span, .contact__item a { font-size: 0.9375rem; color: var(--warm-gray); }

.contact-form {
  background: var(--cream);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--stone);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form-group { margin-bottom: var(--space-4); }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--space-2);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--stone);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(199,91,57,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-terms { margin-bottom: var(--space-5); }
.terms-label {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: 0.8125rem;
  color: var(--slate);
  cursor: pointer;
  line-height: 1.5;
}
.terms-label input { margin-top: 3px; flex-shrink: 0; accent-color: var(--terracotta); }

/* --- Footer --- */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: var(--space-9) 0 var(--space-6);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: var(--space-7);
  margin-bottom: var(--space-7);
}
.footer__logo { height: 50px; width: auto; margin-bottom: var(--space-4); filter: brightness(0) invert(1); }
.footer__about p { font-size: 0.875rem; line-height: 1.7; }
.footer h4 { color: #fff; font-size: 0.9375rem; margin-bottom: var(--space-4); }
.footer ul li { font-size: 0.875rem; margin-bottom: var(--space-2); }
.footer a { color: rgba(255,255,255,0.7); }
.footer a:hover { color: var(--terracotta-light); }
.footer__contact p { font-size: 0.875rem; margin-bottom: var(--space-2); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-5);
  text-align: center;
  font-size: 0.8125rem;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(37,211,102,0.45); }

/* --- Mobile Sticky CTA --- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 950;
  background: var(--charcoal);
  padding: 8px 12px;
  gap: 8px;
  border-top: 2px solid var(--terracotta);
}
.mobile-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}
.mobile-cta__call { background: var(--terracotta); }
.mobile-cta__whatsapp { background: #25D366; }
.mobile-cta__quote { background: rgba(255,255,255,0.12); }

/* --- Scroll Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1024px) {
  .section { padding: var(--space-8) 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
}

/* --- Tablet (768px) --- */
@media (max-width: 768px) {
  .header__nav, .header__phone { display: none; }
  .header__toggle { display: block; }
  .header__actions .btn { display: none; }
  .header__logo img { height: 50px; }
  .header.scrolled .header__logo img { height: 50px; }

  /* Mobile Nav */
  .header__nav.open {
    display: block;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--linen);
    padding: var(--space-5);
    box-shadow: var(--shadow-lg);
  }
  .header__nav.open .header__menu {
    flex-direction: column;
    gap: 0;
  }
  .header__nav.open .header__menu a {
    color: var(--charcoal);
    padding: 12px 0;
    display: block;
    border-bottom: 1px solid var(--stone);
  }

  .hero { min-height: 90vh; min-height: 90dvh; align-items: center; }
  .hero__content { margin: 0 auto; padding: 0 20px; }
  .hero__title { font-size: 2rem; }
  .hero__text { font-size: 0.9375rem; max-width: 100%; }
  .hero__eyebrow { font-size: 0.75rem; }

  .section { padding: var(--space-7) 0; }
  .section-header { margin-bottom: var(--space-6); }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.375rem; }
  .container { padding: 0 20px; }

  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
  .about { grid-template-columns: 1fr; gap: var(--space-6); }
  .about__image { order: -1; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: var(--space-7); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }

  .btn { padding: 12px 24px; font-size: 0.875rem; }

  .mobile-cta { display: flex; }
  .whatsapp-float { bottom: 80px; }

  body { padding-bottom: 70px; }
}

/* --- Large phone / 414px --- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero { min-height: 85vh; min-height: 85dvh; padding: var(--space-8) 0 var(--space-7); }
  .hero__content { padding: 0 16px; }
  .hero__title { font-size: 1.75rem; }
  .hero__text { font-size: 0.875rem; line-height: 1.6; }
  .hero__eyebrow { font-size: 0.6875rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; text-align: center; }

  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  .section { padding: var(--space-6) 0; }
  .section-header { margin-bottom: var(--space-5); }
  .section-header__sub { font-size: 0.9375rem; }

  .trust-bar__grid { grid-template-columns: 1fr 1fr; }
  .trust-bar__item strong { font-size: 1rem; }
  .trust-bar__item span { font-size: 0.75rem; }

  .service-card h3 { font-size: 1.125rem; padding: var(--space-4) var(--space-4) var(--space-2); }
  .service-card p { padding: 0 var(--space-4) var(--space-4); font-size: 0.875rem; }

  .process-step__number { font-size: 2rem; }
  .process-grid { gap: var(--space-5); }

  .gallery-grid { grid-template-columns: 1fr 1fr; gap: var(--space-3); }
  .gallery-filter { padding: 6px 14px; font-size: 0.8125rem; }

  .testimonial__quote { font-size: 1.125rem; }

  .cta-band { padding: var(--space-7) 0; }
  .cta-band h2 { font-size: 1.5rem; }
  .cta-band p { font-size: 0.9375rem; }
  .cta-band__actions { flex-direction: column; align-items: center; }
  .cta-band__actions .btn { width: 100%; max-width: 320px; }

  .contact-form { padding: var(--space-5); }
  .faq-question { font-size: 0.9375rem; }

  .cities-grid { gap: var(--space-2); }
  .city-tag { padding: 6px 14px; font-size: 0.8125rem; }

  .footer { padding: var(--space-7) 0 var(--space-9); }
  .footer__grid { gap: var(--space-5); }

  .whatsapp-float { width: 48px; height: 48px; right: 16px; bottom: 76px; }
  .whatsapp-float svg { width: 24px; height: 24px; }

  .lightbox { padding: var(--space-4); }
  .lightbox__close { top: 12px; right: 12px; font-size: 2rem; }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
}

/* --- Small phone / 375px --- */
@media (max-width: 390px) {
  .hero__title { font-size: 1.5rem; }
  .hero__text { font-size: 0.8125rem; }
  .hero__eyebrow { font-size: 0.625rem; letter-spacing: 0.04em; }

  h2 { font-size: 1.375rem; }

  .btn { padding: 11px 20px; font-size: 0.8125rem; }
  .btn--sm { padding: 8px 16px; font-size: 0.8125rem; }

  .trust-bar__item strong { font-size: 0.9375rem; }
  .trust-bar__item span { font-size: 0.6875rem; }
  .trust-bar__grid { gap: var(--space-3); }

  .service-card h3 { font-size: 1rem; }
  .service-card p { font-size: 0.8125rem; }

  .cta-band h2 { font-size: 1.25rem; }
  .cta-band p { font-size: 0.875rem; }

  .gallery-grid { gap: var(--space-2); }
  .gallery-filters { gap: var(--space-2); }

  .contact-form { padding: var(--space-4); }
  .form-group input, .form-group select, .form-group textarea { padding: 10px 12px; font-size: 0.875rem; }

  .mobile-cta { padding: 6px 8px; }
  .mobile-cta__btn { padding: 10px 6px; font-size: 0.75rem; }

  .testimonial__quote { font-size: 1rem; }
  .eyebrow { font-size: 0.75rem; letter-spacing: 0.08em; }
}
