/* ============================================================
   Peluquería Canina Mendoza
   Design Read: Local pet-grooming landing for pet owners in
   Mendoza Capital. Warm, friendly, mascot-appropriate language
   leaning toward vanilla HTML/CSS with Baloo 2 + Nunito.

   Dials: DESIGN_VARIANCE 7, MOTION_INTENSITY 5, VISUAL_DENSITY 4
   Radius system: cards 20px, inputs 12px, buttons pill (999px)
   ============================================================ */

:root {
  /* Palette (from brief, contrast-calibrated) */
  --turquoise: #26A69A;
  --turquoise-dark: #00796B;
  --turquoise-darker: #004D40;
  --orange: #FF7043;
  --orange-dark: #D84315;
  --cream: #FFF8E1;
  --cream-deep: #FFECB3;
  --brown: #6D4C41;
  --brown-dark: #3E2723;
  --brown-light: #8D6E63;
  --white: #FFFFFF;

  /* Semantic tokens */
  --bg: var(--cream);
  --bg-alt: #FFFDF5;
  --bg-card: var(--white);
  --text: var(--brown-dark);
  --text-muted: var(--brown-light);
  --heading: var(--brown-dark);
  --accent: var(--turquoise-dark);
  --accent-soft: var(--turquoise);
  --highlight: var(--orange-dark);
  --border: rgba(109, 76, 65, 0.12);
  --border-strong: rgba(109, 76, 65, 0.22);
  --shadow: 0 4px 24px rgba(109, 76, 65, 0.08);
  --shadow-lg: 0 12px 48px rgba(109, 76, 65, 0.14);
  --shadow-accent: 0 8px 32px rgba(0, 121, 107, 0.20);
  --radius-card: 20px;
  --radius-input: 12px;
  --radius-pill: 999px;
  --maxw: 1200px;

  /* Typography */
  --font-display: "Baloo 2", Georgia, serif;
  --font-body: "Nunito", system-ui, -apple-system, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--turquoise-darker); }
ul { list-style: none; padding: 0; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--heading);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { max-width: 65ch; }

/* ---- Utilities ---- */
.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.2rem);
}
.section { padding-block: clamp(3rem, 8vw, 5.5rem); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4rem); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.section-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 55ch;
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---- Skip link ---- */
.skip-link {
  position: absolute;
  left: 0; top: -200px;
  background: var(--brown-dark);
  color: #fff;
  padding: 0.8rem 1.4rem;
  z-index: 2000;
  font-weight: 700;
  border-radius: 0 0 10px 0;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; color: #fff; }

/* ---- Focus states ---- */
:focus-visible {
  outline: 3px solid var(--orange-dark);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.7rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--turquoise-dark);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  background: var(--turquoise-darker);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 121, 107, 0.30);
}
.btn-secondary {
  background: var(--orange-dark);
  color: #fff;
  box-shadow: 0 8px 28px rgba(216, 67, 21, 0.18);
}
.btn-secondary:hover {
  background: #BF360C;
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--turquoise-dark);
  border-color: var(--turquoise-dark);
}
.btn-outline:hover {
  background: var(--turquoise-dark);
  color: #fff;
}
.btn-large { padding: 1.05rem 2.2rem; font-size: 1.125rem; }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 248, 225, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--brown-dark);
  text-decoration: none;
}
.logo:hover { color: var(--brown-dark); }
.logo svg { width: 40px; height: 40px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
  border-radius: 8px;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--brown-dark);
  border-radius: 3px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle span { top: 50%; margin-top: -1.5px; }
.nav-toggle span::before { content: ""; top: -8px; }
.nav-toggle span::after { content: ""; top: 8px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before {
  top: 0; transform: translateX(-50%) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span::after {
  top: 0; transform: translateX(-50%) rotate(-45deg);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.site-nav a {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  color: var(--brown-dark);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--turquoise);
  color: #fff;
}
.site-nav .btn { margin-left: 0.5rem; }

/* ---- Hero ---- */
.hero {
  position: relative;
  background: linear-gradient(165deg, var(--cream) 0%, #E0F2F1 100%);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(38, 166, 154, 0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 121, 107, 0.10);
  color: var(--turquoise-dark);
  font-weight: 800;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
}
.hero h1 { margin-top: 1rem; }
.hero h1 .accent { color: var(--turquoise-dark); }
.hero-sub {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 50ch;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}
.hero-image-wrap {
  position: relative;
}
.hero-image {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--orange-dark);
  color: #fff;
  padding: 1rem 1.4rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-badge .paw-icon { width: 28px; height: 28px; }

/* ---- Trust strip ---- */
.trust-strip {
  background: var(--turquoise-dark);
  color: #fff;
  padding-block: 1.2rem;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.975rem;
}
.trust-item svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ---- Section heading ---- */
.section-head {
  margin-bottom: clamp(1.8rem, 4vw, 2.8rem);
}
.section-head h2 { margin-top: 0.4rem; }
.section-head p { margin-top: 0.8rem; }

/* ---- Services bento ---- */
.services-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card--featured {
  background: var(--turquoise-dark);
  color: #fff;
  border-color: transparent;
}
.service-card--featured h3,
.service-card--featured .service-desc { color: #fff; }
.service-card--featured .service-icon { background: rgba(255, 255, 255, 0.15); }
.service-card--featured .service-icon svg { stroke: #fff; }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(38, 166, 154, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-icon svg { width: 28px; height: 28px; stroke: var(--turquoise-dark); }
.service-card h3 { margin-bottom: 0.5rem; }
.service-desc {
  color: var(--text-muted);
  font-size: 1rem;
}
.service-card--featured .service-desc { color: rgba(255, 255, 255, 0.9); }

/* ---- Why-us features ---- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.why-image {
  border-radius: var(--radius-card);
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.why-list {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 112, 67, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-item-icon svg { width: 24px; height: 24px; stroke: var(--orange-dark); }
.why-item h3 { font-size: 1.15rem; margin-bottom: 0.2rem; }
.why-item p { color: var(--text-muted); font-size: 0.975rem; }

/* ---- About band ---- */
.about-band {
  background: var(--turquoise-dark);
  color: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.about-band-content { padding: clamp(2rem, 5vw, 3.5rem); }
.about-band h2 { color: #fff; }
.about-band p { color: rgba(255, 255, 255, 0.92); }
.about-band-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}
.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}
.about-stat .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.about-stat .label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.3rem;
}

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-stars {
  display: flex;
  gap: 0.15rem;
  color: var(--orange-dark);
}
.testimonial-stars svg { width: 20px; height: 20px; fill: currentColor; }
.testimonial-text {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.6;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: auto;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--turquoise);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 800; color: var(--brown-dark); }
.testimonial-pet { font-size: 0.875rem; color: var(--text-muted); }

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 0.8rem;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }
.gallery-grid .gallery-tall { grid-row: span 2; }
.gallery-grid .gallery-wide { grid-column: span 2; }

/* ---- FAQ ---- */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: grid;
  gap: 0.8rem;
}
.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brown-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question:hover { color: var(--turquoise-dark); }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.5rem 1.2rem;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ---- Location ---- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  justify-content: center;
}
.info-row {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.info-row-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(38, 166, 154, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-row-icon svg { width: 22px; height: 22px; stroke: var(--turquoise-dark); }
.info-row h3 { font-size: 1.1rem; margin-bottom: 0.15rem; }
.info-row p { color: var(--text-muted); font-size: 0.975rem; }
.location-map {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  min-height: 320px;
}
.location-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ---- CTA band ---- */
.cta-band {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  border-radius: var(--radius-card);
  padding: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.95); margin-inline: auto; }
.cta-band .btn-primary {
  background: #fff;
  color: var(--orange-dark);
}
.cta-band .btn-primary:hover {
  background: var(--cream);
  color: var(--orange-dark);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--brown-dark);
  color: rgba(255, 255, 255, 0.85);
  padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.5rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand .logo { color: #fff; margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.95rem; color: rgba(255, 255, 255, 0.7); }
.footer-col h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}
.footer-col ul { display: grid; gap: 0.5rem; }
.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  text-decoration: none;
}
.footer-col a:hover { color: var(--orange); }
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.footer-social a:hover { background: var(--orange); }
.footer-social svg { width: 20px; height: 20px; fill: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ---- WhatsApp float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #128C7E;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(18, 140, 126, 0.4);
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); background: #0E7A6E; color: #fff; }
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }

/* ---- Form ---- */
.contact-form {
  display: grid;
  gap: 1.2rem;
  max-width: 640px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: grid; gap: 0.4rem; }
.form-group label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brown-dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--border-strong);
  border-radius: var(--radius-input);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--bg-card);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--turquoise);
  box-shadow: 0 0 0 3px rgba(38, 166, 154, 0.18);
}
.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
  border-color: var(--orange-dark);
}
.form-error {
  font-size: 0.875rem;
  color: var(--orange-dark);
  font-weight: 600;
  display: none;
}
.form-group.has-error .form-error { display: block; }
.form-success {
  background: rgba(38, 166, 154, 0.10);
  border: 2px solid var(--turquoise);
  border-radius: var(--radius-input);
  padding: 1rem 1.2rem;
  color: var(--turquoise-dark);
  font-weight: 700;
  display: none;
}
.form-success.visible { display: block; }

/* ---- Page hero (subpages) ---- */
.page-hero {
  background: linear-gradient(165deg, var(--cream) 0%, #E0F2F1 100%);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 112, 67, 0.10), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ---- Pricing table ---- */
.pricing-list {
  display: grid;
  gap: 0.7rem;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.4rem;
  background: var(--bg-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  gap: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pricing-row:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.pricing-row .name { font-weight: 700; color: var(--brown-dark); }
.pricing-row .desc { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.15rem; }
.pricing-row .price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--turquoise-dark);
  white-space: nowrap;
}

/* ---- Process steps ---- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.process-step { text-align: center; }
.process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--turquoise);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}
.process-step h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.process-step p { color: var(--text-muted); font-size: 0.975rem; }

/* ---- Team ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 1.8rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
  border: 4px solid var(--turquoise);
}
.team-card h3 { margin-bottom: 0.2rem; }
.team-role { color: var(--turquoise-dark); font-weight: 700; font-size: 0.95rem; }
.team-bio { color: var(--text-muted); font-size: 0.95rem; margin-top: 0.6rem; }

/* ---- Reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 0;
    background: var(--cream);
    padding: 5rem 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1050;
    overflow-y: auto;
  }
  .site-nav.open { transform: translateX(0); }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .site-nav a {
    display: block;
    padding: 0.9rem 1.2rem;
    font-size: 1.15rem;
    border-radius: var(--radius-card);
  }
  .site-nav .btn { margin-left: 0; margin-top: 0.5rem; text-align: center; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { order: -1; max-width: 420px; margin-inline: auto; }
  .hero-badge { font-size: 0.95rem; padding: 0.8rem 1.1rem; }

  .services-bento { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-band { grid-template-columns: 1fr; }
  .about-band-image { min-height: 220px; order: -1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .whatsapp-float { width: 54px; height: 54px; bottom: 1rem; right: 1rem; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-grid .gallery-wide { grid-column: span 1; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .trust-strip .container { gap: 0.8rem 1.2rem; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
