/* ============================================================
   Katherine Brito · PMU Landing Page
   Archetype: Glassmorphism Modern — Beauty Warm
   2026-05-27
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --bg:            #fdf9f6;
  --bg-warm:       #f5ede3;
  --bg-deep:       #1e1410;
  --glass:         rgba(255,255,255,0.65);
  --glass-dark:    rgba(255,255,255,0.4);
  --glass-border:  rgba(255,255,255,0.55);
  --glass-shadow:  0 8px 32px rgba(184,112,80,0.12), 0 2px 8px rgba(0,0,0,0.06);
  --ink:           #1e1410;
  --ink-soft:      #5c4a3d;
  --ink-mute:      #9c8578;
  --accent:        #b87050;
  --accent-deep:   #9a5a3c;
  --gold:          #c8905a;
  --blush:         #f0c4a8;
  --rose:          #e8b0b0;
  --lavender:      #d8c8f0;
  --champagne:     #f0e8d0;
  --line:          rgba(30,20,16,0.1);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --radius-full:   9999px;
  --max-w:         1260px;
  --pad-x:         clamp(1.25rem, 5vw, 4rem);
  --nav-h:         72px;
  --ease-out:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:   cubic-bezier(0.83, 0, 0.17, 1);
  --transition:    0.3s var(--ease-out);
  --font-display:  "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:     "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ---- Typography scale ---- */
.t-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.t-display {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.t-display em { font-style: italic; color: var(--accent); }
.t-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
}
.t-h2 em { font-style: italic; color: var(--accent); }
.t-h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 500;
  line-height: 1.2;
}
.t-body { font-size: 1rem; line-height: 1.7; color: var(--ink-soft); }
.t-small { font-size: 0.85rem; line-height: 1.5; color: var(--ink-mute); }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header .t-eyebrow { margin-bottom: 0.75rem; }
.section-header .t-h2 { margin-bottom: 1rem; }
.section-header .t-body { max-width: 480px; margin-inline: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font-body);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(184,112,80,0.35);
}
.btn--primary:hover {
  background: var(--accent-deep);
  box-shadow: 0 8px 28px rgba(184,112,80,0.45);
  transform: translateY(-2px);
}
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
  background: var(--glass);
  color: var(--ink);
  border: 1.5px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.85);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn--wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn--wa:hover {
  background: #1fbc5a;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn--outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ---- Glass card utility ---- */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
}
@supports not (backdrop-filter: blur(16px)) {
  .glass-card { background: rgba(255,255,255,0.88); }
}

/* ---- Mesh gradient (animated background) ---- */
.mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.mesh::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(ellipse at 20% 20%, #ffd4b8 0%, transparent 55%),
    radial-gradient(ellipse at 80% 15%, #f5c0d0 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, #ddd0f8 0%, transparent 50%),
    radial-gradient(ellipse at 10% 70%, #f8e8d0 0%, transparent 45%),
    radial-gradient(ellipse at 90% 60%, #fce8d8 0%, transparent 45%);
  filter: blur(50px) saturate(130%);
  animation: meshDrift 20s ease-in-out infinite;
}
@keyframes meshDrift {
  0%, 100% { transform: scale(1) rotate(0deg); }
  33%       { transform: scale(1.08) rotate(3deg) translateX(-1%); }
  66%       { transform: scale(1.04) rotate(-2deg) translateX(1%); }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.nav.is-scrolled {
  background: rgba(253,249,246,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__link {
  font-size: 0.85rem;
  font-weight: 450;
  color: var(--ink-soft);
  position: relative;
  transition: color var(--transition);
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1.5px;
  background: var(--accent);
  transition: right 0.3s var(--ease-out);
}
.nav__link:hover { color: var(--accent); }
.nav__link:hover::after { right: 0; }
.nav__cta { flex-shrink: 0; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(253,249,246,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink);
  transition: color var(--transition);
}
.nav__mobile-link:hover { color: var(--accent); }
.nav__mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 1.5rem;
  color: var(--ink-soft);
  padding: 0.5rem;
  cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3rem, 8vh, 5rem);
}
.hero__content { display: flex; flex-direction: column; gap: 1.5rem; }
.hero__eyebrow { margin-bottom: -0.5rem; }
.hero__title { font-family: var(--font-display); font-size: clamp(3rem, 6.5vw, 5.6rem); font-weight: 500; line-height: 1.02; letter-spacing: -0.02em; }
.hero__title em { font-style: italic; color: var(--accent); }
.hero__sub { font-size: 1.05rem; line-height: 1.7; color: var(--ink-soft); max-width: 460px; }
.hero__actions { display: flex; gap: 0.875rem; flex-wrap: wrap; align-items: center; }
.hero__badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* Hero offer box */
.hero__offer {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  background: rgba(184,112,80,0.08);
  border: 1.5px solid rgba(184,112,80,0.25);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  max-width: 480px;
}
.hero__offer p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.hero__offer p strong { color: var(--ink); font-weight: 600; }
.hero__offer-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.6rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  margin-top: 0.15rem;
}

/* Hero urgency line */
.hero__urgency {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-mute);
  margin-top: -0.5rem;
}
.hero__urgency svg { flex-shrink: 0; color: var(--accent); }

/* Button size modifier */
.btn--lg {
  padding: 1.1rem 2.25rem;
  font-size: 1rem;
  font-weight: 600;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-soft);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Hero visual side */
.hero__visual { position: relative; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.hero__img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 64px rgba(184,112,80,0.2), 0 4px 16px rgba(0,0,0,0.1);
}
.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.hero__img-wrap:hover img { transform: scale(1.04); }
.hero__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--champagne) 0%, var(--blush) 50%, var(--lavender) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--ink-soft);
}
.hero__img-placeholder svg { opacity: 0.4; }
.hero__img-placeholder p { font-size: 0.85rem; text-align: center; padding-inline: 1.5rem; opacity: 0.7; }

.hero__float-card {
  position: absolute;
  bottom: -1rem;
  left: -2rem;
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: var(--radius-md);
  z-index: 3;
}
.hero__float-card .icon { font-size: 1.5rem; }
.hero__float-card-text { display: flex; flex-direction: column; line-height: 1.2; }
.hero__float-card-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--accent); }
.hero__float-card-label { font-size: 0.72rem; color: var(--ink-mute); }

.hero__float-card2 {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  text-align: center;
  z-index: 3;
  min-width: 100px;
}
.hero__float-card2 .stars { color: #f5a623; font-size: 0.9rem; letter-spacing: 1px; }
.hero__float-card2 p { font-size: 0.72rem; color: var(--ink-mute); margin-top: 0.25rem; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-mute);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  border-radius: 2px;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--bg-warm);
}
.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat {
  background: var(--bg-warm);
  padding: clamp(1.25rem, 3vw, 2rem);
  text-align: center;
}
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
}
.stat__suffix { font-size: 1.5rem; }
.stat__label { font-size: 0.78rem; color: var(--ink-mute); margin-top: 0.375rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  position: relative;
  padding-block: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.services .mesh::before {
  background:
    radial-gradient(ellipse at 80% 20%, #f0d8f0 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, #f8e0c8 0%, transparent 50%);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  cursor: default;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  will-change: transform;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(184,112,80,0.18), 0 4px 12px rgba(0,0,0,0.06);
}
.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--blush), var(--champagne));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}
.service-card__tag {
  display: inline-flex;
  padding: 0.2rem 0.6rem;
  background: linear-gradient(135deg, var(--blush), var(--champagne));
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent-deep);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.service-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.625rem;
  color: var(--ink);
}
.service-card__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  transition: gap var(--transition);
}
.service-card:hover .service-card__cta { gap: 0.625rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--bg-warm);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.about__img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 20px 60px rgba(184,112,80,0.15);
}
.about__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.about__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--blush) 0%, var(--champagne) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  opacity: 0.6;
}
.about__img-badge {
  position: absolute;
  bottom: 1.5rem;
  right: -1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  text-align: center;
  min-width: 130px;
}
.about__img-badge .big { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--accent); line-height: 1; }
.about__img-badge .small { font-size: 0.7rem; color: var(--ink-soft); }

.about__content { display: flex; flex-direction: column; gap: 1.5rem; }
.about__content .t-eyebrow { margin-bottom: -0.5rem; }
.about__content .t-h2 { }
.about__text { font-size: 1rem; line-height: 1.75; color: var(--ink-soft); }
.about__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cred {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.375rem 0.875rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  color: var(--ink-soft);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cred svg { color: var(--accent); flex-shrink: 0; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding-block: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,20,16,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery__item:hover .gallery__item-overlay { opacity: 1; }
.gallery__item-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery__item:hover .gallery__item-label {
  opacity: 1;
  transform: translateY(0);
}
.gallery__item-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--bg-warm), var(--champagne));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--ink-mute);
  font-size: 0.75rem;
  padding: 1rem;
  text-align: center;
}
.gallery__item--wide .gallery__item-placeholder { aspect-ratio: 16/9; }
.gallery__cta { text-align: center; margin-top: 2rem; }

/* ============================================================
   DIFFERENTIATORS
   ============================================================ */
.differentiators {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--bg-warm);
}
.diff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.diff-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: transform 0.3s var(--ease-out);
}
.diff-card:hover { transform: translateY(-4px); }
.diff-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.diff-card__title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--ink); }
.diff-card__text { font-size: 0.875rem; line-height: 1.65; color: var(--ink-soft); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding-block: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.testi__grid {
  position: relative;
  max-width: 740px;
  margin-inline: auto;
  min-height: 240px;
}
.testi-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  pointer-events: none;
  padding: 2.5rem 3rem;
  text-align: center;
}
.testi-card.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.testi-card__stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 1.25rem;
}
.testi-card__text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.testi-card__text::before { content: "\201C"; }
.testi-card__text::after  { content: "\201D"; }
.testi-card__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.testi-card__name { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.testi-card__service { font-size: 0.72rem; color: var(--accent); letter-spacing: 0.05em; }
.testi__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.testi__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.35s ease, transform 0.35s ease;
}
.testi__dot.is-active { background: var(--accent); transform: scale(1.4); }

/* ============================================================
   VIDEO REVIEWS — CAROUSEL
   ============================================================ */
.video-reviews {
  padding-block: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.video-carousel {
  position: relative;
  padding-inline: 2.5rem;
}
.video-carousel__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}
.video-carousel__track::-webkit-scrollbar { display: none; }
.video-reviews__item {
  flex: 0 0 calc((100% - 1rem) / 2);
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: #111;
}
.video-reviews__item .yt-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease-out), opacity 0.3s ease;
}
.video-reviews__item:hover .yt-thumb { transform: scale(1.04); opacity: 0.85; }
.video-reviews__item .yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  transition: transform 0.25s ease;
  pointer-events: none;
}
.video-reviews__item:hover .yt-play { transform: translate(-50%, -50%) scale(1.15); }
.video-reviews__item iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 2;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-btn:hover { background: var(--accent); color: #fff; transform: translateY(-60%) scale(1.08); }
.carousel-btn--prev { left: 0; }
.carousel-btn--next { right: 0; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0;
}
.carousel-dot.is-active { background: var(--accent); transform: scale(1.3); }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--bg-warm);
}
.faq__list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg);
  transition: box-shadow 0.3s ease;
}
.faq-item.is-open { box-shadow: var(--glass-shadow); }
.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: none;
  cursor: pointer;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.faq-item.is-open .faq-item__trigger { color: var(--accent); }
.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-out), background 0.3s;
}
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-item__icon svg { transition: color 0.3s; }
.faq-item.is-open .faq-item__icon svg { color: #fff; }
.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-item__body-inner,
.faq-item__body p {
  padding: 1.25rem 2.25rem 2rem;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 6rem);
  text-align: center;
  background: var(--bg-deep);
  color: #fff;
}
.cta-banner .mesh::before {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(200,144,90,0.4) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 50%, rgba(216,200,240,0.2) 0%, transparent 50%);
  filter: blur(60px);
}
.cta-banner__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.cta-banner__label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  max-width: 680px;
  color: #fff;
}
.cta-banner__title em { font-style: italic; color: var(--gold); }
.cta-banner__sub { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 480px; }
.cta-banner__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding-block: clamp(4rem, 8vw, 7rem);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact__form-wrap .t-h2 { margin-bottom: 0.75rem; }
.contact__form-wrap .t-body { margin-bottom: 2rem; }
.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__field { display: flex; flex-direction: column; gap: 0.4rem; }
.form__field label { font-size: 0.78rem; font-weight: 500; color: var(--ink-soft); }
.form__field input,
.form__field select,
.form__field textarea {
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184,112,80,0.12);
}
.form__field textarea { resize: vertical; min-height: 100px; }
.form__field select { cursor: pointer; }
.form__submit { margin-top: 0.5rem; width: 100%; justify-content: center; }
.form__success {
  display: none;
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(240,196,168,0.3), rgba(216,200,240,0.3));
  border: 1px solid var(--line);
}
.form__success.is-visible { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.form__success svg { color: var(--accent); }
.form__success h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); }
.form__success p { font-size: 0.875rem; color: var(--ink-soft); }

.contact__info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact__whatsapp-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}
.contact__whatsapp-card .t-eyebrow { text-align: center; }
.contact__whatsapp-card p { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.6; }
.contact__whatsapp-card .btn { margin-top: 0.5rem; align-self: center; }
.contact__hours { padding: 1.25rem 1.5rem; }
.contact__hours-title { font-size: 0.8rem; font-weight: 600; color: var(--ink); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.contact__hours-title svg { color: var(--accent); }
.hours-row { display: flex; justify-content: space-between; padding: 0.4rem 0; font-size: 0.82rem; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 500; color: var(--ink); }

.locations__title { font-size: 0.8rem; font-weight: 600; color: var(--ink); margin-bottom: 0.875rem; display: flex; align-items: center; gap: 0.5rem; }
.locations__title svg { color: var(--accent); }
.location-card {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.location-card:last-child { border-bottom: none; }
.location-card__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 0.35rem;
}
.location-card__city { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.location-card__address { font-size: 0.78rem; color: var(--ink-mute); line-height: 1.4; }
.location-card__link {
  font-size: 0.72rem;
  color: var(--accent);
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.2s;
}
.location-card__link:hover { gap: 0.4rem; }

/* ============================================================
   SOCIAL
   ============================================================ */
.social-bar {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background: var(--bg-warm);
  text-align: center;
}
.social-bar__inner { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.social-bar__label { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); }
.social-bar__links { display: flex; align-items: center; gap: 1.25rem; }
.social-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1.25rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.social-link:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-deep);
  color: rgba(255,255,255,0.6);
  padding-block: clamp(2.5rem, 4vw, 3.5rem);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__brand { display: flex; flex-direction: column; gap: 0.25rem; }
.footer__brand-name { font-family: var(--font-display); font-size: 1.15rem; color: rgba(255,255,255,0.9); }
.footer__brand-sub { font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.footer__links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer__link { font-size: 0.8rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer__link:hover { color: rgba(255,255,255,0.9); }
.footer__copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
  animation: waPulse 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5), 0 2px 8px rgba(0,0,0,0.2);
  animation: none;
}
.wa-float__tooltip {
  position: absolute;
  right: calc(100% + 0.75rem);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: var(--ink);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-full);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.wa-float:hover .wa-float__tooltip { opacity: 1; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 10px rgba(37,211,102,0); }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-left.is-visible,
.reveal-right.is-visible { opacity: 1; transform: none; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-scale.is-visible { opacity: 1; transform: none; }

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .diff__grid { grid-template-columns: repeat(2, 1fr); }
  .testi__grid { grid-template-columns: repeat(2, 1fr); }
  .testi__grid .testi-card:last-child { display: none; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; }
  .about__img-wrap { max-width: 480px; aspect-ratio: 4/3; margin-inline: auto; }
  .contact__inner { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  :root { --nav-h: 64px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .hero__img-wrap { max-width: 100%; aspect-ratio: 4/3; }
  .hero__float-card { left: 0.5rem; bottom: -0.5rem; }
  .hero__float-card2 { right: 0.5rem; top: 0.5rem; }
  .services__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
  .diff__grid { grid-template-columns: 1fr; }
  .testi__grid { grid-template-columns: 1fr; }
  .video-reviews__item { flex: 0 0 calc(100% - 2rem); }
  .testi__grid .testi-card:last-child { display: flex; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .form__row { grid-template-columns: 1fr; }
  .social-bar__links { flex-direction: column; gap: 0.625rem; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer__links { gap: 1rem; }
  .wa-float { bottom: 1.25rem; right: 1.25rem; }
}

@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; }
  .video-carousel { padding-inline: 2rem; }
  .hero__badges .badge:nth-child(n+3) { display: none; }
}

/* ---- Hover: touch devices ---- */
@media (hover: none) {
  .service-card:hover { transform: none; }
  .diff-card:hover { transform: none; }
  .hero__img-wrap:hover img { transform: none; }
}

/* ---- Reduced motion: only gate intrusive effects ---- */
@media (prefers-reduced-motion: reduce) {
  .mesh::before { animation: none; }
  .hero__scroll { animation: none; }
  .wa-float { animation: none; }
}

/* ============================================================
   LIGHTBOX (galería de imágenes clicables + CTA de WhatsApp)
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20,12,8,0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.lightbox__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: min(92vw, 720px);
  max-height: 90vh;
}
.lightbox__img {
  max-width: 100%;
  max-height: 62vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  object-fit: contain;
  background: #000;
}
.lightbox__close {
  position: absolute;
  top: -3.25rem;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }
.lightbox__cta { width: 100%; justify-content: center; text-align: center; }
.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.lightbox__nav:hover { background: rgba(255,255,255,0.22); }
.lightbox__nav:active { transform: translateY(-50%) scale(0.94); }
.lightbox__nav--prev { left: clamp(0.5rem, 4vw, 2.5rem); }
.lightbox__nav--next { right: clamp(0.5rem, 4vw, 2.5rem); }
.lightbox__dots { display: flex; gap: 0.5rem; justify-content: center; }
.lightbox__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3); border: none; padding: 0; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.lightbox__dot.is-active { background: #fff; transform: scale(1.3); }
@media (max-width: 600px) {
  .lightbox { padding-top: 3.5rem; }
  .lightbox__close { top: -2.75rem; width: 36px; height: 36px; }
  .lightbox__nav { width: 38px; height: 38px; }
  .lightbox__nav--prev { left: 0.4rem; }
  .lightbox__nav--next { right: 0.4rem; }
}
