/* ============================================================
   PROHPIA · Stylesheet compartido · Rebrand Coral Edition
   - Hero centrado + logo grande scroll-linked
   - Card-stack sections (rounded tops, layered colors)
   - Bidirectional scroll animations
   - Cursor blob, magnetic buttons, 3D tilt
============================================================ */
:root {
  --coral:        #A4123E;
  --coral-soft:   #C7375F;
  --coral-tint:   #F2CCD0;
  --coral-mist:   #FCE7EC;
  --magenta:      #7C0C2C;
  --wine:         #6E0F31;
  --cream:        #FBF4EE;
  --cream-warm:   #FBEFE9;
  --paper:        #FFFFFF;
  --ink:          #2A1219;
  --ink-2:        #3A1F2A;
  --ink-soft:     #6B4A55;
  --ink-mute:     #B9A4AB;
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;
  --nav-h: 84px;
  --gutter: clamp(20px, 4vw, 56px);
  --maxw: 1320px;
  --radius: clamp(52px, 5vw, 72px);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --brand-p: 0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  cursor: none;
}
@media (max-width: 900px) { body { cursor: auto; } }
::selection { background: var(--coral); color: #fff; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: none; border: none; background: none; color: inherit; }
@media (max-width: 900px) { button { cursor: pointer; } }
em { font-style: italic; color: var(--coral); }
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

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

/* ============================================================
   CURSOR BLOB — soft coral follower
============================================================ */
.cursor-blob {
  position: fixed;
  top: 0; left: 0;
  width: 20px; height: 20px;
  background: var(--coral);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
  opacity: .45;
  margin-top: -10px;
  margin-left: -10px;
  will-change: transform, width, height;
  transition: width .35s var(--ease-out), height .35s var(--ease-out),
              margin .35s var(--ease-out), opacity .3s var(--ease-out);
}
.cursor-blob.lg {
  width: 70px; height: 70px;
  margin-top: -35px; margin-left: -35px;
  opacity: .35;
}
.cursor-blob.dot {
  width: 8px; height: 8px;
  margin-top: -4px; margin-left: -4px;
  opacity: .9;
  background: var(--magenta);
  mix-blend-mode: normal;
}
@media (max-width: 900px) { .cursor-blob { display: none; } }
@media (prefers-reduced-motion: reduce) { .cursor-blob { display: none; } }

/* Magnetic buttons */
.magnetic { transition: transform .35s var(--ease-out); will-change: transform; }

/* 3D tilt cards */
.tilt { transition: transform .5s var(--ease-out); will-change: transform; transform-style: preserve-3d; }

/* ============================================================
   BRAND STAGE — siempre visible, scroll-linked
============================================================ */
.brand-stage {
  position: absolute;
  z-index: 200;
  top: 24px; left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: auto;
  opacity: 0;
  animation: brandFade 1.2s var(--ease-out) .2s forwards;
}
@keyframes brandFade { to { opacity: 1; } }
.brand-stage img { height: 46px; width: auto; display: block; }

/* ============================================================
   INTRO — animación de entrada al cargar (logo reveal + cortina)
============================================================ */
.intro { position: fixed; inset: 0; z-index: 9999; background: var(--cream);
  transition: background-color .8s ease; }
.intro.is-dock { background-color: transparent; }
.intro-logo { position: fixed; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: clamp(240px,42vw,520px); height: auto; display: block;
  clip-path: inset(0 100% 0 0); filter: blur(12px); opacity: 0;
  transition: clip-path 1s cubic-bezier(.7,0,.2,1), filter .8s ease, opacity .6s ease,
    top 1s cubic-bezier(.76,0,.24,1), width 1s cubic-bezier(.76,0,.24,1), transform 1s cubic-bezier(.76,0,.24,1); }
.intro.is-reveal .intro-logo { clip-path: inset(0 0 0 0); filter: blur(0); opacity: 1; }
.intro.is-dock .intro-logo { top: 24px; width: 126px; transform: translate(-50%,0); }
html.intro-lock { overflow: hidden; }
@media (prefers-reduced-motion: reduce) { .intro { display: none; } }
.brand-stage .oh {
  color: var(--coral);
  font-style: normal;
  font-weight: 700;
  font-family: var(--sans);
  letter-spacing: -.05em;
}
.brand-stage sup {
  font-size: .22em;
  color: var(--coral);
  font-family: var(--sans);
  font-style: normal;
  vertical-align: super;
  font-weight: 500;
  margin-left: 2px;
}
@media (max-width: 700px) {
  .brand-stage {
    font-size: calc(22px + (22vw - 22px) * (1 - var(--brand-p, 0)));
  }
}

/* ============================================================
   NAV
============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex; align-items: center;
  background: transparent;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease);
}
.nav.scrolled {
  background: rgba(255, 248, 245, .82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: rgba(26, 14, 20, .08);
}
.nav .container {
  display: flex; align-items: center;
  justify-content: flex-end;
  gap: 24px;
  position: relative;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
  font-size: 14px; font-weight: 500;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.nav.docked-ready .nav-links { opacity: 1; transform: translateY(0); transition-delay: .1s; }
.nav-links a {
  white-space: nowrap;
  position: relative;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--coral); }
.nav-links a.active::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px; background: var(--coral); border-radius: 2px;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out), background .3s var(--ease);
}
.nav.docked-ready .nav-cta { opacity: 1; transform: translateY(0); transition-delay: .2s; }
.nav-cta:hover { background: var(--coral); transform: translateY(-1px); }
.nav-cta svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.nav-cta:hover svg { transform: translate(2px, -2px); }
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--ink); color: var(--cream);
  opacity: 0;
}
.nav.docked-ready .nav-burger { opacity: 1; transition: opacity .8s var(--ease-out) .2s; }
@media (max-width: 1100px) { .nav-links { gap: 24px; font-size: 13px; } }
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: inline-flex; }
}

/* ============================================================
   SECTIONS — flat por default. Card-stack es opt-in via .section--card
============================================================ */
.section {
  position: relative;
  z-index: 1;
  background: var(--cream);
  overflow: hidden;
}
.section:nth-of-type(1)  { z-index: 1; }
.section:nth-of-type(2)  { z-index: 2; }
.section:nth-of-type(3)  { z-index: 3; }
.section:nth-of-type(4)  { z-index: 4; }
.section:nth-of-type(5)  { z-index: 5; }
.section:nth-of-type(6)  { z-index: 6; }
.section:nth-of-type(7)  { z-index: 7; }
.section:nth-of-type(8)  { z-index: 8; }
.section:nth-of-type(9)  { z-index: 9; }
.section:nth-of-type(10) { z-index: 10; }
.section:nth-of-type(11) { z-index: 11; }

/* Sección visualmente "tarjeta apilable": bordes redondeados arriba +
   overlap negativo con la anterior + sombra. SOLO aplicar en transiciones clave. */
.section--card {
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: calc(var(--radius) * -1);
}
.section--card:first-of-type {
  margin-top: 0;
  border-radius: 0;
}

.section--cream   { background: var(--cream); }
.section--white   { background: var(--paper); }
.section--warm    { background: var(--cream-warm); }
.section--dark    { background: var(--ink); color: var(--cream); }
.section--coral   { background: var(--coral-mist); }
.section--magenta { background: linear-gradient(180deg, var(--wine) 0%, var(--ink) 100%); color: var(--cream); }
/* Sección rosa fuerte (vino sólido) — coherente con el diseño del home */
.section--wine { background: var(--coral); color: var(--cream); }
.section--wine .section-label { color: var(--cream); }
.section--wine .section-label::before { background: var(--cream); }
.section--wine .contact-info h2 { color: var(--cream); }
.section--wine .contact-info h2 em { color: var(--coral-tint); }
.section--wine .contact-info p { color: rgba(255,248,245,.82); }
.section--wine .contact-item { border-top-color: rgba(255,248,245,.18); }
.section--wine .contact-item:last-child { border-bottom-color: rgba(255,248,245,.18); }
.section--wine .contact-item .label { color: rgba(255,248,245,.7); }
.section--wine .contact-item .value { color: var(--cream); }
.section--wine .contact-item:hover .value { color: var(--coral-tint); }

/* ============================================================
   HERO — centered
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 80px) 0 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, var(--coral-mist) 0%, transparent 60%),
    radial-gradient(ellipse 90% 60% at 50% 110%, var(--coral-tint) 0%, transparent 65%),
    var(--cream);
  text-align: center;
  display: flex; flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  border-radius: 0;
  margin-top: 0;
}
.hero.hero--short {
  min-height: 70vh;
  padding-top: calc(var(--nav-h) + 100px);
  padding-bottom: 80px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/></svg>");
  opacity: .22;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero-orb.a {
  width: 600px; height: 600px;
  background: var(--coral);
  top: -200px; right: -200px;
  opacity: .22;
}
.hero-orb.b {
  width: 500px; height: 500px;
  background: var(--magenta);
  bottom: -250px; left: -150px;
  opacity: .15;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  flex: 1;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--ink-soft);
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px var(--coral-mist);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px var(--coral-mist); }
  50%     { box-shadow: 0 0 0 8px rgba(164,18,62,.12); }
}
.hero h1.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6.5vw, 92px);
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--ink);
  max-width: 20ch;
}
.hero h1.display .accent {
  font-style: italic;
  color: var(--coral);
  font-weight: 500;
}
.hero h1.display .underline-coral {
  position: relative;
  display: inline-block;
}
.hero h1.display .underline-coral::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: .03em;
  height: .12em;
  background: var(--coral);
  border-radius: 999px;
  opacity: .9;
  transform: scaleX(var(--ux, 0));
  transform-origin: left;
  transition: transform 1.4s var(--ease-out);
}
.hero-tag {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 60ch;
}
.hero-tag strong { color: var(--ink); font-weight: 600; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 28px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 15px; font-weight: 500;
  transition: background .3s var(--ease);
  box-shadow: 0 18px 40px -20px rgba(26,14,20,.4);
  margin-top: 8px;
}
.hero-cta:hover { background: var(--coral); }
.hero-cta .arrow-circle {
  width: 26px; height: 26px;
  background: var(--coral);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.hero-cta:hover .arrow-circle { background: var(--cream); transform: rotate(-45deg); }
.hero-cta:hover .arrow-circle svg path { stroke: var(--coral); }
.hero-cta .arrow-circle svg path { stroke: var(--ink); transition: stroke .3s var(--ease); }

.hero-stats {
  display: flex; gap: 56px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(26,14,20,.12);
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat .num {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--ink);
}
.hero-stat .num span { color: var(--coral); font-style: italic; }
.hero-stat .lbl {
  margin-top: 8px;
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.hero-brand-anchor {
  position: relative;
  width: 100%;
  height: calc(16vw + 40px);
  margin-top: auto;
  z-index: 1;
}
.hero--short .hero-brand-anchor { height: 80px; }
@media (max-width: 700px) {
  .hero-brand-anchor { height: calc(22vw + 30px); }
  .hero--short .hero-brand-anchor { height: 60px; }
}
.hero-scroll {
  position: absolute;
  left: var(--gutter); bottom: 24px;
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--ink-soft);
  z-index: 3;
}
.hero-scroll .line {
  width: 50px; height: 1px;
  background: var(--ink-soft);
  position: relative; overflow: hidden;
}
.hero-scroll .line::after {
  content: ""; position: absolute;
  inset: 0; right: auto;
  width: 30%; background: var(--coral);
  animation: slide 2.2s ease-in-out infinite;
}
@keyframes slide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}
@media (max-width: 700px) {
  .hero { padding-top: calc(var(--nav-h) + 50px); }
  .hero-scroll { display: none; }
  .hero-stats { gap: 32px; }
}

/* ============================================================
   COMMON SECTION ELEMENTS
============================================================ */
.section-label {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--coral);
  font-weight: 500;
  margin-bottom: 28px;
}
.section-label::before {
  content: ""; width: 32px; height: 1px; background: var(--coral);
}
.section--dark .section-label { color: var(--coral-soft); }

.section-h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -.025em;
  max-width: 18ch;
}
.section-h2 em { color: var(--coral); font-weight: 500; font-style: italic; }
.section--dark .section-h2 { color: var(--cream); }

.section-intro {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 50ch;
}
.section--dark .section-intro { color: rgba(255, 248, 245, .75); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  background: var(--ink); color: var(--cream);
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  transition: background .3s var(--ease);
}
.btn-primary:hover { background: var(--coral); }
.btn-primary::after { content: "→"; transition: transform .3s var(--ease); }
.btn-primary:hover::after { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  background: transparent; color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.section--dark .btn-ghost { color: var(--cream); border-color: var(--cream); }
.section--dark .btn-ghost:hover { background: var(--cream); color: var(--ink); }

/* ============================================================
   MARQUEE
============================================================ */
.marquee-section {
  padding: 64px 0 70px;
  overflow: hidden;
}
.marquee-title {
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 36px;
  letter-spacing: -.01em;
  padding: 0 var(--gutter);
}
.marquee-title .circle-mark {
  position: relative;
  display: inline-block;
  padding: 0 6px;
}
.marquee-title .circle-mark::after {
  content: "";
  position: absolute;
  left: -8px; right: -8px;
  top: -6px; bottom: -6px;
  border: 2.5px solid var(--coral);
  border-radius: 50%;
  transform: rotate(-3deg);
}
.marquee {
  display: flex; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex; gap: 80px;
  animation: scroll-x 38s linear infinite;
  width: max-content;
  white-space: nowrap;
  padding-right: 80px;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brand-logo {
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ink-soft);
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: color .3s var(--ease);
}
.brand-logo:hover { color: var(--coral); }
.brand-logo.bold { font-family: var(--sans); font-weight: 700; letter-spacing: -.02em; }
.brand-logo.script { font-style: italic; }
.brand-logo.tracked { font-family: var(--sans); font-weight: 500; letter-spacing: .22em; font-size: 18px; text-transform: uppercase; }

/* ============================================================
   PROSE SECTIONS (dark manifesto-style)
============================================================ */
.prose-section { padding: 180px 0 160px; position: relative; overflow: hidden; }
.prose-section.section--dark::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 100% 50%, rgba(164,18,62,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(124,12,44,.22) 0%, transparent 55%);
  pointer-events: none;
}
.prose-section .container { position: relative; }
.prose-section h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 108px);
  line-height: .98;
  letter-spacing: -.025em;
  max-width: 14ch;
  margin-bottom: 80px;
}
.section--dark .prose-section h2 { color: var(--cream); }
.prose-section h2 .accent { color: var(--coral); font-style: italic; font-weight: 500; }
.prose-section h2 .accent sup {
  font-size: .35em; color: var(--coral-soft);
  vertical-align: super;
  font-family: var(--sans); font-style: normal;
}
.prose-body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.prose-aside {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.35;
  color: var(--coral-soft);
  border-left: 2px solid var(--coral);
  padding-left: 26px;
  position: sticky;
  top: 120px;
}
.section--cream .prose-aside { color: var(--ink-2); }
.prose-text p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 26px;
  max-width: 60ch;
}
.section--dark .prose-text p { color: rgba(255, 248, 245, .82); }
.section--dark .prose-text p strong { color: var(--cream); font-weight: 500; }
.section--cream .prose-text p { color: var(--ink-2); }
.prose-text .closing {
  margin-top: 40px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.35;
  max-width: 26ch;
}
.section--dark .prose-text .closing { color: var(--cream); }
.prose-text .coral { color: var(--coral); font-weight: 500; }

@media (max-width: 900px) {
  .prose-body { grid-template-columns: 1fr; gap: 36px; }
  .prose-aside { position: static; }
}

/* ============================================================
   SERVICES GRID (3 columns with hover fill)
============================================================ */
.services { padding: 180px 0 160px; }
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.services-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -.025em;
  max-width: 14ch;
}
.services-head h2 .huella {
  background: var(--coral);
  color: var(--cream);
  padding: 0 14px;
  border-radius: 6px;
  display: inline-block;
  transform: rotate(-1.5deg);
  font-style: italic;
  font-weight: 500;
  animation: huella-wobble 4s ease-in-out infinite;
}
@keyframes huella-wobble {
  0%, 100% { transform: rotate(-1.5deg) scale(1); }
  25%      { transform: rotate(1.5deg) scale(1.03); }
  50%      { transform: rotate(-2deg) scale(1); }
  75%      { transform: rotate(2deg) scale(1.04); }
}
.services-head .intro {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 44ch;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(26,14,20,.12);
}
.service-card {
  padding: 56px 36px 48px;
  border-right: 1px solid rgba(26,14,20,.12);
  border-bottom: 1px solid rgba(26,14,20,.12);
  background: transparent;
  transition: background .35s var(--ease), color .35s var(--ease);
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex; flex-direction: column;
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: var(--coral); }
.service-card:hover, .service-card:hover * { color: var(--cream) !important; }
.service-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--coral);
  margin-bottom: 28px;
  letter-spacing: .04em;
}
.service-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 18px;
}
.service-card .desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 28px;
}
.service-card ul { list-style: none; margin-top: auto; }
.service-card li {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  padding: 12px 0;
  border-top: 1px solid rgba(26,14,20,.1);
  display: flex; gap: 12px;
}
.service-card li::before { content: "→"; color: var(--coral); flex-shrink: 0; font-weight: 600; }
.service-card:hover li { border-top-color: rgba(255,248,245,.25); }
.service-card:hover li::before { color: var(--cream); }
@media (max-width: 900px) {
  .services-head { grid-template-columns: 1fr; gap: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; min-height: auto; }
}

/* ============================================================
   VIRAL METHOD steps
============================================================ */
.viral { padding: 180px 0; position: relative; overflow: hidden; }
.viral-bg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 250%;
  transform: translate(var(--vx, 50vw), -50%);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 36vw;
  line-height: .8;
  letter-spacing: -.04em;
  color: var(--coral-tint);
  opacity: .55;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  white-space: nowrap;
}
.viral .container { position: relative; z-index: 1; }
.viral-head { margin-bottom: 96px; max-width: 800px; }
.viral-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 28px;
}
.viral-head h2 .proposito { font-style: italic; color: var(--coral); font-weight: 500; }
.viral-head p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}
.viral-steps { display: flex; flex-direction: column; }
.viral-step {
  display: grid;
  grid-template-columns: 100px 1fr 1.5fr;
  gap: 40px;
  padding: 44px 0;
  border-top: 1px solid rgba(26,14,20,.18);
  align-items: start;
  transition: padding .4s var(--ease);
}
.viral-step:last-child { border-bottom: 1px solid rgba(26,14,20,.18); }
.viral-step:hover { padding-left: 16px; }
.viral-step .step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--coral);
  font-weight: 500;
}
.viral-step .step-num::before { content: "0"; color: var(--ink-mute); margin-right: 2px; }
.viral-step .step-name {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--ink);
}
.viral-step:nth-child(2n) .step-name { color: var(--magenta); }
.viral-step .step-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 52ch;
}
.viral-step .step-body .question {
  display: block;
  margin-top: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--coral);
}
@media (max-width: 900px) {
  .viral-step { grid-template-columns: 1fr; gap: 16px; padding: 36px 0; }
}

/* ============================================================
   PORTFOLIO
============================================================ */
.portfolio { padding: 180px 0 160px; }
.portfolio-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 40px; margin-bottom: 64px; flex-wrap: wrap;
}
.portfolio-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -.025em;
  max-width: 16ch;
}
.portfolio-head h2 em { color: var(--coral); font-weight: 500; }
.portfolio-head .more {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  padding: 14px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.portfolio-head .more:hover { background: var(--ink); color: var(--cream); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/5;
  background: var(--coral-tint);
  cursor: none;
  transition: transform .4s var(--ease);
}
@media (max-width: 900px) { .portfolio-item { cursor: pointer; } }
.portfolio-item:hover { transform: translateY(-6px); }
.portfolio-item .cover {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .8s var(--ease);
}
.portfolio-item:hover .cover { transform: scale(1.06); }
.portfolio-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26,14,20,.78) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  color: var(--cream);
}
.portfolio-item .category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--coral-tint);
  margin-bottom: 8px;
}
.portfolio-item h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
}
/* Aspect ratios alineados: large 2:1 (8 cols) + small 1:1 (4 cols) hacen misma altura.
   Row 2: 3 med items todos 1:1 (4 cols c/u) */
.portfolio-item { aspect-ratio: 1/1; grid-column: span 4; }
.portfolio-item.large { grid-column: span 8; aspect-ratio: 2/1; }
.portfolio-item.small { grid-column: span 4; aspect-ratio: 1/1; }
.portfolio-item.med   { grid-column: span 4; aspect-ratio: 1/1; }
.cover-1 { background: linear-gradient(135deg, #A4123E 0%, #7C0C2C 100%); }
.cover-2 { background: linear-gradient(135deg, #F2CCD0 0%, #C7375F 100%); }
.cover-3 { background: linear-gradient(135deg, #2A1219 0%, #6E0F31 100%); }
.cover-4 { background: linear-gradient(135deg, #FBEFE9 0%, #A4123E 100%); }
.cover-5 { background: linear-gradient(135deg, #7C0C2C 0%, #C7375F 100%); }
.cover-6 { background: linear-gradient(135deg, #C7375F 0%, #6E0F31 100%); }
.cover-7 { background: linear-gradient(135deg, #F2CCD0 0%, #2A1219 100%); }
[class^="cover-"]::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/></svg>");
  mix-blend-mode: overlay; opacity: .6;
}
.mockup-label {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  color: rgba(255,248,245,.95);
  text-align: center; z-index: 1;
  pointer-events: none;
  padding: 0 20px;
}
.mockup-label .l1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 500;
  line-height: 1;
  font-style: italic;
}
.mockup-label .l2 {
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  opacity: .8;
  font-style: normal;
}
@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.large, .portfolio-item.small, .portfolio-item.med { grid-column: span 1; aspect-ratio: 4/5; }
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials { padding: 180px 0 160px; }
.testimonials-head { text-align: center; margin-bottom: 80px; }
.testimonials-head .section-label { justify-content: center; }
.testimonials-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -.025em;
  max-width: 20ch;
  margin: 0 auto;
}
.testimonials-head h2 em { color: var(--coral); font-weight: 500; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--paper);
  padding: 40px 32px;
  border-radius: 16px;
  border: 1px solid rgba(26,14,20,.08);
  display: flex; flex-direction: column;
  transition: border-color .35s var(--ease);
}
.testimonial:hover { border-color: var(--coral); }
.testimonial .quote-mark {
  font-family: var(--serif);
  font-size: 80px;
  line-height: .7;
  color: var(--coral);
  margin-bottom: 14px;
  font-style: italic;
}
.testimonial blockquote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 32px;
  flex: 1;
}
.testimonial .author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(26,14,20,.1);
}
.testimonial .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--coral-tint);
  color: var(--magenta);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
}
.testimonial .name { font-size: 14px; font-weight: 600; }
.testimonial .role { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BIG QUOTE (dark)
============================================================ */
.big-quote { padding: 200px 0; position: relative; overflow: hidden; }
.big-quote::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(164,18,62,.16) 0%, transparent 60%);
}
.big-quote .container { position: relative; }
.big-quote .lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.2;
  color: var(--coral-soft);
  margin-bottom: 56px;
  max-width: 26ch;
  letter-spacing: -.01em;
}
.big-quote h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 1;
  letter-spacing: -.025em;
  max-width: 18ch;
  margin-bottom: 40px;
  color: var(--cream);
}
.big-quote h2 .vision { color: var(--coral); font-style: italic; font-weight: 500; }
.big-quote ul { list-style: none; margin-top: 56px; max-width: 60ch; }
.big-quote li {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 248, 245, .82);
  padding: 18px 0;
  border-top: 1px solid rgba(255, 248, 245, .14);
  display: flex; gap: 24px;
}
.big-quote li:last-child { border-bottom: 1px solid rgba(255, 248, 245, .14); }
.big-quote li .ix {
  flex-shrink: 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--coral);
  font-size: 14px;
  padding-top: 4px;
}
.big-quote .closing {
  margin-top: 64px;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -.02em;
  max-width: 22ch;
  color: var(--cream);
}
.big-quote .closing em { color: var(--coral); font-style: italic; }

/* ============================================================
   CTA FINAL
============================================================ */
.cta-final {
  padding: 220px 0 200px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg-oh {
  position: absolute;
  top: 50%; left: 50%;
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: 60vw;
  line-height: .8;
  color: var(--coral);
  opacity: .1;
  pointer-events: none;
  letter-spacing: -.05em;
  will-change: transform;
}
.cta-final .container { position: relative; }
.cta-final h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6.5vw, 104px);
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 40px;
  max-width: 18ch;
  margin-left: auto; margin-right: auto;
  position: relative; z-index: 2;
}
.cta-final h2 .oh {
  font-style: italic;
  color: var(--coral);
  font-weight: 500;
  position: relative;
  display: inline-block;
}
.cta-final h2 .oh::after {
  content: "";
  position: absolute;
  left: -10%; right: -10%; top: -10%; bottom: -10%;
  border: 2px solid var(--coral);
  border-radius: 50%;
  transform: rotate(-4deg);
}
.cta-final p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 auto 56px;
  line-height: 1.6;
  position: relative; z-index: 2;
}
.cta-final .cta-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; position: relative; z-index: 2; }

/* ============================================================
   PAGE-SPECIFIC: Timeline (Nosotros)
============================================================ */
.timeline { padding: 180px 0; }
.timeline-head { text-align: center; margin-bottom: 100px; }
.timeline-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -.025em;
  max-width: 18ch;
  margin: 0 auto 20px;
}
.timeline-head h2 em { color: var(--coral); font-weight: 500; }
.timeline-list {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}
.timeline-list::before {
  content: "";
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, var(--coral) 10%, var(--coral) 90%, transparent 100%);
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 60px;
}
.timeline-item .year {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--coral);
  font-weight: 500;
  text-align: right;
  line-height: 1;
}
/* Asignación EXPLÍCITA por grid-column (más confiable que `order` con grid auto-placement).
   Por defecto (impares): year → col 1, marker → col 2, body → col 3 */
.timeline-item .year   { grid-column: 1; text-align: right; }
.timeline-item .marker { grid-column: 2; }
.timeline-item .body   { grid-column: 3; text-align: left; }
/* Pares: body ← col 1, marker ← col 2, year ← col 3 */
.timeline-item:nth-child(even) .body   { grid-column: 1; text-align: right; }
.timeline-item:nth-child(even) .marker { grid-column: 2; }
.timeline-item:nth-child(even) .year   { grid-column: 3; text-align: left; }
.timeline-item .marker {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--coral);
  margin: 8px auto;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--cream);
}
.section--warm .timeline-item .marker { box-shadow: 0 0 0 6px var(--cream-warm); }
.timeline-item .body h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.timeline-item .body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
@media (max-width: 700px) {
  .timeline-list::before { left: 24px; }
  .timeline-item { grid-template-columns: 60px 1fr; gap: 16px; }
  .timeline-item .year,
  .timeline-item:nth-child(even) .year { grid-column: 2; text-align: left; font-size: 22px; margin-bottom: 4px; }
  .timeline-item .body,
  .timeline-item:nth-child(even) .body { grid-column: 2; text-align: left; }
  .timeline-item .marker,
  .timeline-item:nth-child(even) .marker { grid-column: 1; margin: 4px 0 0; }
}

/* ============================================================
   PAGE-SPECIFIC: Team grid (Nosotros)
============================================================ */
.team { padding: 180px 0; }
.team-head { text-align: center; margin-bottom: 80px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.team-card {
  display: flex; flex-direction: column;
  gap: 16px;
}
.team-photo {
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.team-photo .face {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 96px;
  font-weight: 400;
  color: var(--cream);
}
.team-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.01em;
}
.team-role { font-size: 13px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .12em; }
.team-bio { font-size: 14px; color: var(--ink-2); line-height: 1.55; margin-top: 6px; }

/* ============================================================
   PAGE-SPECIFIC: Process steps (Marca Comercial / Personal)
============================================================ */
.process { padding: 180px 0; }
.process-head { margin-bottom: 80px; max-width: 800px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step {
  padding: 32px 24px;
  background: var(--paper);
  border-radius: 16px;
  position: relative;
  border: 1px solid rgba(26,14,20,.08);
}
.process-step .step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--coral);
  font-weight: 500;
  margin-bottom: 18px;
  display: block;
}
.process-step h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.process-step p { font-size: 14px; line-height: 1.55; color: var(--ink-soft); }
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .process-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PAGE-SPECIFIC: Pricing cards (Marca Comercial)
============================================================ */
.pricing { padding: 180px 0; }
.pricing-head { text-align: center; margin-bottom: 80px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  padding: 48px 36px;
  background: var(--paper);
  border-radius: 24px;
  border: 1px solid rgba(26,14,20,.08);
  display: flex; flex-direction: column;
  position: relative;
}
.price-card.featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.price-card.featured .feat-tag {
  position: absolute;
  top: -12px; right: 24px;
  background: var(--coral);
  color: var(--cream);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.price-card .level {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--coral);
  margin-bottom: 14px;
  font-weight: 500;
}
.price-card .name {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -.01em;
  margin-bottom: 12px;
}
.price-card .desc { font-size: 14px; color: var(--ink-soft); line-height: 1.55; margin-bottom: 32px; }
.price-card.featured .desc { color: rgba(255,248,245,.7); }
.price-card .amount {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.02em;
  margin-bottom: 6px;
}
.price-card .amount .currency { font-size: .55em; vertical-align: top; margin-right: 4px; color: var(--coral); font-style: italic; }
.price-card .amount-note { font-size: 12px; color: var(--ink-soft); margin-bottom: 32px; }
.price-card.featured .amount-note { color: rgba(255,248,245,.55); }
.price-card ul {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.price-card li {
  font-size: 14px;
  line-height: 1.55;
  padding: 10px 0;
  display: flex; gap: 10px;
}
.price-card li::before { content: "✓"; color: var(--coral); font-weight: 700; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PAGE-SPECIFIC: Product grid (Tienda)
============================================================ */
.shop { padding: 180px 0; }
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.product-card {
  background: var(--paper);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(26,14,20,.08);
  display: flex; flex-direction: column;
  transition: border-color .3s var(--ease);
}
.product-card:hover { border-color: var(--coral); }
.product-cover {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.product-cover .label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  color: var(--cream);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 32px);
  text-align: center;
  padding: 0 20px;
  z-index: 1;
}
.product-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.product-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--coral);
  margin-bottom: 8px;
  font-weight: 500;
}
.product-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.01em;
  margin-bottom: 10px;
  color: var(--ink);
}
.product-card .desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 22px;
  flex: 1;
}
.product-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(26,14,20,.08);
}
.product-price {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
}
.product-price .currency { color: var(--coral); font-style: italic; font-size: 0.7em; vertical-align: top; margin-right: 2px; }
.product-buy {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  transition: background .3s var(--ease);
}
.product-buy:hover { background: var(--coral); }
@media (max-width: 900px) { .shop-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .shop-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PAGE-SPECIFIC: Contact form
============================================================ */
.contact { padding: 180px 0 160px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -.025em;
  margin-bottom: 28px;
}
.contact-info h2 em { color: var(--coral); font-weight: 500; font-style: italic; }
.contact-info p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 40px;
  max-width: 40ch;
}
.contact-list { list-style: none; }
.contact-item {
  display: flex; gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(26,14,20,.1);
  align-items: center;
}
.contact-item:last-child { border-bottom: 1px solid rgba(26,14,20,.1); }
.contact-item .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--coral-mist);
  color: var(--coral);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item .icon svg { width: 18px; height: 18px; fill: currentColor; }
.contact-item .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.contact-item .value {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
}
.contact-item:hover .value { color: var(--coral); }

.contact-form {
  background: var(--paper);
  padding: 48px;
  border-radius: 24px;
  border: 1px solid rgba(26,14,20,.08);
}
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid rgba(26,14,20,.1);
  border-radius: 12px;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s var(--ease), background .2s var(--ease);
  cursor: none;
}
@media (max-width: 900px) { .form-input, .form-select, .form-textarea { cursor: text; } }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: var(--paper);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%;
  padding: 18px 28px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  cursor: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .3s var(--ease);
}
@media (max-width: 900px) { .form-submit { cursor: pointer; } }
.form-submit:hover { background: var(--coral); }
.form-submit::after { content: "→"; transition: transform .3s var(--ease); }
.form-submit:hover::after { transform: translateX(4px); }
.form-status { margin-top: 16px; text-align: center; font-size: 14px; font-weight: 500; line-height: 1.4; }
.form-status:empty { display: none; }
.form-status.is-sending { color: var(--ink-soft); }
.form-status.is-ok { color: #1c7c46; }
.form-status.is-error { color: #c0392b; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-form { padding: 32px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE-SPECIFIC: FAQ
============================================================ */
.faq { padding: 180px 0; }
.faq-head { text-align: center; margin-bottom: 80px; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid rgba(26,14,20,.1);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(26,14,20,.1); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.01em;
  padding: 8px 0;
  cursor: none;
}
@media (max-width: 900px) { .faq-q { cursor: pointer; } }
.faq-q .plus {
  font-size: 24px;
  color: var(--coral);
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p {
  padding-top: 16px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: calc(var(--radius) * -1);
  z-index: 12;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 60px;
  margin-bottom: 80px;
  position: relative; z-index: 1;
}
.footer-logo {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  color: var(--cream);
  margin-bottom: 28px;
  display: inline-flex; align-items: baseline; gap: 2px;
}
.footer-logo .oh {
  color: var(--coral); font-style: normal; font-weight: 700;
  font-family: var(--sans); letter-spacing: -.04em;
}
.footer-logo sup { font-size: .35em; color: var(--coral); font-family: var(--sans); font-style: normal; }
.footer-logo img { height: 46px; width: auto; display: block; }
.footer-brand p {
  font-size: 14px; line-height: 1.6;
  color: rgba(255,248,245,.6);
  max-width: 36ch;
}
.footer-col h5 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--coral);
  margin-bottom: 22px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; font-size: 14px; }
.footer-col li a {
  color: rgba(255,248,245,.7);
  transition: color .2s var(--ease);
}
.footer-col li a:hover { color: var(--coral); }
.footer-contact .mail {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 18px;
  display: block;
}
.footer-contact .mail:hover { color: var(--coral); }
.footer-contact .addr {
  font-size: 13px;
  color: rgba(255,248,245,.55);
  line-height: 1.55;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,248,245,.18);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600;
  color: rgba(255,248,245,.8);
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.footer-social a:hover { background: var(--coral); border-color: var(--coral); color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(255,248,245,.12);
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 12px;
  color: rgba(255,248,245,.5);
  position: relative; z-index: 1;
}
.footer-bottom .links { display: flex; gap: 24px; }
.footer-bottom .links a:hover { color: var(--coral); }
.footer-monogram {
  position: absolute;
  bottom: -10%; left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-style: italic;
  font-size: 32vw;
  line-height: .8;
  color: rgba(164,18,62,.05);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; }
  .footer-contact { grid-column: span 2; }
}

/* ============================================================
   SCROLL ANIMATIONS — BIDIRECTIONAL
============================================================ */
[data-anim] {
  opacity: 0;
  will-change: transform, opacity;
}
[data-anim="fade-up"], [data-anim="fade-scale"] {
  transform: translate3d(0, 60px, 0);
}
[data-anim="heading-rise"], [data-anim="mega-pinned"] {
  transform: translate3d(0, 70px, 0) scale(0.9);
}
[data-anim="slide-left"]  { transform: translate3d(-80px, 0, 0); }
[data-anim="slide-right"] { transform: translate3d(80px, 0, 0); }
[data-anim="image-reveal"] {
  clip-path: inset(0 0 100% 0);
  transform: translate3d(0, 60px, 0) scale(1.1);
}
[data-anim="rotate-in"] { transform: translate3d(0, 50px, 0) rotate(-6deg); }

.split-words { display: inline; }
.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: inherit;
  padding-bottom: .1em;
  margin-bottom: -.1em;
}
.word {
  display: inline-block;
  transform: translateY(105%);
  opacity: 0;
  will-change: transform, opacity;
}

.scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral) 0%, var(--magenta) 100%);
  width: 0;
  z-index: 199;
}

@media (prefers-reduced-motion: reduce) {
  [data-anim] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .word { opacity: 1 !important; transform: none !important; }
  .brand-stage { animation: none !important; opacity: 1 !important; }
  .marquee-track { animation: none !important; }
  .cursor-blob { display: none; }
  body { cursor: auto; }
}

/* ============================================================
   FIX BATCH · Image placeholders, big-quote 2-col,
   service featured, sticky card-stack
============================================================ */

/* ---------- IMAGE PLACEHOLDER ---------- */
.image-placeholder {
  position: relative;
  border-radius: 16px;
  border: 2px dashed var(--coral);
  background: linear-gradient(135deg, var(--coral-mist) 0%, var(--coral-tint) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 32px 24px;
  color: var(--magenta);
  font-family: var(--serif);
  min-height: 320px;
  overflow: hidden;
  isolation: isolate;
}
.image-placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg,
      transparent, transparent 14px,
      rgba(164, 18, 62, 0.07) 14px, rgba(164, 18, 62, 0.07) 28px);
  pointer-events: none;
  z-index: -1;
}
.image-placeholder .ip-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--coral);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 12px 30px -10px rgba(124, 12, 44, .35);
}
.image-placeholder .ip-icon svg { width: 30px; height: 30px; fill: var(--cream); }
.image-placeholder .ip-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .25em;
  font-family: var(--sans);
  color: var(--coral);
  margin-bottom: 6px;
  font-weight: 600;
}
.image-placeholder .ip-name {
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  color: var(--ink);
  line-height: 1.2;
  max-width: 22ch;
}
.image-placeholder .ip-hint {
  margin-top: 14px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: .04em;
}
.section--dark .image-placeholder {
  background: linear-gradient(135deg, rgba(164,18,62,.1) 0%, rgba(124,12,44,.18) 100%);
  border-color: var(--coral-soft);
}
.section--dark .image-placeholder::before {
  background: repeating-linear-gradient(45deg,
    transparent, transparent 14px,
    rgba(255, 143, 163, 0.07) 14px, rgba(255, 143, 163, 0.07) 28px);
}
.section--dark .image-placeholder .ip-name { color: var(--cream); }
.section--dark .image-placeholder .ip-hint { color: rgba(255,248,245,.55); }
.image-placeholder.tall { min-height: 480px; }
.image-placeholder.wide { min-height: 220px; aspect-ratio: 16/9; }

/* ---------- BIG QUOTE 2-COL with sticky visual ---------- */
.big-quote-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}
.big-quote-grid .big-quote-visual {
  position: sticky;
  top: 120px;
}
.big-quote-grid .big-quote-visual .image-placeholder { min-height: 420px; }
.big-quote .closing { margin-top: 64px; }
@media (max-width: 900px) {
  .big-quote-grid { grid-template-columns: 1fr; gap: 40px; }
  .big-quote-grid .big-quote-visual { position: static; }
}

/* ---------- SERVICE CARD FEATURED (autohighlight) ---------- */
.service-card.featured {
  background: var(--coral);
  color: var(--cream);
  position: relative;
}
.service-card.featured::after {
  content: "Destacado";
  position: absolute;
  top: 20px; right: 20px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}
.service-card.featured h3,
.service-card.featured .desc,
.service-card.featured li,
.service-card.featured .service-num { color: var(--cream); }
.service-card.featured .service-num { opacity: .9; }
.service-card.featured .desc { color: rgba(255,248,245,.88); }
.service-card.featured li { border-top-color: rgba(255,248,245,.25); }
.service-card.featured li::before { color: var(--cream); }
/* Suave pulso de hint para indicar que las tarjetas son interactivas */
@keyframes card-breathe {
  0%, 100% { box-shadow: 0 0 0 0 rgba(164, 18, 62, 0); }
  50%      { box-shadow: 0 0 0 12px rgba(164, 18, 62, .08); }
}
.service-card.featured { animation: card-breathe 3.5s ease-in-out infinite; }

/* ---------- STICKY CARD-STACK · re-implementado ----------
   Cada sección sticky ocupa MÍNIMO 100vh para que el contenido SIEMPRE quepa.
   Cuando llegas, se queda inmóvil y la siguiente sube encima como tarjeta.
   En móvil compactamos: padding más chico, items más densos, sin elementos opcionales. */
.section--sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section--sticky > .container {
  width: 100%;
}

/* Big-quote sticky: 2-col compacto que cabe en 100vh */
.big-quote.section--sticky {
  padding: 70px 0 60px;
}
.big-quote.section--sticky h2 {
  font-size: clamp(36px, 4.8vw, 76px);
  margin-bottom: 28px;
}
.big-quote.section--sticky .lead {
  font-size: clamp(20px, 2.2vw, 30px);
  margin-bottom: 32px;
}
.big-quote.section--sticky ul { margin-top: 28px; }
.big-quote.section--sticky li {
  font-size: 15px;
  padding: 12px 0;
  gap: 18px;
}
.big-quote.section--sticky .closing {
  font-size: clamp(22px, 2.6vw, 36px);
  margin-top: 36px;
}
.big-quote-grid .big-quote-visual .image-placeholder { min-height: 360px; }

/* Manifesto/prose sticky: layout horizontal, aside a un lado del prose */
.prose-section.section--sticky {
  padding: 70px 0 60px;
}
.prose-section.section--sticky h2 {
  font-size: clamp(40px, 5.5vw, 80px);
  margin-bottom: 40px;
}
.prose-section.section--sticky .prose-aside {
  font-size: 16px;
  position: relative;
  top: 0;
}
.prose-section.section--sticky .prose-text p {
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 16px;
}
.prose-section.section--sticky .prose-text .closing {
  font-size: 22px;
  margin-top: 24px;
}
.prose-section.section--sticky .prose-visual { display: none; } /* hide oversize visual */

/* MÓVIL: mantener sticky PERO compactar el contenido para que quepa en 100vh */
@media (max-width: 900px) {
  /* Sticky sigue activo en mobile — los estilos base ya lo aplican */

  /* Big-quote: compactación agresiva mobile */
  .big-quote.section--sticky {
    padding: 50px 0 40px;
  }
  .big-quote.section--sticky h2 {
    font-size: clamp(28px, 8vw, 40px);
    margin-bottom: 14px;
  }
  .big-quote.section--sticky .lead {
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1.3;
    margin-bottom: 18px;
  }
  .big-quote.section--sticky ul { margin-top: 18px; }
  .big-quote.section--sticky li {
    font-size: 13px;
    line-height: 1.4;
    padding: 7px 0;
    gap: 10px;
  }
  /* En mobile sticky, mostrar solo los primeros 3 items para que entre todo */
  .big-quote.section--sticky li:nth-child(n+4) { display: none; }
  .big-quote.section--sticky .closing {
    font-size: 17px;
    margin-top: 18px;
  }
  .big-quote.section--sticky .big-quote-visual { display: none; }
  .big-quote-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Prose-section (manifesto): compactación */
  .prose-section.section--sticky {
    padding: 50px 0 40px;
  }
  .prose-section.section--sticky h2 {
    font-size: clamp(32px, 9vw, 50px);
    margin-bottom: 20px;
  }
  .prose-section.section--sticky .prose-aside {
    font-size: 14px;
    padding-left: 16px;
    margin-bottom: 16px;
  }
  .prose-section.section--sticky .prose-text p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  /* Mostrar solo primeros 2 párrafos + closing en mobile sticky */
  .prose-section.section--sticky .prose-text p:nth-of-type(n+3):not(.closing) {
    display: none;
  }
  .prose-section.section--sticky .prose-text .closing {
    font-size: 16px;
    margin-top: 14px;
  }
  .prose-section.section--sticky .prose-visual { display: none; }
}

/* En pantallas más cortas verticalmente (laptops <750px), también desactivar sticky
   para evitar contenido cortado */
@media (max-height: 740px) {
  .section--sticky {
    position: relative;
    top: auto;
    min-height: auto;
    display: block;
  }
}

/* ---------- MANIFESTO restructure: add right-side visual placeholder slot ---------- */
.prose-section .container { position: relative; }
.prose-section .prose-visual {
  margin-top: 60px;
  max-width: 100%;
}
.prose-section .prose-visual .image-placeholder { min-height: 280px; }

/* ---------- SECTION HEADS · less empty space ---------- */
.services-head { margin-bottom: 64px; }
.prose-section h2 { margin-bottom: 56px; }


/* ============================================================
   FIX BATCH 2 · Enhanced card-stack visual (sustituye al sticky)
============================================================ */

/* Sombra arriba SOLO en .section--card (no en todas). Resalta el card-stack visual
   en las transiciones clave sin saturar las demás secciones. */
.section--card:not(:first-of-type) {
  box-shadow: 0 -18px 44px -16px rgba(26, 14, 20, 0.22);
}
.section.section--dark.section--card:not(:first-of-type) {
  box-shadow: 0 -22px 56px -20px rgba(0, 0, 0, 0.58);
}
.section.section--coral.section--card:not(:first-of-type) {
  box-shadow: 0 -18px 44px -16px rgba(164, 18, 62, 0.38);
}

/* Reducir padding excesivo en secciones largas para que la página no sea eterna */
.prose-section { padding: 140px 0 120px; }
.services { padding: 140px 0 120px; }
.viral { padding: 140px 0 120px; }
.portfolio { padding: 140px 0 120px; }
.big-quote { padding: 140px 0 120px; }
.testimonials { padding: 140px 0 120px; }
.cta-final { padding: 160px 0 140px; }
.timeline { padding: 140px 0 120px; }
.team { padding: 140px 0 120px; }
.process { padding: 140px 0 120px; }
.pricing { padding: 140px 0 120px; }
.shop { padding: 140px 0 120px; }
.contact { padding: 140px 0 120px; }
.faq { padding: 140px 0 120px; }

@media (max-width: 700px) {
  .prose-section, .services, .viral, .portfolio, .big-quote, .testimonials,
  .timeline, .team, .process, .pricing, .shop, .contact, .faq {
    padding: 90px 0 80px;
  }
  .cta-final { padding: 110px 0 100px; }
}

/* Acento coral pequeño arriba — solo en cards oscuras explícitas */
.section.section--dark.section--card:not(:first-of-type)::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 24px;
  transform: translateX(-50%);
  width: 48px;
  height: 4px;
  background: var(--coral);
  border-radius: 999px;
  opacity: 0.7;
  z-index: 5;
  pointer-events: none;
}
.section.section--dark.section--card.prose-section::before { display: none; }
.section.section--dark.section--card.big-quote::before { display: none; }


/* ============================================================
   MOBILE MENU — full screen overlay impresionante
   Aparece al tocar .nav-burger en mobile (<=900px).
   Slide-down + stagger en links + "OH" gigante decorativo + glow coral.
============================================================ */

/* Asegurar que el burger es visible siempre en mobile (no esperar docked-ready) */
@media (max-width: 900px) {
  .nav-burger { opacity: 1 !important; }
}

/* Burger → spans animados que morfean a X cuando menú abierto */
.nav-burger { position: relative; z-index: 350; }
.nav-burger .bar-stack {
  position: relative;
  width: 18px; height: 12px;
  display: block;
}
.nav-burger .bar-stack span {
  position: absolute;
  left: 0; right: 0;
  height: 1.6px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .4s cubic-bezier(.7,0,.3,1), opacity .25s var(--ease);
}
.nav-burger .bar-stack span:nth-child(1) { top: 0; }
.nav-burger .bar-stack span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-burger .bar-stack span:nth-child(3) { bottom: 0; }

body.menu-open .nav-burger {
  background: rgba(255, 248, 245, 0.1) !important;
  color: var(--cream) !important;
}
body.menu-open .nav-burger .bar-stack span:nth-child(1) {
  top: 50%; transform: translateY(-50%) rotate(45deg);
}
body.menu-open .nav-burger .bar-stack span:nth-child(2) { opacity: 0; transform: translateY(-50%) scaleX(0); }
body.menu-open .nav-burger .bar-stack span:nth-child(3) {
  bottom: 50%; transform: translateY(50%) rotate(-45deg);
}
/* Nav transparente cuando el menú está abierto para que el dark del menu se vea */
body.menu-open .nav {
  background: transparent !important;
  backdrop-filter: none !important;
  border-bottom-color: transparent !important;
  z-index: 350;  /* arriba del menu para que el burger sea clickeable */
}
body.menu-open { overflow: hidden; }

/* Overlay full-screen */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  padding: 28px var(--gutter) 36px;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform .65s cubic-bezier(.7,0,.3,1), visibility 0s linear .65s;
  overflow: hidden;
}
.mobile-menu.open {
  transform: translateY(0);
  visibility: visible;
  transition: transform .65s cubic-bezier(.7,0,.3,1), visibility 0s linear 0s;
}

/* "OH" gigante decorativo */
.mobile-menu::before {
  content: "OH";
  position: absolute;
  bottom: -8%; right: -10%;
  font-family: var(--serif);
  font-style: italic; font-weight: 700;
  font-size: 75vw;
  color: rgba(164, 18, 62, 0.07);
  line-height: 0.8;
  letter-spacing: -0.05em;
  pointer-events: none;
  z-index: 0;
}
/* Glow coral abajo */
.mobile-menu::after {
  content: "";
  position: absolute;
  bottom: -250px; left: -150px; right: -150px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(164, 18, 62, 0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Top: logo */
.mm-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 24px;
  border-bottom: 1px solid rgba(255, 248, 245, 0.08);
  position: relative; z-index: 2;
  opacity: 0; transform: translateY(-12px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.mobile-menu.open .mm-top { opacity: 1; transform: translateY(0); transition-delay: .12s; }
.mm-close { appearance: none; background: transparent; border: 0; padding: 0; cursor: pointer; width: 46px; height: 46px; display: grid; place-items: center; color: var(--cream); transition: color .25s var(--ease), transform .25s var(--ease); }
.mm-close svg { width: 26px; height: 26px; }
.mm-close:hover { color: var(--coral); transform: rotate(90deg); }
.mm-brand {
  font-family: var(--serif);
  font-style: italic; font-weight: 500;
  font-size: 28px;
  color: var(--cream);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.mm-brand .oh {
  color: var(--coral);
  font-style: normal; font-weight: 700;
  font-family: var(--sans);
  letter-spacing: -0.05em;
}
.mm-brand sup {
  font-size: .32em;
  color: var(--coral);
  font-family: var(--sans);
  font-style: normal;
  vertical-align: super;
}
.mm-brand img { height: 40px; width: auto; display: block; }

/* Nav central */
.mm-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  padding: 18px 0;
  position: relative; z-index: 1;
}
.mm-nav-link {
  font-family: var(--serif);
  font-style: italic; font-weight: 400;
  font-size: clamp(28px, 8vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--cream);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 248, 245, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  transform: translateY(40px);
  opacity: 0;
  transition: transform .55s var(--ease-out), opacity .55s var(--ease-out), color .2s var(--ease);
}
.mm-nav-link .arrow {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.5em;
  color: var(--coral);
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.mm-nav-link.active, .mm-nav-link:hover { color: var(--coral); }
.mm-nav-link.active .arrow, .mm-nav-link:hover .arrow { opacity: 1; transform: translateX(0); }

.mobile-menu.open .mm-nav-link { transform: translateY(0); opacity: 1; }
.mobile-menu.open .mm-nav-link:nth-child(1) { transition-delay: .20s; }
.mobile-menu.open .mm-nav-link:nth-child(2) { transition-delay: .27s; }
.mobile-menu.open .mm-nav-link:nth-child(3) { transition-delay: .34s; }
.mobile-menu.open .mm-nav-link:nth-child(4) { transition-delay: .41s; }
.mobile-menu.open .mm-nav-link:nth-child(5) { transition-delay: .48s; }
.mobile-menu.open .mm-nav-link:nth-child(6) { transition-delay: .55s; }
.mobile-menu.open .mm-nav-link:nth-child(7) { transition-delay: .62s; }

/* Footer del menú */
.mm-footer {
  border-top: 1px solid rgba(255, 248, 245, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative; z-index: 1;
  opacity: 0; transform: translateY(16px);
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-out);
}
.mobile-menu.open .mm-footer { opacity: 1; transform: translateY(0); transition-delay: .78s; }
.mm-mail {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--cream);
  text-decoration: none;
  transition: color .2s var(--ease);
}
.mm-mail:hover { color: var(--coral); }
.mm-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--coral);
  color: var(--cream);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--sans);
  font-style: normal;
  text-decoration: none;
  transition: background .25s var(--ease);
}
.mm-cta:hover { background: var(--coral-soft); }

/* En pantallas muy bajas el padding bajo extra */
@media (max-height: 600px) {
  .mm-nav-link { font-size: clamp(22px, 6vw, 32px); padding: 8px 0; }
  .mm-top { padding: 8px 0 14px; }
}

/* ============================================================
   FOOTER — idéntico al de Método VIRAL / Home (paleta vino)
============================================================ */
.footer { background:#7C0C2C; color:#F2CCD0; padding:clamp(60px,8vw,90px) 0 36px; position:relative; overflow:hidden; border-radius:0; margin-top:0; z-index:1; }
.footer-grid { grid-template-columns:1.6fr 1.2fr; gap:40px; margin-bottom:54px; }
.footer-logo { margin-bottom:16px; }
.footer-logo img { height:44px; width:auto; display:block; }
.footer-brand p { font-size:.92rem; max-width:300px; opacity:.85; color:#F2CCD0; line-height:1.6; }
.footer-col h5 { font-family:var(--sans); font-size:.72rem; letter-spacing:.16em; text-transform:uppercase; color:#E8A6AB; margin-bottom:18px; font-weight:600; }
.footer-contact .mail { display:block; font-size:1.02rem; color:#FBF4EE; margin-bottom:14px; }
.footer-contact .addr { font-size:.86rem; opacity:.8; margin-bottom:18px; color:#F2CCD0; }
.footer-social { display:flex; gap:12px; }
.footer-social a { width:38px; height:38px; border:1px solid rgba(255,255,255,.28); border-radius:50%; display:grid; place-items:center; font-size:.72rem; letter-spacing:.04em; color:#F2CCD0; transition:.3s var(--ease); }
.footer-social a:hover { background:#FBF4EE; color:#A4123E; border-color:#FBF4EE; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.28); padding-top:24px; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size:.8rem; opacity:.78; color:#F2CCD0; }
.footer-monogram { position:absolute; right:-2%; bottom:-18%; font-family:'Parisienne',cursive; font-size:26vw; color:rgba(255,255,255,.05); pointer-events:none; line-height:1; }
@media (max-width:600px){ .footer-grid { grid-template-columns:1fr; } }
