/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #F7F1E4;
  --bg-2:      #ECE0C6;
  --paper:     #FFFFFF;
  --ink:       #211B13;
  --ink-soft:  #3A2F22;
  --ink-mute:  #665B4C;  /* 5.07 sobre arena, el fondo claro mas exigente */
  --cream:     #FBF7EE;
  --accent:    #D97F4B;
  --accent-ink:#7A3B1B;
  --peach:     #F4C7A0;

  /* Tomados del logo. --plum es el morado del medallón; el resto son
     derivados verificados por contraste (--plum no llega a 4.5 sobre crema,
     por eso el texto usa --plum-ink). */
  --plum:      #84609C;
  --plum-ink:  #5A4270;
  --plum-soft: #EDE7F2;
  --plum-lite: #C9B8D4;  /* texto secundario sobre --ink-plum (6.87) */
  --ink-plum:  #3B2B4F;  /* superficies oscuras: contacto, footer, menu movil */

  --line:      rgba(33,27,19,0.12);

  --serif: "Fraunces", ui-serif, Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1180px;
  --radius: 20px;
  --radius-sm: 12px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.02em; font-family: var(--serif); font-weight: 600; }
input, textarea { font: inherit; color: inherit; }
::selection { background: var(--plum); color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--plum);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--ink-plum); color: var(--cream);
  z-index: 9999; border-radius: 8px; font-weight: 500;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.kicker {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 0.9rem;
}
.kicker.center { text-align: center; }

.section-title { font-size: clamp(1.9rem, 4.2vw, 3rem); margin-bottom: 1.1rem; }
.section-title em { font-style: italic; color: var(--accent-ink); }
.section-title.center { text-align: center; max-width: 26ch; margin-inline: auto; margin-bottom: 2.6rem; }

/* =============================================================
   4. Reveal / scroll-progress / cursor
   ============================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(36px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: 300; background: rgba(33,27,19,0.06); pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--plum));
  transform-origin: 0 0; transform: scaleX(0); transition: transform .08s linear;
}

.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  display: none;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity .25s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; will-change: transform; }
.cursor-dot { width: 6px; height: 6px; margin: -3px; background: var(--cream); border-radius: 50%; }
.cursor-ring {
  width: 34px; height: 34px; margin: -17px; border: 1px solid var(--cream); border-radius: 50%;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), margin .35s var(--ease-out);
}
.cursor.is-interactive .cursor-ring { width: 52px; height: 52px; margin: -26px; }
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }

/* =============================================================
   5. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  box-shadow: 0 4px 14px rgba(33,27,19,0.08), 0 1px 3px rgba(33,27,19,0.06);
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background-color .3s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-4px); box-shadow: 0 22px 46px rgba(33,27,19,0.16), 0 10px 22px rgba(217,127,75,0.22); }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }

.btn-primary { background: var(--accent); color: var(--cream); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); box-shadow: none; }
.btn-ghost:hover { border-color: var(--plum); box-shadow: 0 14px 30px rgba(59,43,79,0.14); }
.btn-sm { padding: 0.65rem 1.25rem; font-size: 0.86rem; }

/* =============================================================
   6. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 200;
  transition: background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), box-shadow .4s var(--ease-out), padding .3s;
  padding-block: 1.3rem;
}
.nav.is-scrolled {
  background: rgba(247,241,228,0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(33,27,19,0.08);
  padding-block: 0.8rem;
}
/* Sin scroll el nav flota sobre la foto del hero: en tinta oscura se perdia.
   Texto crema + un velo propio, porque el degradado del hero se aclara justo
   en la derecha, que es donde caen los enlaces. */
.nav:not(.is-scrolled) { color: var(--cream); }
.nav:not(.is-scrolled) .nav-logo,
.nav:not(.is-scrolled) .nav-link { color: var(--cream); }
.nav:not(.is-scrolled) .nav-burger span { background: var(--cream); }
.nav:not(.is-scrolled)::before {
  content: ""; position: absolute; inset: -1px 0 -40% 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(42,33,53,0.62) 0%, rgba(42,33,53,0.34) 55%, transparent 100%);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.nav-logo { font-family: var(--serif); font-weight: 600; font-size: 1.3rem; letter-spacing: -0.01em; display: inline-flex; align-items: center; gap: 0.35rem; }
.nav-logo-mark { width: 2.1em; height: 2.1em; border-radius: 50%; flex-shrink: 0; transition: transform .4s var(--ease-bounce); }
.nav-logo:hover .nav-logo-mark { transform: rotate(-8deg) scale(1.08); }

.nav-links { display: none; gap: 1.9rem; align-items: center; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link { position: relative; padding: 0.25rem 0; font-size: 0.94rem; font-weight: 500; }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-soft);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { display: none; }
@media (min-width: 720px) { .nav-cta { display: inline-flex; } }

.nav-burger {
  display: grid; place-items: center; gap: 5px;
  width: 42px; height: 42px; border-radius: 50%;
}
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--ink); transition: transform .35s var(--ease-out), opacity .3s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 190;
  background: var(--ink-plum); color: var(--cream);
  display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .65s var(--ease-soft);
}
.nav-mobile[aria-hidden="false"] { clip-path: inset(0); }
.nav-mobile nav { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; }
.nav-mobile-link { font-family: var(--serif); font-size: 1.7rem; font-style: italic; }
.nav-mobile-cta { margin-top: 1rem; }

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 7rem; padding-bottom: 4rem;
  overflow: clip;
  /* .hero-bg es z-index:-2. Sin contexto propio, un fondo en .hero lo taparia
     (los z negativos caen por detras del fondo del ancestro que los contiene).
     Con isolate el orden queda: fondo del hero -> foto -> texto. */
  isolation: isolate;
}
/* overflow:hidden porque ambientZoom escala la img hasta 1.14 y se salia de la
   banda, asomando foto sin velo por debajo del fundido. */
.hero-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg img.ambient-on { animation: ambientZoom 30s ease-in-out infinite; }
@keyframes ambientZoom {
  0%, 100% { transform: scale(1.05) translate3d(0,0,0); }
  50%      { transform: scale(1.14) translate3d(-1%,-1%,0); }
}
.hero-bg-tint {
  /* z-index 1, no -1: dentro de .hero-bg un z negativo lo pintaba DEBAJO de la
     foto y el velo no se veia. .hero-bg (z:-2) ya lo mantiene tras el texto.
     Alphas medidas contra el percentil 95 de luminancia de hero.webp bajo cada
     bloque de texto: por debajo de 0.67 arriba, el subtitulo cae a 2.67:1. */
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(59,43,79,0.24) 0%, rgba(59,43,79,0.18) 55%, rgba(59,43,79,0.55) 100%),
    linear-gradient(90deg,  rgba(59,43,79,0.76) 0%, rgba(59,43,79,0.66) 55%, rgba(59,43,79,0.02) 100%);
}
/* Bajo 1180px el mismo reparto, pero en horizontal: la foto ocupa la banda de
   arriba y el texto va debajo sobre morado solido. Mismo criterio que en
   escritorio — el texto nunca se apoya en la foto. */
@media (max-width: 1179px) {
  .hero {
    background: var(--ink-plum);
    align-items: flex-start;
    padding-top: calc(var(--hero-foto) + 2.25rem);
    padding-bottom: 3rem;
    min-height: auto;
  }
  .hero-bg { inset: 0 0 auto 0; height: var(--hero-foto); }
  .hero-bg img { object-position: center 42%; }
  /* El indicador de scroll asumia hero de 100svh; con min-height:auto caia
     encima de los botones. Selector de 2 clases porque la regla que lo muestra
     (`@media(min-width:720px)`) viene despues en la hoja. */
  .hero .hero-scroll { display: none; }
  /* Aqui el velo del hero arranca suave (0.55) para no ensuciar la foto, asi que
     el nav necesita el suyo mas fuerte: el logo cae sobre el claro quemado del
     bosque (pixel 254,252,234) y en crema se perdia. */
  .nav:not(.is-scrolled)::before {
    inset: -1px 0 -70% 0;
    background: linear-gradient(180deg,
      rgba(42,33,53,0.86)  0%,
      rgba(42,33,53,0.62) 50%,
      rgba(42,33,53,0.22) 80%,
      transparent        100%);
  }
  /* Solo oscurece el arranque (para el nav) y funde el pie hacia el morado,
     asi no se ve el corte entre foto y fondo. */
  .hero-bg-tint {
    background: linear-gradient(180deg,
      rgba(59,43,79,0.55)   0%,
      rgba(59,43,79,0.14)  26%,
      rgba(59,43,79,0.22)  50%,
      rgba(59,43,79,0.48)  70%,
      rgba(59,43,79,0.82)  87%,
      var(--ink-plum)     100%);
  }
}
:root { --hero-foto: 44svh; }
@media (max-width: 560px)  { :root { --hero-foto: 34svh; } }
@media (min-width: 720px) and (max-width: 1179px) { :root { --hero-foto: 50svh; } }
/* Desde 1180px el hero se parte: texto sobre morado solido, foto a la derecha
   casi sin velo. Asi el texto no pelea con la foto, el perro se ve limpio y la
   imagen (solo 1024px de ancho) deja de estirarse a pantalla completa. */
@media (min-width: 1180px) {
  .hero { background: var(--ink-plum); }
  .hero-bg { inset: 0 0 0 57%; }
  .hero-bg img { object-position: 58% center; }
  .hero-bg-tint {
    background: linear-gradient(90deg,
      var(--ink-plum)        0%,
      rgba(59,43,79,0.78)   10%,
      rgba(59,43,79,0.22)   30%,
      rgba(59,43,79,0.10)  100%);
  }
  /* El bloque sigue siendo el contenedor de la pagina (asi el texto arranca en
     el mismo margen que el resto del sitio), pero cada hijo se limita a 520px
     para acabar antes del 52% donde empieza la foto. Selector de 2 clases
     porque `.hero-inner{max-width:760px}` viene despues en la hoja. */
  /* width:100% porque .hero es flex y el bloque se encogeria a su contenido,
     quedando centrado en la pantalla en vez de alineado al margen del sitio. */
  .hero .hero-inner { width: 100%; max-width: var(--container); }
  .hero .hero-inner > * { max-width: 580px; }
}
.hero-inner { max-width: 760px; }
.hero .kicker { color: var(--cream); opacity: 0.92; }
.hero-title { font-size: clamp(2.5rem, 6.4vw, 4.6rem); color: var(--cream); margin-bottom: 1.4rem; }
.hero-title em { font-style: italic; color: var(--peach); }
.hero-sub { color: rgba(251,247,238,0.86); font-size: 1.12rem; max-width: 52ch; margin-bottom: 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-actions .btn-ghost { color: var(--cream); border-color: rgba(251,247,238,0.4); }
.hero-actions .btn-ghost:hover { border-color: var(--cream); }

.hero-stats { display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-stat-num { font-family: var(--serif); font-size: 1.9rem; color: var(--cream); font-weight: 600; }
.hero-stat-label { font-size: 0.82rem; color: rgba(251,247,238,0.75); max-width: 20ch; }
.hero-stat-divider { width: 1px; height: 38px; background: rgba(251,247,238,0.3); }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(251,247,238,0.55); border-radius: 999px;
  display: none;
}
@media (min-width: 720px) { .hero-scroll { display: block; } }
.hero-scroll span {
  position: absolute; top: 8px; left: 50%; width: 4px; height: 4px; margin-left: -2px;
  background: var(--cream); border-radius: 50%;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* =============================================================
   8. About / manifesto
   ============================================================= */
.about { padding-block: 6rem; }
.about-grid { display: grid; gap: 2.5rem; }
.about-num {
  font-family: var(--serif); font-style: italic; font-size: 1.1rem;
  color: var(--ink-mute); grid-row: 1;
}
.about-p { margin-bottom: 1.1rem; color: var(--ink-soft); max-width: 56ch; }
.trust-list { margin-top: 1.6rem; display: grid; gap: 0.75rem; }
.trust-list li { display: flex; align-items: center; gap: 0.7rem; font-weight: 500; font-size: 0.96rem; }
.about-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.about-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-soft); }
.about-img:hover img { transform: scale(1.06); }

@media (min-width: 960px) {
  .about-grid { grid-template-columns: 60px 1fr 1fr; align-items: start; }
  .about-img { grid-column: 3; grid-row: 1 / span 2; }
  .about-text { grid-column: 2; }
}

/* =============================================================
   9. Services (bento)
   ============================================================= */
.services { padding-block: 6rem; background: var(--bg-2); }
.bento { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }

.card {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  --rx: 0deg; --ry: 0deg;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft), box-shadow .55s var(--ease-soft);
}
.card:hover { transition-duration: .15s; box-shadow: 0 40px 80px -24px rgba(59,43,79,0.34), 0 0 0 1px rgba(132,96,156,0.35); }
.card-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-soft), filter .55s; }
.card:hover .card-img { transform: scale(1.1); filter: saturate(1.15) brightness(1.03); }
.card-body { padding: 1.4rem 1.5rem 1.6rem; transform: translateZ(30px); }
.card-body h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.card-body p { color: var(--ink-mute); font-size: 0.94rem; }

@media (min-width: 640px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) {
  .bento { grid-template-columns: repeat(12, 1fr); grid-template-rows: repeat(3, 300px); }
  .bento-1 { grid-column: 1 / 8; grid-row: 1 / 3; }
  .bento-2 { grid-column: 8 / 13; grid-row: 1 / 2; }
  .bento-3 { grid-column: 8 / 13; grid-row: 2 / 3; }
  .bento-4 { grid-column: 1 / 8; grid-row: 3 / 4; }
  .bento-5 { grid-column: 8 / 13; grid-row: 3 / 4; }
  .bento-1 .card-img-wrap, .bento-4 .card-img-wrap { aspect-ratio: auto; height: 55%; }
  .bento-2 .card-img-wrap, .bento-3 .card-img-wrap, .bento-5 .card-img-wrap { aspect-ratio: auto; height: 58%; }
  .card { height: 100%; }
  .card-img-wrap { flex: none; }
  .card-body { flex: 1; display: flex; flex-direction: column; justify-content: center; }
}

/* =============================================================
   10. Marquee
   ============================================================= */
.marquee { overflow: hidden; position: relative; background: var(--plum); padding-block: 1.4rem; }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, var(--plum), transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--plum), transparent); }
.marquee-track { display: inline-flex; gap: 2.2rem; white-space: nowrap; will-change: transform; }
.marquee-track span {
  font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--cream); opacity: 0.9;
}

/* =============================================================
   11. Gallery
   ============================================================= */
.gallery { padding-block: 6rem; background: var(--plum-soft); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem;
}
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1;
  isolation: isolate;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-soft), filter .55s; }
.gallery-item:hover img { transform: scale(1.14); filter: saturate(1.15) brightness(1.04); }
.gallery-item::after {
  content: "🔍"; position: absolute; inset: auto 0.8rem 0.8rem auto;
  width: 34px; height: 34px; display: grid; place-items: center;
  background: rgba(251,247,238,0.9); border-radius: 50%; font-size: 0.9rem;
  opacity: 0; transform: translateY(8px); transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.gallery-item:hover::after { opacity: 1; transform: none; }
.g-1 { grid-column: span 1; grid-row: span 2; }
@media (min-width: 720px) { .g-1 { grid-column: span 1; grid-row: span 2; } }

.gallery-note { text-align: center; margin-top: 2.2rem; color: var(--ink-mute); }
.gallery-note a { color: var(--plum-ink); font-weight: 600; }
.gallery-note a:hover { text-decoration: underline; }

/* =============================================================
   12. Process
   ============================================================= */
.process { padding-block: 6rem; background: var(--bg-2); }
.process-grid { display: grid; gap: 2.5rem; }
.process-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; }
.process-img img { width: 100%; height: 100%; object-fit: cover; }

.steps { display: grid; gap: 1.8rem; margin-top: 1rem; }
.step { display: flex; gap: 1.2rem; align-items: flex-start; }
.step-n { font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--plum-ink); flex-shrink: 0; }
.step h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.step p { color: var(--ink-mute); font-size: 0.95rem; }

@media (min-width: 960px) {
  .process-grid { grid-template-columns: 1fr 1.15fr; align-items: center; }
}

/* =============================================================
   13. FAQ / accordion
   ============================================================= */
.faq { padding-block: 6rem; background: var(--plum-soft); }
.faq-grid { display: grid; gap: 2.5rem; }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-block: 1.3rem; text-align: left; font-weight: 600; font-size: 1.02rem;
}
.accordion-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.accordion-icon::before, .accordion-icon::after {
  content: ""; position: absolute; background: var(--accent); transition: transform .35s var(--ease-out);
}
.accordion-icon::before { top: 50%; left: 0; width: 100%; height: 2px; margin-top: -1px; }
.accordion-icon::after { left: 50%; top: 0; height: 100%; width: 2px; margin-left: -1px; }
.accordion-trigger[aria-expanded="true"] .accordion-icon::after { transform: rotate(90deg); opacity: 0; }
.accordion-trigger[aria-expanded="true"] { color: var(--plum-ink); }
.accordion-trigger[aria-expanded="true"] .accordion-icon::before { background: var(--plum); }
.accordion-panel {
  display: grid; grid-template-rows: 0fr; opacity: 0;
  transition: grid-template-rows .5s var(--ease-soft), opacity .4s var(--ease-out);
}
.accordion-trigger[aria-expanded="true"] + .accordion-panel { grid-template-rows: 1fr; opacity: 1; }
.accordion-panel > p { overflow: hidden; padding-bottom: 1.3rem; color: var(--ink-mute); max-width: 60ch; }

@media (min-width: 960px) { .faq-grid { grid-template-columns: 0.8fr 1.2fr; } .faq-intro { position: sticky; top: 8rem; align-self: start; } }

/* =============================================================
   14. Contact
   ============================================================= */
.contact { padding-block: 6rem; background: var(--ink-plum); color: var(--cream); }
.contact .kicker { color: var(--peach); }
.contact .section-title { color: var(--cream); }
.contact .section-title em { color: var(--peach); }
.contact .about-p { color: rgba(251,247,238,0.8); }
.contact-grid { display: grid; gap: 3rem; }
.contact-list { margin-top: 2rem; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; flex-direction: column; gap: 0.15rem; }
.contact-label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--plum-lite); }
.contact-list a { font-size: 1.05rem; font-weight: 600; }
.contact-list a:hover { color: var(--peach); }

.contact-form-wrap { position: relative; }
.cta-form { display: grid; gap: 1.1rem; transition: opacity .55s var(--ease-out), transform .55s var(--ease-soft); }
.cta-form.is-sent { opacity: 0; transform: translateY(-12px); pointer-events: none; }

.field { position: relative; }
.field input, .field textarea {
  width: 100%; padding: 1.3rem 1rem 0.55rem; border: 1px solid rgba(251,247,238,0.25);
  border-radius: var(--radius-sm); background: rgba(251,247,238,0.04); color: var(--cream);
  transition: border-color .3s;
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus, .field textarea:focus { border-color: var(--accent); outline: none; }
.field label {
  position: absolute; left: 1rem; top: 1.05rem;
  pointer-events: none; transition: all .25s var(--ease-out);
  color: rgba(251,247,238,0.55);
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: 0.45rem; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
}

.cta-submit { position: relative; justify-self: start; }
.cta-form-spinner, .cta-form-check {
  position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; pointer-events: none;
}
.cta-form.is-sending .cta-form-label { opacity: 0; }
.cta-form.is-sending .cta-form-spinner { opacity: 1; }
.cta-form-spinner::after {
  content: ""; width: 18px; height: 18px;
  border: 1.5px solid rgba(251,247,238,0.35); border-top-color: var(--cream);
  border-radius: 50%; animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cta-form-check path { stroke: currentColor; stroke-width: 2; fill: none; stroke-dasharray: 1; stroke-dashoffset: 1; }

.cta-success {
  position: absolute; left: 0; top: 0; right: 0;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .8s var(--ease-out) .1s, transform .9s var(--ease-soft) .1s;
}
.cta-success.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.cta-success h3 { font-size: 1.6rem; margin-bottom: 0.6rem; color: var(--cream); }
.cta-success p { color: rgba(251,247,238,0.8); margin-bottom: 0.4rem; }
.cta-success-note { font-size: 0.85rem; opacity: 0.7; }

@media (min-width: 960px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; } }

/* =============================================================
   15. Footer
   ============================================================= */
.footer { padding-block: 3.5rem 2rem; background: var(--ink-plum); color: var(--cream); border-top: 1px solid rgba(251,247,238,0.1); }
.footer-grid { display: grid; gap: 2rem; align-items: start; }
.footer-tag { color: var(--plum-lite); margin-top: 0.6rem; font-size: 0.92rem; }
.footer-links, .footer-social { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-links a, .footer-social a { font-size: 0.92rem; color: rgba(251,247,238,0.75); }
.footer-links a:hover, .footer-social a:hover { color: var(--peach); }
.footer-bottom { margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(251,247,238,0.08); font-size: 0.8rem; color: rgba(251,247,238,0.6); }

@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

/* =============================================================
   16. WhatsApp float
   ============================================================= */
.whatsapp-float {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 150;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37,211,102,0.4);
  transition: transform .45s var(--ease-bounce), box-shadow .45s var(--ease-soft);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: var(--cream); }
.whatsapp-float:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 18px 40px rgba(37,211,102,0.5); }

/* =============================================================
   17. Lightbox
   ============================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(20,15,10,0.94);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease-out);
}
.lightbox[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
.lightbox-img { max-width: min(92vw, 1100px); max-height: 84vh; border-radius: 10px; object-fit: contain; }
.lightbox-close, .lightbox-nav {
  position: fixed; color: var(--cream); font-size: 1.6rem;
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(251,247,238,0.08); transition: background .3s, transform .3s;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(251,247,238,0.18); }
.lightbox-close { top: 1.4rem; right: 1.4rem; }
.lightbox-prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.08); }

/* =============================================================
   18. Responsive helpers (large screens)
   ============================================================= */
@media (min-width: 1280px) {
  .container { padding-inline: 2rem; }
}

/* =============================================================
   19. Reduced motion — ONLY intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-bg img.ambient-on { animation: none; }
  .hero-scroll span { animation: none; }
  .marquee-track { animation-duration: 0s !important; }
}
