/* ============================================
   Jalu Pilates — Design tokens
   Paleta derivada del logo (marmolado rosa-lavanda-verde azulado)
   Tipografía: Fraunces (display, cálida, trazo suave) + Work Sans (cuerpo)
   ============================================ */

:root {
  /* Color */
  --ink: #2b2140;
  --ink-soft: #5a4d6e;
  --primary: #a24b7c;
  --primary-deep: #6b2f55;
  --primary-soft: #f3e3ea;
  --teal: #3f7d76;
  --teal-soft: #e3eeec;
  --bg: #fbf7f4;
  --bg-alt: #f5ebee;
  --cream: #fffdfb;
  --line: #e8dde2;
  --gold-star: #d9a441;

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Work Sans", "Segoe UI", sans-serif;

  /* Layout */
  --max-width: 1180px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  --shadow-soft: 0 20px 60px -25px rgba(43, 33, 64, 0.35);
  --shadow-card: 0 10px 30px -15px rgba(43, 33, 64, 0.22);
}

/* ============ Reset ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0;
  line-height: 1.15;
  font-weight: 600;
}

p {
  margin: 0;
}

button {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  position: relative;
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.section-alt {
  background: var(--bg-alt);
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

/* ============ Signature: swipe underline ============ */
.swipe {
  position: relative;
  font-style: italic;
  color: var(--primary-deep);
  white-space: nowrap;
}

.swipe svg {
  position: absolute;
  left: -2%;
  bottom: -0.18em;
  width: 104%;
  height: 0.35em;
  z-index: -1;
}

.swipe svg path {
  stroke: var(--primary-soft);
  stroke-width: 10;
  fill: none;
}

/* ============ Signature: marble blobs ============ */
.blob {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  filter: blur(2px);
  opacity: 0.65;
}

.blob svg {
  width: 100%;
  height: 100%;
}

/* ============ Eyebrow labels ============ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--teal);
  display: inline-block;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  min-height: 44px;
}

.btn-primary {
  background: var(--primary);
  color: var(--cream);
  box-shadow: 0 14px 30px -12px rgba(162, 75, 124, 0.55);
}

.btn-primary:hover {
  background: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -14px rgba(107, 47, 85, 0.6);
}

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

.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--cream);
  color: var(--primary-deep);
}

.btn-light:hover {
  background: var(--primary-soft);
  transform: translateY(-2px);
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============ Header ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 247, 244, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px -18px rgba(43, 33, 64, 0.5);
  padding: 0.7rem 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 14px -6px rgba(43, 33, 64, 0.5);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary-deep);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-cta .btn {
  padding: 0.7rem 1.4rem;
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle svg {
  width: 26px;
  height: 26px;
  color: var(--ink);
}

/* ============ Hero ============ */
.hero {
  padding-top: calc(var(--space-xl) + 3rem);
  padding-bottom: var(--space-xl);
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 30%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(27, 19, 41, 0.94) 0%, rgba(27, 19, 41, 0.82) 38%, rgba(27, 19, 41, 0.55) 65%, rgba(27, 19, 41, 0.32) 100%),
    linear-gradient(0deg, rgba(27, 19, 41, 0.5) 0%, rgba(27, 19, 41, 0) 35%);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 640px;
}

.hero-copy .eyebrow {
  color: #f0c6d6;
}

.hero-copy .eyebrow::before {
  background: #f0c6d6;
}

.hero-copy h1 {
  color: var(--cream);
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  margin-bottom: 1.3rem;
}

.hero-copy .swipe {
  color: #f6d9e4;
}

.hero-copy .swipe svg path {
  stroke: rgba(162, 75, 124, 0.55);
}

.hero-copy p.lead {
  font-size: 1.15rem;
  color: rgba(255, 253, 251, 0.85);
  max-width: 46ch;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero .btn-ghost {
  border-color: rgba(255, 253, 251, 0.6);
  color: var(--cream);
}

.hero .btn-ghost:hover {
  background: var(--cream);
  color: var(--ink);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 253, 251, 0.12);
  border: 1px solid rgba(255, 253, 251, 0.3);
  backdrop-filter: blur(6px);
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--cream);
}

.hero-rating .stars {
  color: var(--gold-star);
  letter-spacing: 1px;
}

.hero-rating strong {
  color: var(--cream);
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 253, 251, 0.12);
  border: 1px solid rgba(255, 253, 251, 0.3);
  backdrop-filter: blur(6px);
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cream);
  transition: background 0.2s ease;
}

.hero-phone:hover {
  background: rgba(255, 253, 251, 0.22);
}

.hero-phone svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* ============ Trust strip ============ */
.trust-strip {
  padding: var(--space-md) 0;
  background: var(--ink);
}

.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--cream);
}

.trust-item .dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #f0c6d6;
}

.trust-item .dot svg {
  width: 20px;
  height: 20px;
}

.trust-item p {
  font-size: 0.92rem;
  line-height: 1.4;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

/* ============ Section heads ============ */
.section-head {
  max-width: 640px;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-top: 0.9rem;
}

/* ============ About ============ */
.about .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}

.about-copy p:last-of-type {
  margin-bottom: 0;
}

.about-signature {
  margin-top: 1.6rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--primary-deep);
}

/* ============ Services ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2rem 1.7rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.service-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
}

.service-card .icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

/* ============ Why ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem 2.5rem;
  position: relative;
  z-index: 1;
}

.why-item {
  display: flex;
  gap: 1.1rem;
}

.why-item .mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--teal);
  flex-shrink: 0;
  width: 2ch;
}

.why-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.why-item p {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

/* ============ Gallery ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  aspect-ratio: 3 / 4;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-note {
  background: var(--bg-alt);
  border: 1px dashed var(--primary);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
}

.gallery-note h3 {
  font-size: 1.1rem;
}

.gallery-note p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* ============ Testimonials ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-card .stars {
  color: var(--gold-star);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonial-card p.quote {
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.55;
  flex-grow: 1;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
}

.testimonial-card .avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ============ Reels ============ */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.reel-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 400px;
  display: flex;
}

.reel-embed iframe {
  border-radius: var(--radius-md) !important;
}

.testimonials-more {
  text-align: center;
  margin-top: 2.2rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.testimonials-more a {
  color: var(--primary-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============ Schedule ============ */
.schedule-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
  align-items: start;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.schedule-table th,
.schedule-table td {
  text-align: left;
  padding: 1rem 1.4rem;
  font-size: 0.98rem;
  border-bottom: 1px solid var(--line);
}

.schedule-table th {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--bg-alt);
}

.schedule-table tr:last-child td {
  border-bottom: none;
}

.schedule-table td.closed {
  color: #b45a6b;
}

.schedule-note {
  margin-top: 1.3rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.schedule-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 1.8rem;
}

.info-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.info-list .dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-list .dot svg {
  width: 19px;
  height: 19px;
}

.info-list strong {
  display: block;
  font-size: 0.98rem;
}

.info-list span {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ============ Location ============ */
.location-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  z-index: 1;
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/3;
  border: none;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  text-align: left;
  padding: 1.3rem 1.6rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  cursor: pointer;
  min-height: 44px;
}

.faq-question .plus {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item[data-open="true"] .plus {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 1.6rem 1.4rem;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* ============ Final CTA ============ */
.final-cta {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  color: var(--cream);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  max-width: 700px;
  margin: 0 auto 1.2rem;
}

.final-cta p {
  color: rgba(255, 253, 251, 0.75);
  max-width: 520px;
  margin: 0 auto 2.2rem;
  font-size: 1.05rem;
}

.final-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ Footer ============ */
.site-footer {
  background: var(--bg-alt);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: var(--space-md);
}

.footer-brand .brand {
  margin-bottom: 0.9rem;
}

.footer-brand p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  max-width: 34ch;
}

.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-deep);
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--cream);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col a {
  font-size: 0.94rem;
  color: var(--ink);
}

.footer-col a:hover {
  color: var(--primary-deep);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ============ Sticky mobile CTA ============ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: none;
  padding: 0.8rem 1rem;
  background: var(--cream);
  box-shadow: 0 -10px 30px -14px rgba(43, 33, 64, 0.4);
  gap: 0.7rem;
}

.sticky-cta .btn {
  flex: 1;
}

/* ============ Floating WhatsApp button ============ */
.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 95;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.65);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 34px -8px rgba(37, 211, 102, 0.75);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

/* ============ Reveal on scroll ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .nav-links,
  .header-cta .btn-ghost {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .about .container,
  .schedule-wrap,
  .location-wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: unset;
  }

  .hero-bg img {
    object-position: 70% 30%;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16 / 9;
  }

  .sticky-cta {
    display: flex;
  }

  section {
    padding: var(--space-lg) 0;
  }

  body {
    padding-bottom: 4.6rem;
  }

  .whatsapp-float {
    left: 16px;
    bottom: calc(4.6rem + 16px);
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid,
  .testimonials-grid,
  .gallery-grid,
  .reels-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:first-child {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-rating {
    align-self: flex-start;
  }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.mobile-nav-close {
  background: none;
  border: none;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-close svg {
  width: 26px;
  height: 26px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.mobile-nav-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
