/* ═══════════════════════════════════════════════════════════════
   BRUNA.studio — Stylesheet
   Híbrido: Apple (espacio, tipografía editorial, microinteracción)
            + SpaceX (fullscreen, alto contraste, scroll cinemático)
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Paleta de marca */
  --crema:    #F4ECD8;
  --marfil:   #EFE5D0;
  --hueso:    #E8DCC4;
  --arena:    #D9C9A8;
  --camel:    #C3AC85;
  --taupe:    #8B7355;
  --espresso: #2A1E14;
  --espresso-soft: #3A2A1E;
  --burdeos:  #8B2E2A;
  --terracota:#E8B4A4;

  /* Roles */
  --bg:       var(--crema);
  --bg-alt:   var(--marfil);
  --bg-dark:  var(--espresso);
  --ink:      var(--espresso);
  --ink-soft: rgba(42, 30, 20, 0.65);
  --accent:   var(--burdeos);
  --line:     rgba(42, 30, 20, 0.14);
  --line-dark:rgba(244, 236, 216, 0.14);

  /* Tipografías */
  --font-display: 'Archivo Black', 'Helvetica Neue', sans-serif;
  --font-hand:    'Homemade Apple', cursive;
  --font-serif:   'Fraunces', 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Escala tipográfica fluida */
  --fs-xs:  clamp(0.75rem, 0.72rem + 0.15vw, 0.85rem);
  --fs-sm:  clamp(0.875rem, 0.82rem + 0.25vw, 1rem);
  --fs-md:  clamp(1rem, 0.92rem + 0.4vw, 1.18rem);
  --fs-lg:  clamp(1.4rem, 1.1rem + 1.2vw, 2rem);
  --fs-xl:  clamp(2rem, 1.4rem + 3vw, 3.5rem);
  --fs-xxl: clamp(3rem, 2rem + 6vw, 7rem);
  --fs-hero:clamp(4.5rem, 3rem + 12vw, 14rem);

  /* Layout */
  --max:  1440px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* Texto solo para lectores de pantalla y SEO */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ═════════ NAV ═════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  background: transparent;
  transition: background 0.45s var(--ease), padding 0.45s var(--ease), border-color 0.45s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(244, 236, 216, 0.88);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  padding: 12px var(--gutter);
  border-bottom-color: var(--line);
}
.nav__brand {
  display: inline-flex; align-items: center;
  text-decoration: none;
  height: 28px;
  transition: transform 0.3s var(--ease);
}
.nav__brand:hover { transform: translateY(-1px); }
.nav__brand-img {
  height: 100%; width: auto; display: block;
}
@media (max-width: 560px) {
  .nav__brand { height: 24px; }
}
/* Mantenemos las clases por si se usan en otros sitios */
.brand-bruna { font-family: var(--font-display); letter-spacing: -0.04em; }
.brand-studio {
  font-family: var(--font-hand); color: var(--accent);
  font-size: 0.7em; display: inline-block;
  margin-left: -0.18em;
  transform: translateY(0.18em) rotate(-2deg);
}
.nav__links {
  display: flex; align-items: center; gap: 36px;
}
.nav__links a {
  text-decoration: none; color: var(--ink); font-size: var(--fs-sm);
  letter-spacing: 0.02em; position: relative; padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__links a:hover { color: var(--accent); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  border: 1px solid var(--ink); border-radius: 999px;
  padding: 8px 18px !important;
}
.nav__cta::after { display: none; }
.nav__cta:hover {
  background: var(--ink); color: var(--bg) !important;
}
.nav__burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 32px; height: 32px; padding: 6px;
}
.nav__burger span {
  display: block; height: 2px; background: var(--ink);
  margin: 4px 0; transition: transform 0.35s var(--ease), opacity 0.2s;
}
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav__burger { display: block; }
  .nav__links {
    position: fixed;
    top: 64px; right: 0; bottom: 0; left: 0;
    width: 100%; height: calc(100vh - 64px); height: calc(100svh - 64px);
    flex-direction: column; gap: 28px; justify-content: center; align-items: center;
    background: var(--bg-dark);
    transform: translateY(-110vh);
    transition: transform 0.5s var(--ease);
    z-index: 49;
    visibility: hidden;
  }
  .nav.is-open .nav__links {
    transform: translateY(0);
    visibility: visible;
  }
  .nav__links a { font-size: var(--fs-lg); color: var(--bg) !important; }
  .nav__links a::after { background: var(--accent); }
  .nav__cta {
    border-color: var(--bg) !important;
    color: var(--bg) !important;
  }
}

/* ═════════ HERO ═════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px var(--gutter) 80px;
  background:
    radial-gradient(ellipse at 50% 30%, var(--marfil) 0%, var(--crema) 55%, var(--hueso) 100%);
  overflow: hidden;
}
.hero::before {
  /* Textura sutil tipo papel */
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(139, 46, 42, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(195, 172, 133, 0.20) 0%, transparent 50%);
}
.hero__inner {
  position: relative; z-index: 2;
  text-align: center; max-width: 1200px;
}
.hero__eyebrow {
  font-size: var(--fs-xs); letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 32px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-hero); line-height: 0.88;
  letter-spacing: -0.05em; color: var(--ink);
  position: relative; display: inline-block;
  margin-bottom: 36px;
}
.hero__title-img {
  display: block; width: 100%;
  max-width: min(720px, 78vw);
  height: auto;
  margin: 0 auto;
}
.hero__bruna { display: block; }
.hero__studio {
  font-family: var(--font-hand);
  color: var(--accent);
  font-size: 0.22em; letter-spacing: 0;
  position: absolute;
  right: -2%; bottom: 0.5%;
  transform: rotate(-4deg);
}
@media (max-width: 560px) {
  .hero__title { display: inline-block; }
  .hero__studio {
    position: static;
    display: inline-block;
    font-size: 0.32em;
    margin-left: 2px;
    transform: rotate(-3deg) translateY(-0.15em);
  }
}
.hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 0.9rem + 1.2vw, 1.85rem);
  font-weight: 300;
  color: var(--ink); line-height: 1.35;
  margin: 0 auto 48px; max-width: 32ch;
}
.hero__tagline em {
  font-style: italic; color: var(--accent);
  font-family: var(--font-serif);
}
.hero__cta-row {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  font-size: var(--fs-xs); letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-soft); text-align: center;
}
@media (max-width: 820px) {
  /* Aumentamos la altura del hero para que el SCROLL no pise las CTAs */
  .hero { padding-bottom: 90px; min-height: 92svh; min-height: 92vh; }
  .hero__scroll { bottom: 24px; }
  .hero__scroll-line { height: 32px; margin-top: 8px; }
}
.hero__scroll-line {
  width: 1px; height: 40px; margin: 12px auto 0;
  background: linear-gradient(to bottom, var(--ink) 0%, transparent 100%);
  animation: scrollPulse 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

/* ═════════ BOTONES ═════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 999px;
  font-family: var(--font-body); font-size: var(--fs-sm); font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
}
.btn--primary {
  background: var(--ink); color: var(--bg);
}
.btn--primary:hover { background: var(--accent); transform: translateY(-2px); }
.btn--ghost {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }
.btn--link {
  background: transparent; color: inherit;
  padding: 14px 0;
  border-radius: 0;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  letter-spacing: 0.02em;
}
.btn--link:hover { color: var(--accent); transform: translateY(-1px); }

.btn--with-icon {
  gap: 12px;
  padding: 16px 28px;
}
.btn__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  transition: transform 0.4s var(--ease);
}
.btn--with-icon:hover .btn__icon { transform: scale(1.12) rotate(-4deg); }

/* ═════════ MARQUEE ═════════ */
.manifesto-strip {
  background: var(--ink); color: var(--bg);
  padding: 22px 0; overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.marquee { display: flex; overflow: hidden; }
.marquee__track {
  display: flex; gap: 36px; flex-shrink: 0;
  animation: marquee 28s linear infinite;
  font-family: var(--font-serif); font-style: italic;
  font-size: var(--fs-lg); white-space: nowrap;
  padding-right: 36px;
}
.marquee__track span:nth-child(even) { color: var(--accent); font-family: var(--font-display); font-style: normal; font-size: 0.9em; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═════════ SECTION HEAD ═════════ */
.section-head {
  max-width: 980px; margin: 0 auto;
  padding: clamp(80px, 12vw, 160px) var(--gutter) clamp(48px, 6vw, 80px);
  text-align: center;
}
.section-head--dark { color: var(--bg); }
.section-eyebrow {
  font-size: var(--fs-xs); letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 24px;
}
.section-head--dark .section-eyebrow { color: rgba(244, 236, 216, 0.5); }
.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-xxl); line-height: 0.95; letter-spacing: -0.04em;
  color: inherit; margin-bottom: 24px;
}
.section-title em {
  font-family: var(--font-serif); font-style: italic;
  font-weight: 300; color: var(--accent); letter-spacing: -0.02em;
}
.section-lead {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.35rem);
  line-height: 1.5; color: inherit; opacity: 0.78;
  max-width: 52ch; margin: 0 auto;
}

/* ═════════ PORTFOLIO ═════════ */
.portfolio { background: var(--bg); padding-bottom: clamp(80px, 10vw, 140px); }

.feature {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  padding: 0 var(--gutter);
  max-width: var(--max); margin: 0 auto clamp(80px, 10vw, 140px);
  align-items: center;
}
.feature__image {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px -30px rgba(42, 30, 20, 0.4);
}
.feature__image img {
  width: 100%; height: auto;
  transition: transform 1.2s var(--ease);
}
.feature:hover .feature__image img { transform: scale(1.03); }
.feature__tag {
  font-size: var(--fs-xs); letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.feature__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl); line-height: 1; letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.feature__text {
  font-family: var(--font-serif); font-weight: 300;
  font-size: 1.1rem; line-height: 1.55; color: var(--ink);
  margin-bottom: 32px;
}
.feature__zoom {
  background: transparent; border: 1px solid var(--ink); color: var(--ink);
  padding: 12px 24px; border-radius: 999px; cursor: pointer;
  font-family: var(--font-body); font-size: var(--fs-sm);
  letter-spacing: 0.02em;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.feature__zoom:hover { background: var(--ink); color: var(--bg); }

@media (max-width: 820px) {
  .feature { grid-template-columns: 1fr; }
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(12px, 1.5vw, 24px);
  padding: 0 var(--gutter);
  max-width: var(--max); margin: 0 auto;
}
.grid__item {
  position: relative; overflow: hidden; cursor: zoom-in;
  background: #fff;
  border-radius: var(--radius);
  grid-column: span 2;
  aspect-ratio: 4 / 5;
  /* Marco polaroid: borde blanco, sombra suave */
  padding: 8px 8px 12px;
  box-shadow:
    0 2px 6px rgba(42,30,20,0.08),
    0 18px 40px -20px rgba(42,30,20,0.25);
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s var(--ease);
  will-change: transform;
}
.grid__item img {
  /* La imagen ocupa el "interior" del marco polaroid */
  position: relative; z-index: 1;
}
.grid__item:hover {
  transform: translateY(-8px) rotate(-1.2deg) scale(1.02);
  box-shadow:
    0 8px 20px rgba(42,30,20,0.14),
    0 40px 80px -28px rgba(42,30,20,0.5);
}
.grid__item:nth-child(2n):hover { transform: translateY(-8px) rotate(1.4deg) scale(1.02); }
.grid__item:nth-child(3n):hover { transform: translateY(-10px) rotate(-0.8deg) scale(1.03); }
.grid__item.is-touched {
  transform: translateY(-6px) rotate(-1deg) scale(1.015);
  box-shadow:
    0 8px 20px rgba(42,30,20,0.14),
    0 40px 80px -28px rgba(42,30,20,0.5);
}
.grid__item--wide { grid-column: span 4; aspect-ratio: 16 / 10; }
.grid__item--tall { grid-column: span 2; aspect-ratio: 3 / 4; }

.grid__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.grid__item:hover img { transform: scale(1.05); }
.grid__item figcaption {
  position: absolute; left: 8px; right: 8px; bottom: 12px;
  padding: 18px 18px;
  background: linear-gradient(to top, rgba(42,30,20,0.85) 0%, rgba(42,30,20,0) 100%);
  color: var(--bg);
  transform: translateY(20%); opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
  z-index: 2;
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}
.grid__item:hover figcaption,
.grid__item.is-touched figcaption {
  transform: translateY(0); opacity: 1;
}
.grid__item:hover figcaption { transform: translateY(0); opacity: 1; }
.grid__item figcaption span {
  display: block; font-size: var(--fs-xs);
  letter-spacing: 0.28em; text-transform: uppercase;
  opacity: 0.7; margin-bottom: 4px;
}
.grid__item figcaption em {
  font-family: var(--font-hand); font-style: normal;
  font-size: 1.25rem; color: var(--terracota);
}

@media (max-width: 980px) {
  .grid { grid-template-columns: repeat(4, 1fr); }
  .grid__item { grid-column: span 2; }
  .grid__item--wide { grid-column: span 4; }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .grid__item, .grid__item--wide, .grid__item--tall { grid-column: span 2; aspect-ratio: 4/5; }
}

/* En táctil no hay hover: caption siempre visible */
@media (hover: none), (max-width: 820px) {
  .grid__item figcaption {
    transform: translateY(0);
    opacity: 1;
    background: linear-gradient(to top, rgba(42,30,20,0.92) 0%, rgba(42,30,20,0.55) 55%, rgba(42,30,20,0) 100%);
    padding: 14px 16px 12px;
  }
  .grid__item figcaption span { font-size: 0.7rem; letter-spacing: 0.22em; }
  .grid__item figcaption em { font-size: 1.1rem; }
}

/* ═════════ PROCESO (dark) ═════════ */
.proceso {
  background: var(--bg-dark); color: var(--bg);
  padding-bottom: clamp(80px, 10vw, 140px);
  position: relative; overflow: hidden;
}
.proceso::before {
  /* Glow burdeos sutil */
  content: ''; position: absolute;
  top: 10%; left: -10%; width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(139,46,42,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.steps {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
  padding: 0 var(--gutter);
  max-width: var(--max); margin: 0 auto;
  position: relative;
}
.step {
  padding: 32px 0 0;
  border-top: 1px solid var(--line-dark);
}
.step__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1.5rem + 3vw, 4.5rem);
  line-height: 1; letter-spacing: -0.04em;
  color: var(--accent);
  margin-bottom: 24px;
}
.step__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg); letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.step__text {
  font-family: var(--font-serif); font-weight: 300;
  line-height: 1.55; color: rgba(244, 236, 216, 0.78);
  font-size: 1rem;
}
@media (max-width: 880px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
}

/* ═════════ SOBRE ═════════ */
.sobre { background: var(--bg); padding: 0 0 clamp(80px, 10vw, 140px); }
.sobre__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  padding: clamp(80px, 12vw, 160px) var(--gutter) 0;
  max-width: var(--max); margin: 0 auto;
  align-items: center;
}
.sobre__image {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(42, 30, 20, 0.35);
}
.sobre__image img { width: 100%; }
.sobre__title {
  text-align: left;
  margin-bottom: 32px;
  font-size: clamp(2rem, 1.4rem + 2.6vw, 3.4rem);
  line-height: 1;
}
.sobre__lead {
  font-family: var(--font-serif); font-weight: 400; font-style: normal;
  font-size: 1.25rem; line-height: 1.5; margin-bottom: 20px;
}
.sobre__lead em, .sobre__text em {
  font-family: var(--font-display); font-style: normal;
  letter-spacing: -0.02em;
}
.sobre__text {
  font-size: 1.05rem; line-height: 1.65; color: var(--ink-soft);
  margin-bottom: 32px;
}
.sobre__quote {
  font-family: var(--font-hand); color: var(--accent);
  font-size: clamp(1.4rem, 1rem + 1.4vw, 2rem);
  line-height: 1.4; padding-left: 24px;
  border-left: 2px solid var(--accent);
}
@media (max-width: 880px) {
  .sobre__grid { grid-template-columns: 1fr; }
  .sobre__image { order: -1; max-width: 480px; margin: 0 auto; }
}

/* ═════════ CONTACTO ═════════ */
.contacto {
  background: var(--bg-dark); color: var(--bg);
  position: relative; overflow: hidden;
  padding-bottom: clamp(80px, 10vw, 140px);
}
.contacto::before {
  content: ''; position: absolute;
  bottom: -10%; right: -10%; width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(139,46,42,0.22) 0%, transparent 65%);
  pointer-events: none;
}
.contacto__inner {
  max-width: 820px; margin: 0 auto;
  padding: 0 var(--gutter); position: relative;
}
.form {
  display: flex; flex-direction: column; gap: 24px;
  margin-bottom: 64px;
}
.form__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.form__field {
  display: flex; flex-direction: column; gap: 8px;
  font-size: var(--fs-sm);
}
.form__field > span {
  font-size: var(--fs-xs); letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(244, 236, 216, 0.6);
}
.form__field input,
.form__field select,
.form__field textarea {
  background: transparent;
  border: 0; border-bottom: 1px solid rgba(244, 236, 216, 0.3);
  color: var(--bg); padding: 12px 0;
  font-family: var(--font-serif); font-weight: 300;
  font-size: 1.1rem; line-height: 1.4;
  transition: border-color 0.35s var(--ease);
  border-radius: 0;
  -webkit-appearance: none; appearance: none;
}
.form__field textarea { resize: vertical; min-height: 120px; }
.form__field select { background: var(--bg-dark); }
.form__field select option { background: var(--bg-dark); color: var(--bg); }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none; border-bottom-color: var(--accent);
}
.form__field input:invalid:not(:placeholder-shown),
.form__field textarea:invalid:not(:placeholder-shown) {
  border-bottom-color: var(--accent);
}
.form__field--file > span em {
  font-style: italic; font-family: var(--font-serif);
  text-transform: none; letter-spacing: 0;
  color: rgba(244, 236, 216, 0.5);
  margin-left: 6px; font-size: 0.85em;
}
.form__file-row {
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(244, 236, 216, 0.3);
  padding: 6px 0;
}
.form__file-row input[type="file"] {
  position: absolute; opacity: 0;
  width: 0.1px; height: 0.1px;
  pointer-events: none;
}
.form__file-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border: 1px dashed rgba(244, 236, 216, 0.4);
  border-radius: 8px;
  color: rgba(244, 236, 216, 0.85);
  font-family: var(--font-serif); font-weight: 300; font-style: italic;
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
  flex-grow: 1;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.form__file-btn:hover {
  border-color: var(--accent);
  color: var(--bg);
  background: rgba(139, 46, 42, 0.08);
}
.form__file-btn.has-file {
  border-style: solid;
  border-color: var(--terracota);
  color: var(--terracota);
  font-style: normal;
}
.form__file-clear {
  background: transparent; border: 0; cursor: pointer;
  color: rgba(244, 236, 216, 0.6);
  font-size: 1.4rem; line-height: 1;
  width: 28px; height: 28px;
  border-radius: 50%;
  transition: background 0.3s, color 0.3s;
}
.form__file-clear:hover {
  background: rgba(244, 236, 216, 0.1);
  color: var(--bg);
}
.form__hint {
  font-family: var(--font-serif); font-style: italic; font-weight: 300;
  font-size: var(--fs-xs);
  color: rgba(244, 236, 216, 0.45);
  margin-top: 6px;
}
.form__hint.is-error { color: #ffb3a8; font-style: normal; }
.form__submit {
  align-self: flex-start; margin-top: 16px;
  background: var(--bg); color: var(--ink);
  border-color: var(--bg);
  position: relative;
}
.form__submit:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.form__submit-loading { display: none; }
.form__submit.is-loading { pointer-events: none; opacity: 0.7; }
.form__submit.is-loading .form__submit-label { display: none; }
.form__submit.is-loading .form__submit-loading { display: inline; }
.form__status {
  font-size: var(--fs-sm); font-style: italic;
  font-family: var(--font-serif);
}
.form__status.is-success { color: var(--terracota); }
.form__status.is-error   { color: #ffb3a8; }

.contacto__direct {
  border-top: 1px solid var(--line-dark);
  padding-top: 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.contacto__direct .section-eyebrow { color: rgba(244,236,216,0.5); margin-bottom: 8px; }
.contacto__direct a {
  font-family: var(--font-serif); font-weight: 400;
  font-size: 1.2rem; color: var(--bg);
  text-decoration: none; transition: color 0.3s var(--ease);
}
.contacto__direct a:hover { color: var(--accent); }
.contacto__direct-tag {
  display: inline-block;
  margin-left: 10px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 236, 216, 0.45);
  padding: 3px 10px;
  border: 1px solid rgba(244, 236, 216, 0.18);
  border-radius: 999px;
  vertical-align: middle;
}

@media (max-width: 600px) {
  .form__row { grid-template-columns: 1fr; }
}

/* ═════════ FOOTER ═════════ */
.footer {
  background: var(--ink); color: var(--bg);
  padding: 48px var(--gutter);
  border-top: 1px solid var(--line-dark);
}
.footer__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 32px; align-items: start;
}
.footer__brand { font-size: 1.3rem; line-height: 0; }
.footer__brand-img {
  height: 38px; width: auto;
}
.footer__brand .brand-bruna,
.footer .brand-bruna { color: var(--bg); }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer__links a {
  color: var(--bg); opacity: 0.7; text-decoration: none;
  font-size: var(--fs-sm); transition: opacity 0.3s;
}
.footer__links a:hover { opacity: 1; color: var(--accent); }
.footer__meta {
  text-align: right; font-size: var(--fs-xs);
  color: rgba(244,236,216,0.5); line-height: 1.6;
}
@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__links { justify-content: center; }
  .footer__meta  { text-align: center; }
}

/* ═════════ LIGHTBOX ═════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(42, 30, 20, 0.94);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__img {
  max-width: 90vw; max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: 0 50px 120px -20px rgba(0,0,0,0.6);
  transform: scale(0.96);
  transition: transform 0.45s var(--ease);
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__close {
  position: absolute; top: 24px; right: 28px;
  background: transparent; border: 0; cursor: pointer;
  color: var(--bg); font-size: 2.5rem; line-height: 1;
  width: 44px; height: 44px; border-radius: 50%;
  transition: background 0.3s;
}
.lightbox__close:hover { background: rgba(244,236,216,0.12); }

/* ═════════ REVEAL ON SCROLL ═════════ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ═════════ REVEAL CON PINCELADA ═════════ */
/* Mask gradient diagonal que "pinta" la imagen al entrar en viewport. */
.reveal-brush {
  position: relative;
  --brush-mask: linear-gradient(
    108deg,
    transparent 0%,
    transparent 18%,
    rgba(0,0,0,0.35) 28%,
    rgba(0,0,0,0.85) 42%,
    #000 55%,
    #000 100%
  );
  -webkit-mask-image: var(--brush-mask);
          mask-image: var(--brush-mask);
  -webkit-mask-size: 260% 100%;
          mask-size: 260% 100%;
  -webkit-mask-position: 0% 0;
          mask-position: 0% 0;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transition:
    -webkit-mask-position 1.8s cubic-bezier(0.77, 0, 0.18, 1),
            mask-position 1.8s cubic-bezier(0.77, 0, 0.18, 1),
    opacity 0.4s ease;
  opacity: 0.001;
}
.reveal-brush.is-visible {
  -webkit-mask-position: 100% 0;
          mask-position: 100% 0;
  opacity: 1;
}
.reveal-brush img {
  transform: scale(1.08);
  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-brush.is-visible img { transform: scale(1); }
/* Pincelada con textura de papel sutil */
.reveal-brush::after {
  content: ''; position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(42,30,20,0.05) 0%, transparent 60%);
  mix-blend-mode: overlay;
  opacity: 0; transition: opacity 1.5s var(--ease) 0.6s;
}
.reveal-brush.is-visible::after { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .reveal-brush {
    opacity: 1; -webkit-mask-image: none; mask-image: none;
  }
  .reveal-brush img { transform: none; }
}

/* ═════════ PRODUCTO (Apple-style sales sections) ═════════ */
.producto {
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  position: relative; overflow: hidden;
}
.producto--light { background: var(--bg); color: var(--ink); }
.producto--dark  { background: var(--bg-dark); color: var(--bg); }
.producto--dark::before {
  content: ''; position: absolute;
  top: -10%; right: -10%; width: 50%; height: 50%;
  background: radial-gradient(circle, rgba(139,46,42,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.producto__inner {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  max-width: var(--max); margin: 0 auto;
  align-items: center; position: relative;
}
.producto__inner--reverse { grid-template-columns: 1.1fr 1fr; }
.producto__inner--reverse .producto__copy { order: 2; }

.producto__eyebrow {
  font-size: var(--fs-xs); letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 24px;
}
.producto--dark .producto__eyebrow { color: var(--terracota); }
.producto__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 1.6rem + 4vw, 5rem);
  line-height: 0.95; letter-spacing: -0.04em;
  margin-bottom: 28px; color: inherit;
}
.producto__title em {
  font-family: var(--font-serif); font-style: italic;
  font-weight: 300; color: var(--accent);
}
.producto--dark .producto__title em { color: var(--terracota); }
.producto__lead {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(1.1rem, 0.95rem + 0.6vw, 1.4rem);
  line-height: 1.5; max-width: 44ch;
  color: inherit; opacity: 0.88;
  margin-bottom: 36px;
}
.producto__features {
  list-style: none; padding: 0; margin: 0 0 40px;
  display: flex; flex-direction: column; gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.producto--dark .producto__features { border-top-color: var(--line-dark); }
.producto__features li {
  font-family: var(--font-body); font-size: var(--fs-md);
  line-height: 1.5; padding-left: 28px; position: relative;
  color: inherit; opacity: 0.85;
}
.producto__features li::before {
  content: '·'; position: absolute; left: 6px; top: -6px;
  font-family: var(--font-display); font-size: 2rem;
  color: var(--accent); line-height: 1;
}
.producto--dark .producto__features li::before { color: var(--terracota); }
.producto__features strong {
  font-family: var(--font-body); font-weight: 600;
  color: inherit; opacity: 1;
}
.producto__price-row {
  display: flex; flex-wrap: wrap; gap: 28px;
  align-items: center; justify-content: space-between;
}
.producto__price {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--font-display);
}
.producto__price-value {
  font-size: clamp(2.2rem, 1.4rem + 3vw, 3.8rem);
  letter-spacing: -0.04em; line-height: 1;
}
.producto__price-from {
  font-family: var(--font-serif); font-style: italic;
  font-size: var(--fs-md); opacity: 0.65;
  font-weight: 300;
}
.producto__cta-row {
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
}
.producto__cta-row--stack {
  flex-direction: column; align-items: stretch;
  gap: 14px; max-width: 360px;
}
.producto__cta-row--stack .btn { width: 100%; }
.producto__contact-lead {
  font-family: var(--font-serif); font-style: italic;
  font-weight: 300; font-size: var(--fs-md);
  color: inherit; opacity: 0.7;
  margin-top: -8px; margin-bottom: 18px;
}
.producto--dark .btn--primary { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.producto--dark .btn--primary:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }

.producto__image {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 40px 90px -30px rgba(42, 30, 20, 0.45);
  cursor: zoom-in;
}
/* Sticky storytelling — la imagen del producto-estrella se queda pinned
   mientras los capítulos de historia van pasando a su lado. */
@media (min-width: 881px) {
  .producto--sticky .producto__image {
    position: sticky;
    top: 100px;
    align-self: start;
  }
}
.producto__story {
  margin: 28px 0 32px;
  display: flex; flex-direction: column;
  gap: 18px;
  border-left: 1px solid var(--line);
  padding-left: 20px;
}
.producto__chapter {
  opacity: 0.36;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  font-family: var(--font-serif); font-weight: 300;
  font-size: 1rem; line-height: 1.55;
}
.producto__chapter.is-active {
  opacity: 1;
  transform: translateX(4px);
}
.producto__chapter-num {
  font-family: var(--font-display);
  font-size: var(--fs-xs); letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 6px;
}
.producto__image img {
  width: 100%; height: auto; display: block;
  transition: transform 1.2s var(--ease);
}
.producto__image:hover img { transform: scale(1.03); }
.producto__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(42,30,20,0.85) 0%, rgba(42,30,20,0) 100%);
  color: var(--bg);
}
.producto__caption em {
  display: block; font-family: var(--font-hand);
  font-style: normal; color: var(--terracota);
  font-size: 1.1rem; margin-bottom: 6px;
  line-height: 1.2;
}
.producto__caption span {
  font-size: var(--fs-xs); letter-spacing: 0.24em;
  text-transform: uppercase; opacity: 0.85;
}

@media (max-width: 880px) {
  .producto__inner,
  .producto__inner--reverse { grid-template-columns: 1fr; }
  .producto__inner--reverse .producto__copy { order: 0; }
  .producto__inner--reverse .producto__image { order: -1; }
  .producto__price-row { gap: 20px; flex-direction: column; align-items: flex-start; }
  .producto__cta-row { width: 100%; }
  .producto__cta-row .btn--primary { width: 100%; }
}

/* ═════════ HERO de página interior (sin logo grande) ═════════ */
.hero--page {
  min-height: 70vh; min-height: 70svh;
  padding-top: 140px;
}
.hero__title--text {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 1.4rem + 5vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero__title--text em {
  font-family: var(--font-serif); font-style: italic;
  font-weight: 300; color: var(--accent);
  letter-spacing: -0.02em;
}

/* Nav active link */
.nav__active {
  color: var(--accent) !important;
  position: relative;
}
.nav__active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--accent);
  transform: scaleX(1) !important;
}

/* ═════════ POR QUÉ BRUNA (landing bodas) ═════════ */
.por-que {
  background: var(--bg);
  padding-bottom: clamp(80px, 10vw, 140px);
  position: relative; overflow: hidden;
}
.por-que__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 28px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.por-que__card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: left;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.por-que__card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 8px 22px rgba(42,30,20,0.08), 0 28px 60px -24px rgba(139,46,42,0.32);
}
.por-que__icon {
  width: 38px; height: 38px;
  color: var(--accent);
  margin-bottom: 14px;
  transition: transform 0.5s var(--ease);
}
.por-que__card:hover .por-que__icon { transform: rotate(-6deg) scale(1.08); }
.por-que__icon svg { width: 100%; height: 100%; }
.por-que__card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 0.9rem + 0.6vw, 1.3rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.por-que__card p {
  font-family: var(--font-serif); font-weight: 300;
  font-size: 0.95rem; line-height: 1.55;
  color: var(--ink-soft);
}
@media (max-width: 980px) { .por-que__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .por-que__grid { grid-template-columns: 1fr; } }

/* ═════════ BODAS & WEDDING PLANNERS ═════════ */
.bodas {
  background: var(--bg);
  padding-bottom: clamp(80px, 10vw, 140px);
  position: relative; overflow: hidden;
}
.bodas::before {
  content: ''; position: absolute;
  top: 10%; right: -15%; width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(232,180,164,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.bodas__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.5vw, 32px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.boda-card {
  position: relative;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 30px;
  display: flex; flex-direction: column;
  gap: 12px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease);
}
.boda-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  background: #fff;
  box-shadow:
    0 8px 22px rgba(42,30,20,0.08),
    0 38px 70px -28px rgba(139,46,42,0.35);
}
.boda-card--feat {
  background: linear-gradient(160deg, rgba(232,180,164,0.32) 0%, var(--bg-alt) 70%);
  border-color: rgba(139,46,42,0.28);
}
.boda-card__badge {
  position: absolute;
  top: -12px; right: 24px;
  background: var(--accent); color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  font-weight: 500;
}
.boda-card__icon {
  width: 48px; height: 48px;
  color: var(--accent);
  margin-bottom: 6px;
  transition: transform 0.5s var(--ease);
}
.boda-card:hover .boda-card__icon { transform: rotate(-8deg) scale(1.1); }
.boda-card__icon svg { width: 100%; height: 100%; }
.boda-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1rem + 1.2vw, 1.8rem);
  letter-spacing: -0.02em; line-height: 1.05;
  color: var(--ink);
  margin: 4px 0 2px;
}
.boda-card__desc {
  font-family: var(--font-serif); font-weight: 300;
  font-size: 1rem; line-height: 1.55;
  color: var(--ink-soft);
  flex-grow: 1;
}
.boda-card__tag {
  font-family: var(--font-body); font-weight: 500;
  font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

.bodas__cta {
  max-width: 760px;
  margin: clamp(48px, 6vw, 80px) auto 0;
  padding: 0 var(--gutter);
  text-align: center;
  position: relative;
}
.bodas__cta-lead {
  font-family: var(--font-serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.1rem, 0.95rem + 0.8vw, 1.55rem);
  color: var(--accent);
  margin-bottom: 20px;
}
.bodas__cta-buttons {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}
.bodas__cta-buttons .btn { flex: 1 1 240px; max-width: 320px; }

@media (max-width: 880px) {
  .bodas__grid { grid-template-columns: 1fr; }
}

/* ═════════ PLAZOS ═════════ */
.plazos {
  background: var(--bg-alt);
  padding-bottom: clamp(80px, 10vw, 140px);
  position: relative; overflow: hidden;
}
.plazos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.plazo {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px 24px;
  display: flex; flex-direction: column;
  gap: 8px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.plazo:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow:
    0 6px 16px rgba(42,30,20,0.06),
    0 28px 60px -24px rgba(139,46,42,0.32);
}
.plazo--feat {
  background: linear-gradient(180deg, rgba(232,180,164,0.18) 0%, var(--bg) 60%);
  border-color: rgba(139,46,42,0.32);
}
.plazo__badge {
  position: absolute;
  top: -12px; left: 24px;
  background: var(--accent); color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 500;
}
.plazo__icon {
  width: 42px; height: 42px;
  color: var(--accent);
  margin-bottom: 14px;
  transition: transform 0.5s var(--ease);
}
.plazo:hover .plazo__icon { transform: rotate(-6deg) scale(1.08); }
.plazo__icon svg { width: 100%; height: 100%; }
.plazo__type {
  font-family: var(--font-body); font-weight: 500;
  font-size: var(--fs-sm);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2px;
}
.plazo__time {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.4rem + 2vw, 2.8rem);
  line-height: 1; letter-spacing: -0.03em;
  color: var(--ink);
  margin: 4px 0 6px;
  display: flex; align-items: baseline; gap: 0;
}
.plazo__unit {
  font-family: var(--font-serif); font-style: italic; font-weight: 300;
  font-size: 0.42em;
  margin-left: 8px;
  color: var(--ink-soft);
  letter-spacing: 0;
}
.plazo__desc {
  font-family: var(--font-serif); font-weight: 300;
  font-size: 0.92rem; line-height: 1.5;
  color: var(--ink-soft);
  margin-top: auto;
}
.plazos__note {
  max-width: 600px; margin: clamp(40px, 5vw, 60px) auto 0;
  padding: 20px 28px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px dashed var(--line);
  text-align: center;
  font-family: var(--font-serif); font-weight: 300;
  font-size: var(--fs-sm); color: var(--ink-soft);
  line-height: 1.5;
}
.plazos__note em {
  font-style: normal; font-weight: 500; color: var(--ink);
}
.plazos__note-mark {
  display: inline-block; color: var(--accent);
  margin-right: 6px;
  animation: spinSparkle 4s linear infinite;
}

@media (max-width: 980px) {
  .plazos__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .plazos__grid { grid-template-columns: 1fr; gap: 14px; }
  .plazos__note { border-radius: 16px; padding: 18px 22px; }
}

/* ═════════ CARRUSEL VELAS ═════════ */
.velas-carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(42, 30, 20, 0.5);
  background: #1a1209;
}
.velas-carousel__track {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
}
.velas-slide {
  position: absolute; inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: zoom-in;
  pointer-events: none;
}
.velas-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.velas-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.velas-slide__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 26px 22px;
  background: linear-gradient(to top, rgba(42,30,20,0.92) 0%, rgba(42,30,20,0.4) 60%, transparent 100%);
  color: var(--bg);
  transform: translateY(20%); opacity: 0;
  transition: transform 0.7s var(--ease) 0.3s, opacity 0.7s var(--ease) 0.3s;
}
.velas-slide.is-active .velas-slide__caption {
  transform: translateY(0); opacity: 1;
}
.velas-slide__caption em {
  display: block;
  font-family: var(--font-hand); font-style: normal;
  color: var(--terracota);
  font-size: 1.2rem; margin-bottom: 6px;
  line-height: 1.2;
}
.velas-slide__caption span {
  font-size: var(--fs-xs); letter-spacing: 0.24em;
  text-transform: uppercase; opacity: 0.82;
}

.velas-carousel__btn {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  background: rgba(244, 236, 216, 0.92);
  border: 0; border-radius: 50%;
  font-size: 1.6rem; line-height: 1;
  color: var(--ink);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  z-index: 3;
  font-family: var(--font-display);
}
.velas-carousel__btn:hover {
  background: var(--accent); color: var(--bg);
  transform: translateY(-50%) scale(1.06);
}
.velas-carousel__btn--prev { left: 14px; }
.velas-carousel__btn--next { right: 14px; }
.velas-carousel__dots {
  position: absolute; bottom: 14px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 3;
}
.velas-carousel__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(244, 236, 216, 0.5);
  border: 0; cursor: pointer; padding: 0;
  transition: background 0.3s var(--ease), width 0.3s var(--ease);
}
.velas-carousel__dot.is-active {
  background: var(--terracota);
  width: 22px; border-radius: 4px;
}

@media (max-width: 560px) {
  .velas-carousel__btn { width: 38px; height: 38px; font-size: 1.3rem; }
  .velas-carousel__btn--prev { left: 8px; }
  .velas-carousel__btn--next { right: 8px; }
}

/* ═════════ GALERÍA (renombrada del antiguo portfolio grid) ═════════ */
.galeria { background: var(--bg); padding-bottom: clamp(80px, 10vw, 140px); }

/* ═════════ RESEÑAS ═════════ */
.resenas {
  background: var(--bg);
  padding-bottom: clamp(80px, 10vw, 140px);
  position: relative; overflow: hidden;
}
.resenas::before {
  content: ''; position: absolute;
  bottom: 0; left: -10%; width: 50%; height: 50%;
  background: radial-gradient(circle, rgba(232,180,164,0.16) 0%, transparent 60%);
  pointer-events: none;
}
.resenas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 28px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.resena {
  position: relative;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 26px 24px;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.resena:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  border-color: var(--accent);
  box-shadow:
    0 8px 22px rgba(42,30,20,0.08),
    0 38px 70px -28px rgba(139,46,42,0.32);
}
.resena:nth-child(2n):hover { transform: translateY(-6px) rotate(0.5deg); }
.resena--feat {
  background: linear-gradient(160deg, rgba(232,180,164,0.28) 0%, var(--bg-alt) 70%);
  border-color: rgba(139,46,42,0.3);
}
.resena__stars {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--accent);
  letter-spacing: 0.18em;
  line-height: 1;
}
.resena__quote {
  font-family: var(--font-serif); font-weight: 300;
  font-size: 1.02rem; line-height: 1.55;
  color: var(--ink);
  margin: 0;
  position: relative;
  padding-left: 22px;
  flex-grow: 1;
}
.resena__quote::before {
  content: '“';
  position: absolute; left: -2px; top: -10px;
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--accent);
  line-height: 1;
  opacity: 0.65;
}
.resena__quote em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.resena__author {
  display: flex; flex-direction: column;
  gap: 2px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.resena__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.resena__tag {
  font-family: var(--font-body); font-weight: 500;
  font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.resenas__cta {
  max-width: 720px; margin: clamp(40px, 5vw, 60px) auto 0;
  padding: 0 var(--gutter);
  text-align: center;
}
.resenas__cta-lead {
  font-family: var(--font-serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.05rem, 0.95rem + 0.6vw, 1.35rem);
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.resenas__cta-buttons {
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
}

@media (max-width: 980px) {
  .resenas__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .resenas__grid { grid-template-columns: 1fr; }
  .resena { padding: 24px 22px 20px; }
  .resenas__cta-buttons { gap: 16px; flex-direction: column; align-items: center; }
}

/* ═════════ FAQ ═════════ */
.faq {
  background: var(--bg-alt);
  padding-bottom: clamp(80px, 10vw, 140px);
}
.faq__list {
  max-width: 860px; margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 28px 4px;
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(1.1rem, 0.95rem + 0.6vw, 1.45rem);
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent); }
.faq__icon {
  font-family: var(--font-display);
  font-size: 1.6rem; line-height: 1;
  color: var(--accent); flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__answer {
  padding: 0 4px 28px;
  font-family: var(--font-serif); font-weight: 300;
  font-size: var(--fs-md);
  line-height: 1.65; color: var(--ink-soft);
  max-width: 64ch;
  animation: faqOpen 0.4s var(--ease);
}
.faq__answer p { margin: 0; }
.faq__answer strong { color: var(--ink); font-weight: 600; }
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═════════ SECTION CTA (al final de secciones) ═════════ */
.section-cta {
  margin: clamp(48px, 6vw, 72px) auto 0;
  padding: 28px var(--gutter);
  text-align: center;
  max-width: 720px;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
}
.section-cta__lead {
  font-family: var(--font-serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.1rem, 0.95rem + 0.8vw, 1.6rem);
  color: var(--accent);
  margin: 0;
  line-height: 1.3;
}
.section-cta__btn {
  font-size: var(--fs-md);
  padding: 16px 32px;
}
.section-cta__btn span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s var(--ease);
}
.section-cta__btn:hover span { transform: translateX(4px); }
.section-cta--dark .section-cta__lead { color: var(--terracota); }
.section-cta--dark .section-cta__btn { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.section-cta--dark .section-cta__btn:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.section-cta--inline {
  margin-top: 28px;
  padding: 0;
  align-items: flex-start;
}

/* ═════════ STICKY MOBILE CTA ═════════ */
.sticky-cta {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  display: none; align-items: center; justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--ink); color: var(--bg);
  border-radius: 999px;
  font-family: var(--font-body); font-weight: 500;
  font-size: var(--fs-md);
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(42, 30, 20, 0.4);
  z-index: 48;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), background 0.3s var(--ease);
  pointer-events: none;
}
.sticky-cta.is-visible {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta__arrow {
  font-family: var(--font-display);
  font-size: 1.2rem; line-height: 1;
  transition: transform 0.3s var(--ease);
}
.sticky-cta:hover .sticky-cta__arrow { transform: translateX(4px); }
.sticky-cta:hover { background: var(--accent); }

@media (max-width: 820px) {
  .sticky-cta { display: flex; }
  /* Reserva espacio inferior para que la CTA fija no tape contenido */
  body { padding-bottom: 84px; }
  .footer { margin-bottom: 0; }
}

/* ═════════ PÉTALOS DE ROSA CAYENDO ═════════ */
.petals {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 30;
  overflow: hidden;
}
.petal {
  position: absolute;
  top: -60px;
  width: 26px; height: 32px;
  opacity: 0;
  animation: petalFall linear forwards;
  will-change: transform, opacity;
  filter: drop-shadow(0 5px 8px rgba(42,30,20,0.28));
  transform-origin: center;
}
.petal svg { width: 100%; height: 100%; display: block; }
.petal--lg { width: 38px; height: 46px; }
.petal--sm { width: 18px; height: 22px; opacity: 0.88; }
.petal--xs { width: 12px; height: 15px; opacity: 0.72; }
@keyframes petalFall {
  0%   { opacity: 0; transform: translate3d(0, -50px, 0) rotate(0deg); }
  6%   { opacity: 1; }
  22%  { transform: translate3d(calc(var(--sway, 30px) * 1.1), 22vh, 0) rotate(110deg); }
  44%  { transform: translate3d(calc(var(--sway, 30px) * -0.8), 44vh, 0) rotate(240deg); }
  66%  { transform: translate3d(calc(var(--sway, 30px) * 1.0), 66vh, 0) rotate(370deg); }
  88%  { opacity: 1; transform: translate3d(calc(var(--sway, 30px) * -0.6), 88vh, 0) rotate(500deg); }
  100% {
    opacity: 0;
    transform: translate3d(calc(var(--sway, 30px) * 1.3 + var(--drift, 0px)), 110vh, 0) rotate(620deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .petals { display: none; }
}

/* ═════════ CURSOR TRAIL ═════════ */
.cursor-trail {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 35;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,46,42,0.65) 0%, rgba(139,46,42,0) 70%);
  transform: translate(-50%, -50%) translate3d(-100px, -100px, 0);
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  mix-blend-mode: multiply;
  opacity: 0;
}
.cursor-trail.is-active { opacity: 1; }
.cursor-trail__dot {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 34;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  opacity: 0;
}
@media (hover: none), (max-width: 820px), (prefers-reduced-motion: reduce) {
  .cursor-trail { display: none; }
}

/* ═════════ POPUP — Carta de Bruna ═════════ */
.popup {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.45s var(--ease);
}
.popup.is-open { opacity: 1; pointer-events: auto; }
.popup__backdrop {
  position: absolute; inset: 0;
  background: rgba(42, 30, 20, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.popup__card {
  position: relative; z-index: 1;
  width: 100%; max-width: 500px;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(232,180,164,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(139,46,42,0.10) 0%, transparent 55%),
    var(--bg);
  border-radius: 22px;
  padding: 48px 38px 32px;
  box-shadow: 0 60px 140px -20px rgba(0,0,0,0.6);
  transform: translateY(40px) scale(0.92) rotate(-3deg);
  transition: transform 0.7s cubic-bezier(0.16, 1.2, 0.3, 1);
  overflow: hidden;
  max-height: calc(100vh - 40px);
  max-height: calc(100svh - 40px);
  overflow-y: auto;
  /* Textura papel sutil */
  background-blend-mode: normal;
}
.popup.is-open .popup__card { transform: translateY(0) scale(1) rotate(-0.7deg); }
/* Borde textil/papel */
.popup__card::before {
  content: ''; position: absolute; inset: 6px;
  border: 1px dashed rgba(139,46,42,0.22);
  border-radius: 16px;
  pointer-events: none;
}

/* Sparkles flotantes */
.popup__sparkle {
  position: absolute;
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.4rem;
  pointer-events: none;
  opacity: 0;
  animation: sparkleFloat 4.5s ease-in-out infinite;
}
.popup.is-open .popup__sparkle { opacity: 0.85; }
.popup__sparkle--1 { top: 8%;  left: 6%;  animation-delay: 0s;   color: var(--accent); }
.popup__sparkle--2 { top: 14%; right: 18%; animation-delay: 0.6s; color: var(--terracota); font-size: 1.1rem; }
.popup__sparkle--3 { bottom: 22%; left: 8%; animation-delay: 1.2s; color: var(--terracota); font-size: 1rem; }
.popup__sparkle--4 { bottom: 12%; right: 8%; animation-delay: 1.8s; color: var(--accent); font-size: 1.3rem; }
@keyframes sparkleFloat {
  0%,100% { transform: translate(0, 0) rotate(0deg) scale(1);   opacity: 0.85; }
  25%     { transform: translate(4px, -6px) rotate(8deg) scale(1.15); opacity: 1; }
  50%     { transform: translate(-3px, 4px) rotate(-6deg) scale(0.9); opacity: 0.6; }
  75%     { transform: translate(2px, -2px) rotate(4deg) scale(1.05); opacity: 0.95; }
}

/* Sello postal en esquina */
.popup__stamp {
  position: absolute; top: 12px; left: 14px;
  width: 46px; height: 46px;
  color: var(--accent);
  opacity: 0.18;
  transform: rotate(-12deg);
  pointer-events: none;
}
.popup__stamp svg { width: 100%; height: 100%; }

.popup__close {
  position: absolute; top: 10px; right: 12px;
  width: 36px; height: 36px;
  background: transparent; border: 0; cursor: pointer;
  font-size: 1.7rem; line-height: 1; color: var(--ink-soft);
  border-radius: 50%;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
  z-index: 5;
}
.popup__close:hover { background: rgba(42,30,20,0.08); color: var(--ink); transform: rotate(90deg); }

.popup__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-serif); font-style: italic; font-weight: 300;
  font-size: var(--fs-sm);
  color: var(--accent); margin-bottom: 18px;
}
.popup__eyebrow-icon {
  display: inline-block;
  animation: spinSparkle 3.5s linear infinite;
  font-style: normal;
}
@keyframes spinSparkle {
  from { transform: rotate(0); }
  to   { transform: rotate(360deg); }
}

.popup__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1.3rem + 2vw, 2.6rem);
  line-height: 1; letter-spacing: -0.03em;
  margin-bottom: 18px; color: var(--ink);
  display: flex; flex-direction: column; gap: 4px;
}
.popup__title-hand {
  font-family: var(--font-hand);
  font-size: 1.1em;
  color: var(--accent);
  font-weight: normal; letter-spacing: 0;
  transform: rotate(-2deg) translateX(-2px);
  transform-origin: left bottom;
  margin-bottom: 4px;
}
.popup__title-main {
  font-family: var(--font-display);
  letter-spacing: -0.04em;
}

.popup__lead {
  font-family: var(--font-serif); font-weight: 300;
  font-size: 1rem; line-height: 1.55;
  color: var(--ink-soft); margin-bottom: 22px;
  max-width: 38ch;
}
.popup__lead em {
  font-style: normal; color: var(--accent);
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.popup__form {
  display: flex; flex-direction: column; gap: 14px;
}
.popup__field {
  display: flex; flex-direction: column; gap: 4px;
}
.popup__field > span {
  font-family: var(--font-serif); font-style: italic; font-weight: 300;
  font-size: var(--fs-sm);
  color: var(--ink-soft);
}
.popup__field input {
  background: transparent;
  border: 0; border-bottom: 1.5px solid var(--line);
  padding: 8px 0 10px; color: var(--ink);
  font-family: var(--font-body); font-weight: 400;
  font-size: 1.05rem; line-height: 1.3;
  transition: border-color 0.3s var(--ease), transform 0.2s var(--ease);
  border-radius: 0;
  -webkit-appearance: none; appearance: none;
}
.popup__field input::placeholder { color: rgba(42,30,20,0.32); font-style: italic; }
.popup__field input:focus {
  outline: none; border-bottom-color: var(--accent);
}
.popup__submit {
  margin-top: 10px;
  width: 100%;
  position: relative;
}
.popup__submit-loading { display: none; }
.popup__submit.is-loading .popup__submit-label { display: none; }
.popup__submit.is-loading .popup__submit-loading { display: inline; }
.popup__submit.is-loading { pointer-events: none; opacity: 0.7; }
.popup__dismiss {
  background: transparent; border: 0; cursor: pointer;
  font-family: var(--font-serif); font-style: italic; font-weight: 300;
  font-size: var(--fs-sm); color: var(--ink-soft);
  padding: 6px 0; margin: 2px auto 0;
  transition: color 0.3s var(--ease);
  position: relative;
}
.popup__dismiss::after {
  content: ''; position: absolute; bottom: 4px; left: 50%;
  width: 60%; height: 1px; background: currentColor;
  transform: translateX(-50%);
  opacity: 0.4;
}
.popup__dismiss:hover { color: var(--accent); }
.popup__status {
  font-size: var(--fs-sm); font-style: italic;
  font-family: var(--font-serif); color: var(--accent);
  min-height: 1.4em;
}
.popup__status.is-error { color: #b53d2c; }

/* Estado éxito */
.popup__success { text-align: left; position: relative; }
.popup__code-wrap {
  display: flex; align-items: center; gap: 18px;
  margin: 20px 0 24px;
  position: relative;
}
.popup__code {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.4rem + 3.2vw, 3.2rem);
  letter-spacing: 0.06em;
  color: var(--accent);
  padding: 10px 22px;
  border: 2px dashed var(--accent);
  border-radius: 10px;
  background: rgba(232,180,164,0.18);
  position: relative;
  transform: rotate(-3deg) scale(0.5);
  opacity: 0;
  animation: stampIn 0.7s cubic-bezier(0.34, 1.6, 0.64, 1) 0.2s forwards;
}
@keyframes stampIn {
  0%   { transform: rotate(-15deg) scale(0.3); opacity: 0; }
  60%  { transform: rotate(-2deg)  scale(1.1); opacity: 1; }
  85%  { transform: rotate(-3.5deg) scale(0.96); }
  100% { transform: rotate(-3deg)  scale(1); opacity: 1; }
}
.popup__code-arrow {
  font-family: var(--font-hand);
  font-size: 2rem; color: var(--accent);
  opacity: 0;
  transform: translateX(-10px) rotate(-15deg);
  animation: arrowIn 0.5s var(--ease) 0.9s forwards;
}
@keyframes arrowIn {
  to { opacity: 0.7; transform: translateX(0) rotate(-10deg); }
}

.popup__confetti {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: -1;
}
.popup__confetti span {
  position: absolute;
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 0.9rem;
  opacity: 0;
  animation: confettiBurst 1.4s ease-out forwards;
}
.popup__confetti span:nth-child(1) { top: 10%; left: 50%; --tx: -120px; --ty: -40px; animation-delay: 0.1s; color: var(--accent); }
.popup__confetti span:nth-child(2) { top: 10%; left: 50%; --tx: 100px;  --ty: -60px; animation-delay: 0.15s; color: var(--terracota); }
.popup__confetti span:nth-child(3) { top: 10%; left: 50%; --tx: 60px;   --ty: 80px;  animation-delay: 0.2s; color: var(--accent); }
.popup__confetti span:nth-child(4) { top: 10%; left: 50%; --tx: -80px;  --ty: 100px; animation-delay: 0.25s; color: var(--terracota); }
.popup__confetti span:nth-child(5) { top: 10%; left: 50%; --tx: 140px;  --ty: 20px;  animation-delay: 0.3s; color: var(--accent); font-size: 1.2rem; }
.popup__confetti span:nth-child(6) { top: 10%; left: 50%; --tx: -150px; --ty: 60px;  animation-delay: 0.35s; color: var(--terracota); }
.popup__confetti span:nth-child(7) { top: 10%; left: 50%; --tx: 30px;   --ty: -100px; animation-delay: 0.4s; color: var(--accent); font-size: 1.1rem; }
.popup__confetti span:nth-child(8) { top: 10%; left: 50%; --tx: -40px;  --ty: -90px; animation-delay: 0.45s; color: var(--terracota); }
@keyframes confettiBurst {
  0%   { transform: translate(0,0) rotate(0deg) scale(0.4); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) rotate(360deg) scale(1); opacity: 0; }
}

#popupGreetName { color: var(--ink); font-style: normal; font-family: var(--font-hand); font-size: 1.2em; }

.popup__ok {
  margin-top: 14px;
  width: 100%;
}

@media (max-width: 480px) {
  .popup__card { padding: 40px 22px 26px; border-radius: 16px; }
  .popup__sparkle--1 { top: 6%; left: 5%; }
  .popup__sparkle--2 { top: 10%; right: 14%; }
}

/* ═════════ SELECTION ═════════ */
::selection { background: var(--accent); color: var(--bg); }
