/* ============================================
   Escribanía Caputo — hoja de estilos
   Paleta: gris claro + toque de lila, tipografía
   serif elegante para títulos, sans limpia para texto.
   ============================================ */

:root {
  --bg: #faf9fc;
  --surface: #ffffff;
  --surface-alt: #f2eff7;
  --ink: #423d4a;
  --ink-soft: #86808f;
  --line: #ebe7f2;
  --lilac: #d8cfec;
  --lilac-deep: #b7a9d9;
  --lilac-pale: #f3effa;
  --lilac-text: #9483bb;
  --gold: #cbae82;

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  letter-spacing: 0.01em;
}

h2 { font-size: 2.4rem; line-height: 1.15; }
h3 { font-size: 1.5rem; line-height: 1.3; }

p { margin: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--lilac-text);
  font-weight: 600;
  text-transform: uppercase;
}

.lede {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 46ch;
}

/* ---------- Botones ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px -12px rgba(66, 61, 74, 0.35); }
.btn:active { transform: translateY(0) scale(0.97); box-shadow: none; }

.btn-primary {
  background: var(--lilac-deep);
  color: var(--ink);
}
.btn-primary:hover { background: var(--lilac); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--lilac-text); color: var(--lilac-text); }

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.btn-whatsapp:hover { background: #1fb958; }

/* ---------- Header ---------- */

header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

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

.brand img { height: 64px; width: auto; transition: opacity 0.2s ease; }
.brand:hover img { opacity: 0.75; }

.brand-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.1;
}
.brand-name span {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-top: 2px;
}

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

.nav-links a {
  font-size: 0.93rem;
  color: var(--ink);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--lilac-text);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--lilac-text); }

.nav-cta { display: flex; align-items: center; gap: 18px; }

.nav-collapse { display: contents; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  padding: 0;
  position: relative;
}
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.nav-toggle-bars { top: 17px; }
.nav-toggle-bars::before { top: -8px; }
.nav-toggle-bars::after { top: 8px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { top: 0; transform: rotate(45deg); background: var(--ink); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { top: 0; transform: rotate(-45deg); background: var(--ink); }

/* ---------- Hero ---------- */

.hero {
  padding: 84px 0 96px;
  background: linear-gradient(160deg, var(--lilac-pale) 0%, var(--bg) 42%);
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: 3.1rem;
  line-height: 1.12;
  margin: 14px 0 22px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.hero-rating strong { color: var(--ink); }
.hero-rating-photo {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--surface);
  box-shadow: 0 0 0 1px var(--line);
}
.stars { color: var(--gold); letter-spacing: 1px; }

.hero-copy {
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-img {
  position: relative;
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-copy, .hero-img { animation: none; }
}
.hero-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 24px 48px -24px rgba(66, 61, 74, 0.28);
}
.hero-img::before {
  content: "";
  position: absolute;
  inset: 24px -24px -24px 24px;
  background: var(--lilac-pale);
  z-index: -1;
  border-radius: 8px;
}

/* Cuando el hero usa el collage de dos fotos (en vez de una sola) */
.hero-img.collage-imgs {
  height: 520px;
}
.hero-img.collage-imgs::before { content: none; }
.hero-img.collage-imgs img {
  height: auto;
  box-shadow: none;
}

.hero-stats {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

/* ---------- Secciones genéricas ---------- */

section { padding: 84px 0; }

.section-head {
  max-width: 620px;
  margin-bottom: 48px;
}
.section-head h2 { margin-top: 12px; }

.alt { background: var(--surface); }

/* ---------- Servicios ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  background: var(--surface);
  padding: 32px 28px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.service-card:hover { background: var(--lilac-pale); transform: translateY(-3px); }
.service-card:active { transform: translateY(-1px) scale(0.985); }
.service-card .icon { transition: transform 0.25s ease; }
.service-card:hover .icon { transform: scale(1.1); }

.service-card .icon {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--lilac-text);
}

.service-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.service-card p { color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- Tabs de servicios ---------- */

.services-tabs {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 8px;
  align-items: start;
}

.svc-tab-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-right: 1px solid var(--line);
  padding-right: 20px;
  position: sticky;
  top: 100px;
}

.svc-tab-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  padding: 13px 16px;
  border-radius: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 1.3;
  color: var(--ink-soft);
  transition: background 0.2s ease, color 0.2s ease;
}
.svc-tab-btn:hover { background: var(--surface); color: var(--ink); }
.svc-tab-btn.active {
  background: var(--lilac-pale);
  color: var(--ink);
  font-weight: 600;
}
.svc-tab-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--lilac-text);
}
.svc-tab-icon svg { width: 100%; height: 100%; }

.svc-panels { min-height: 420px; padding-left: 8px; }

.svc-panel { display: none; }
.svc-panel.active {
  display: block;
  animation: svcPanelIn 0.4s ease;
}
@keyframes svcPanelIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.svc-panel h3 {
  font-size: 1.6rem;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.svc-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.svc-panel li {
  padding-left: 20px;
  position: relative;
}
.svc-panel li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lilac);
}
.svc-panel li strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.svc-panel li span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.55;
}

.svc-closing {
  max-width: 720px;
  margin: 56px auto 0;
  text-align: center;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}
.svc-closing-lede {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 14px;
}
.svc-closing p:not(.svc-closing-lede) {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ---------- Sobre / trayectoria ---------- */

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about-reverse { grid-template-columns: 1.15fr 0.85fr; }
.about-reverse .about-img { order: 2; }

.bio-text { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.bio-text p { color: var(--ink-soft); }
.bio-text p:last-child {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
  font-style: italic;
}

.team-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.team-block h2 { margin-top: 12px; }
.team-text { margin-top: 24px; text-align: left; }
.team-text p:last-child { font-style: normal; color: var(--ink-soft); }
.team-text strong { color: var(--lilac-text); font-weight: 600; }

.cred-badges {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.cred-badges-left { justify-content: flex-start; }
.cred-badge {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 4px;
  padding: 14px 22px;
  min-width: 150px;
}
.cred-badge .label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.cred-badge .value {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 600;
}

.about-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 4px;
}

.collage-imgs {
  position: relative;
  height: 460px;
}
.collage-imgs img.main {
  width: 82%;
  height: 380px;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  position: absolute;
  top: 0; left: 0;
}
.collage-imgs img.accent {
  width: 46%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  position: absolute;
  bottom: 0; right: 0;
  border: 6px solid var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  height: 230px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item img.crop-top { object-position: top; }

.banner {
  position: relative;
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
}
.banner img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.55);
}
.banner-text {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 40px;
}
.banner-text p {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: #fff;
  max-width: 20ch;
  line-height: 1.35;
}

.social-block {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 56px;
  align-items: center;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}
.social-copy h3 { margin: 10px 0 14px; font-size: 1.7rem; }
.social-copy p { color: var(--ink-soft); max-width: 42ch; }
.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-links .btn svg { margin-right: 2px; }

.reel-embed {
  display: flex;
  justify-content: center;
}
.reel-placeholder {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 9 / 16;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
  text-decoration: none;
  margin: 0 auto;
  transition: border-color 0.2s ease;
}
.reel-placeholder:hover { border-color: var(--lilac); }
.reel-play {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--lilac-pale);
  color: var(--lilac-text);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.reel-placeholder p { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); }
.reel-placeholder span { font-size: 0.78rem; color: var(--ink-soft); }

.about-copy .eyebrow { display: block; margin-bottom: 12px; }
.about-copy h2 { margin-bottom: 20px; }
.about-copy p + p { margin-top: 16px; }
.about-copy p { color: var(--ink-soft); }

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--ink);
}
.stat span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ---------- Reseñas ---------- */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card:last-child:nth-child(odd) { grid-column: span 2; }
.review-card:last-child:nth-child(odd) p { max-width: 62ch; }

.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 30px 28px;
  border-radius: 4px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  transform: translateY(-3px);
  border-color: var(--lilac);
  box-shadow: 0 16px 30px -20px rgba(66, 61, 74, 0.3);
}
.review-card .stars { display: block; margin-bottom: 14px; font-size: 0.95rem; }
.review-card p {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  flex-grow: 1;
}
.review-card .who {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.review-card .who::before {
  content: attr(data-initial);
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--lilac-pale);
  color: var(--lilac-text);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
}

/* ---------- FAQ ---------- */

.faq { max-width: 780px; }

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 4px;
  margin: 0 -4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--ink);
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--lilac-text); }
.faq-q .plus {
  font-family: var(--sans);
  font-size: 1.4rem;
  color: var(--lilac-text);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a p {
  padding-bottom: 22px;
  color: var(--ink-soft);
  max-width: 62ch;
}

/* ---------- Ubicación ---------- */

.location {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.location-info {
  background: var(--surface);
  color: var(--ink);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}
.location-info .eyebrow { color: var(--lilac-text); }
.location-info h3 { color: var(--ink); margin: 12px 0 18px; font-size: 1.6rem; }
.location-info p { color: var(--ink-soft); margin-bottom: 8px; }
.location-info .loc-detail { display: flex; gap: 12px; margin-top: 18px; font-size: 0.92rem; color: var(--ink-soft); }

.location iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

.map-static {
  position: relative;
  display: block;
  height: 100%;
  min-height: 380px;
}
.map-static svg {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: block;
}
.map-static-badge {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 3px;
  box-shadow: 0 6px 18px rgba(66, 61, 74, 0.18);
}

/* ---------- Contacto ---------- */

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--ink-soft); margin-bottom: 28px; }

.contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); display: block; }
.contact-list .value { font-size: 1.02rem; }
.contact-list a.value:hover { color: var(--lilac-text); }

form.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 40px;
  display: grid;
  gap: 20px;
}

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

.field label {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 11px 13px;
  font-family: var(--sans);
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--ink);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--lilac-text);
}
.field textarea { resize: vertical; min-height: 110px; }

.hp-field { position: absolute; left: -9999px; }

.form-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.form-success {
  display: none;
  background: var(--lilac-pale);
  border: 1px solid var(--lilac);
  border-radius: 3px;
  padding: 16px 18px;
  font-size: 0.92rem;
  color: var(--lilac-text);
}

/* ---------- Footer ---------- */

footer {
  background: var(--surface-alt);
  color: var(--ink-soft);
  padding: 60px 0 26px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.footer-brand { margin-bottom: 16px; }
.footer-brand img { height: 96px; }

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a:hover { color: var(--lilac-text); }

.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.socials { display: flex; gap: 14px; }
.socials a {
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.socials a:hover { border-color: var(--lilac); color: var(--lilac-text); transform: translateY(-2px); }

/* ---------- WhatsApp flotante ---------- */

.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 50;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.22);
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float:active { transform: scale(0.94); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .services-tabs { grid-template-columns: 1fr; gap: 24px; }
  .svc-tab-list {
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 14px;
    position: static;
    -webkit-overflow-scrolling: touch;
  }
  .svc-tab-btn {
    flex-shrink: 0;
    white-space: nowrap;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 9px 16px 9px 12px;
  }
  .svc-tab-btn.active { border-color: var(--lilac); }
  .svc-panels { padding-left: 0; min-height: 0; }
  .hero { padding: 56px 0 64px; }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-img img { height: 360px; }
  .hero-img.collage-imgs { height: 340px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-rating { flex-wrap: wrap; }
  .about { grid-template-columns: 1fr; }
  .about-img img { height: 320px; }
  .collage-imgs { height: 340px; }
  .about-stats { gap: 28px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .social-block { grid-template-columns: 1fr; gap: 32px; }
  .reel-embed { order: -1; }
  .banner { height: 220px; }
  .banner-text p { font-size: 1.3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .location { grid-template-columns: 1fr; }
  .location-info { padding: 36px 32px; }
  .contact { grid-template-columns: 1fr; }
  form.contact-form { padding: 32px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  .nav { padding: 12px 0; }
  .brand img { height: 52px; }
  .nav-toggle { display: block; }
  .brand, .nav-toggle { flex-shrink: 0; }

  .nav-collapse {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: var(--bg);
    z-index: 60;
    overflow-y: auto;
    padding-bottom: 20px;
  }
  .nav-collapse.open { display: flex; }
  body.menu-open { overflow: hidden; }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-links a {
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links a::after { display: none; }

  .nav-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 20px 24px 24px;
  }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 2rem; }
  .lede { max-width: none; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .hero-img img { height: 280px; }
  .hero-img.collage-imgs { height: 260px; }
  .hero-img::before { inset: 14px -14px -14px 14px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 26px 22px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-item { height: 150px; }
  .social-block { padding-top: 40px; margin-top: 48px; }
  .social-links { flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 58px 0; }
  h2 { font-size: 1.9rem; }
  .location-info { padding: 30px 24px; }
  .location iframe, .map-static, .map-static svg { min-height: 280px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 14px; align-items: flex-start; }
  .wa-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 26px; height: 26px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 1.7rem; }
  .about-stats { flex-wrap: wrap; row-gap: 18px; }
  .stat { flex: 1 1 40%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 200px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
