/* =====================================================
   SOSO PERALTA — Portafolio 2026
   style.css
   ===================================================== */

/* ============ TOKENS ============ */
:root {
  --bg:          #080807;
  --bg-paper:    #efece5;
  --paper:       #f2efe9;
  --paper-72:    rgba(242,239,233,.72);
  --paper-55:    rgba(242,239,233,.55);
  --paper-32:    rgba(242,239,233,.32);
  --paper-14:    rgba(242,239,233,.14);
  --paper-08:    rgba(242,239,233,.08);

  --wine:        #6E1423;
  --wine-hi:     #8B1E3F;
  --wine-deep:   #4a0d18;

  --ff-display:  'Great Vibes', 'Apple Chancery', cursive;
  --ff-sans:     'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --ff-sub:      'Jost', 'DM Sans', sans-serif;

  --pad:         clamp(20px, 5vw, 88px);
  --gap-section: clamp(80px, 12vw, 180px);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--bg);
  color: var(--paper);
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* ============ ACCESIBILIDAD ============ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 999;
  background: var(--wine-hi);
  color: var(--paper);
  padding: 8px 16px;
  font-family: var(--ff-sub);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: top .2s ease;
}
.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--wine-hi);
  outline-offset: 3px;
}

/* ============ TIPOGRAFÍA ============ */
.display {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-shadow: 0 0 1px rgba(242,239,233,.18);
  -webkit-font-smoothing: subpixel-antialiased;
}
.display.on-paper {
  text-shadow: 0 0 1px rgba(10,10,8,.12);
  color: #15110d;
}
.display.on-wine {
  color: var(--wine-hi);
  text-shadow: 0 0 1px rgba(110,20,35,.35);
}

.eyebrow {
  font-family: var(--ff-sub);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--paper-55);
}
.eyebrow.wine { color: var(--wine-hi); }

.body-l { font-size: 17px; line-height: 1.75; color: var(--paper-72); font-weight: 300; }
.body-m { font-size: 14px; line-height: 1.7;  color: var(--paper-55); }
.label  { font-family: var(--ff-sub); font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase; }

/* ============ LAYOUT ============ */
.container  { max-width: 1440px; margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.full       { width: 100%; }
section     { position: relative; }
.divider    { height: 1px; background: var(--paper-14); }
.divider.wine { background: var(--wine); height: 1px; opacity: .55; }
.section-pad-y { padding-top: var(--gap-section); padding-bottom: var(--gap-section); }

/* ============ SECTION HEADER ============ */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--paper-08);
  margin-bottom: clamp(40px, 6vw, 88px);
}
.section-head .num {
  font-family: var(--ff-sub);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--wine-hi);
}
.section-head .num em { font-style: normal; color: var(--paper-32); margin-right: 10px; }
.section-head .title  { font-size: clamp(52px, 8vw, 132px); line-height: 0.95; }
.section-head .right  {
  font-family: var(--ff-sub);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--paper-32);
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  padding: 22px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  transition: background .45s ease, backdrop-filter .45s ease, padding .35s ease, border-color .45s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,8,7,.82);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom-color: var(--paper-08);
}
.nav__brand {
  font-family: var(--ff-sub);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--paper);
}
.nav__brand .dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--wine-hi);
  border-radius: 50%;
  margin: 0 10px 2px;
  vertical-align: middle;
}
.nav__menu { display: flex; gap: 38px; align-items: center; }
.nav__menu a {
  font-family: var(--ff-sub);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--paper-72);
  position: relative;
  padding: 4px 0;
  transition: color .25s ease;
}
.nav__menu a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--wine-hi);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.5,.1,.2,1);
}
.nav__menu a:hover { color: var(--paper); }
.nav__menu a:hover::after,
.nav__menu a.active::after { transform: scaleX(1); }

.nav__burger {
  display: none;
  width: 28px; height: 18px;
  position: relative;
  padding: 0;
}
.nav__burger span {
  position: absolute; left: 0; right: 0;
  height: 1px;
  background: var(--paper);
  transition: transform .35s cubic-bezier(.5,.1,.2,1), opacity .25s ease;
}
.nav__burger span:nth-child(1) { top: 2px; }
.nav__burger span:nth-child(2) { top: 8px; }
.nav__burger span:nth-child(3) { top: 14px; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============ MOBILE MENU ============ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 70;
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s ease, visibility .4s ease;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu nav {
  display: flex; flex-direction: column; align-items: center; gap: 32px;
}
.mobile-menu a {
  font-family: var(--ff-display);
  font-size: clamp(40px, 10vw, 60px);
  color: var(--paper);
  line-height: 1;
  transition: color .2s ease;
}
.mobile-menu a:hover { color: var(--wine-hi); }
.mobile-menu .meta {
  position: absolute; bottom: 40px; left: 0; right: 0;
  text-align: center;
  font-family: var(--ff-sub);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--paper-32);
}

/* ============ HERO ============ */
.hero {
  height: 100svh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--paper);
}
.hero__poster {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero__poster video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.02);
  transform: scale(1.06);
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(8,8,7,.15) 0%, rgba(8,8,7,.52) 55%, rgba(8,8,7,.92) 100%),
    linear-gradient(180deg, rgba(8,8,7,.55) 0%, rgba(8,8,7,0) 28%, rgba(8,8,7,0) 58%, rgba(8,8,7,.88) 100%);
}
.hero__grain {
  position: absolute; inset: 0;
  opacity: .13;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.hero__inner {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 var(--pad);
}
.hero__kicker {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.hero__kicker .line { width: 36px; height: 1px; background: var(--wine-hi); }
.hero__display {
  font-size: clamp(64px, 10vw, 160px);
  line-height: 0.92;
}
.hero__display .name {
  display: block;
  font-size: clamp(88px, 13.5vw, 210px);
  margin-top: -0.12em;
}
.hero__meta {
  margin-top: 38px;
  display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap;
  font-family: var(--ff-sub); font-size: 11px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--paper-55);
}
.hero__meta .pill {
  padding: 7px 14px;
  border: 1px solid var(--paper-14);
  border-radius: 2px;
  color: var(--paper-72);
}
.hero__meta .dot { width: 4px; height: 4px; background: var(--wine-hi); border-radius: 50%; }

.hero__sound {
  position: absolute; right: var(--pad); bottom: 28px; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ff-sub); font-size: 10px; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--paper-32);
  border: 1px solid var(--paper-14);
  border-radius: 2px;
  padding: 7px 14px;
  transition: color .3s ease, border-color .3s ease;
}
.hero__sound:hover { color: var(--paper-72); border-color: var(--paper-32); }
.hero__sound svg { width: 15px; height: 15px; flex-shrink: 0; }

.hero__scroll {
  position: absolute; left: var(--pad); bottom: 28px; z-index: 3;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--ff-sub); font-size: 10px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--paper-55);
}
.hero__scroll .vline {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--paper-32), transparent);
  animation: drip 2.4s ease-in-out infinite;
  transform-origin: top;
}

@keyframes drip {
  0%, 100% { transform: scaleY(0.4); }
  50%       { transform: scaleY(1); }
}

/* ============ ABOUT ============ */
.about { padding-top: var(--gap-section); padding-bottom: var(--gap-section); }
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 5.5vw, 88px);
  align-items: start;
}
.about__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.about__photo picture,
.about__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s cubic-bezier(.2,.7,.2,1);
}
.about__photo:hover img { transform: scale(1.04); }
.about__photo::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 56px; height: 1px;
  background: var(--wine-hi);
}
.about__photo .caption {
  position: absolute; left: 14px; bottom: 14px;
  font-family: var(--ff-sub);
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--paper-55);
  background: rgba(8,8,7,.5);
  padding: 4px 8px;
  border-radius: 1px;
  backdrop-filter: blur(4px);
}
.about__copy { padding-top: 12px; }
.about__copy .display {
  font-size: clamp(60px, 9vw, 148px);
  line-height: 0.94;
  margin: 18px 0 36px;
}
.about__bio p {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.85;
  color: var(--paper-72);
  margin-bottom: 1.2em;
  max-width: 56ch;
}
.about__bio p:first-child::first-letter {
  font-family: var(--ff-display);
  font-size: 3.4em; line-height: 0.9;
  float: left;
  margin: 0.12em 0.14em 0 0;
  color: var(--wine-hi);
  text-shadow: 0 0 1px rgba(139,30,63,.4);
}

.stats {
  margin-top: 52px;
  border-top: 1px solid var(--paper-14);
  border-bottom: 1px solid var(--paper-14);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.stats .stat {
  padding: 22px 16px 20px 0;
  border-right: 1px solid var(--paper-08);
}
.stats .stat:last-child { border-right: 0; padding-right: 0; }
.stats .stat .k {
  font-family: var(--ff-sub);
  font-size: 9.5px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--paper-32);
  display: block; margin-bottom: 10px;
}
.stats .stat .v {
  font-family: var(--ff-sans);
  font-weight: 400; font-size: 22px;
  color: var(--paper); letter-spacing: 0.01em;
}
.stats .stat .v small { font-size: 12px; color: var(--paper-55); font-weight: 300; margin-left: 4px; }
.stats .stat .v a {
  border-bottom: 1px solid var(--paper-14);
  padding-bottom: 2px;
  transition: color .3s ease, border-color .3s ease;
}
.stats .stat .v a:hover { color: var(--wine-hi); border-bottom-color: var(--wine-hi); }

.signature {
  margin-top: 36px;
  display: flex; align-items: baseline; gap: 22px;
  font-family: var(--ff-sub);
  font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--paper-32);
}
.signature .sig {
  font-family: var(--ff-display);
  font-size: 36px; line-height: 1;
  color: var(--paper);
  text-shadow: 0 0 1px rgba(242,239,233,.18);
}

/* ============ POLAROID ============ */
.polaroid {
  background: var(--bg-paper);
  color: #15110d;
  padding-top: var(--gap-section);
  padding-bottom: var(--gap-section);
  position: relative;
}
.polaroid::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .055;
  mix-blend-mode: multiply;
}
.polaroid .section-head { border-bottom-color: rgba(10,10,8,.1); }
.polaroid .section-head .num  { color: var(--wine); }
.polaroid .section-head .num em { color: rgba(10,10,8,.32); }
.polaroid .section-head .right  { color: rgba(10,10,8,.42); }

.contact-sheet {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 40px);
  align-items: start;
}
.contact-sheet .pol {
  background: #fff;
  padding: 12px 12px 52px;
  box-shadow:
    0 1px 0 rgba(10,10,8,.05),
    0 14px 28px -16px rgba(10,10,8,.25),
    0 22px 60px -30px rgba(10,10,8,.32);
  position: relative;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), box-shadow .6s ease;
  will-change: transform;
}
.contact-sheet .pol:nth-child(1) { transform: rotate(-1.6deg); }
.contact-sheet .pol:nth-child(2) { transform: rotate(0.8deg) translateY(14px); }
.contact-sheet .pol:nth-child(3) { transform: rotate(-0.6deg) translateY(-6px); }
.contact-sheet .pol:nth-child(4) { transform: rotate(1.4deg); }
.contact-sheet .pol:hover {
  transform: rotate(0) translateY(-6px) scale(1.025) !important;
  box-shadow:
    0 1px 0 rgba(10,10,8,.05),
    0 24px 48px -20px rgba(10,10,8,.35),
    0 40px 80px -40px rgba(10,10,8,.4);
}
.contact-sheet .pol .img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #efece5;
  position: relative;
}
.contact-sheet .pol .img picture,
.contact-sheet .pol .img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(.97);
}
.contact-sheet .pol .info {
  position: absolute; left: 14px; right: 14px; bottom: 12px;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.contact-sheet .pol .info .name {
  font-family: var(--ff-display);
  font-size: 24px; line-height: 1;
  color: #15110d;
}
.contact-sheet .pol .info .frame {
  font-family: var(--ff-sub);
  font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(10,10,8,.42);
  text-align: right;
}

.polaroid__footer {
  margin-top: clamp(48px, 7vw, 90px);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px;
  padding-top: 26px;
  border-top: 1px solid rgba(10,10,8,.1);
}
.polaroid__footer .l,
.polaroid__footer .r {
  font-family: var(--ff-sub);
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
}
.polaroid__footer .l { color: rgba(10,10,8,.55); }
.polaroid__footer .r { color: rgba(10,10,8,.42); }

/* ============ EDITORIALES ============ */
.editorial {
  padding-top: var(--gap-section);
  padding-bottom: var(--gap-section);
  position: relative;
  background:
    radial-gradient(ellipse at 80% 0%,   rgba(110,20,35,.2),  transparent 55%),
    radial-gradient(ellipse at 0%  80%,  rgba(74,13,24,.16),  transparent 50%),
    var(--bg);
}
.editorial .section-head { border-bottom-color: var(--wine); }

.ed-meta {
  display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
  margin-bottom: clamp(28px, 4.5vw, 60px);
  font-family: var(--ff-sub);
  font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--paper-55);
}
.ed-meta .tag { color: var(--wine-hi); }
.ed-meta .ln  { flex: 1; height: 1px; background: var(--wine); opacity: .35; min-width: 40px; }

.ed-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(10px, 1.6vw, 20px);
}
.ed-cell {
  position: relative;
  overflow: hidden;
  background: #0d0d0b;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color .45s ease;
}
.ed-cell picture,
.ed-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1), filter .5s ease;
  filter: saturate(.95) contrast(1.02);
}
.ed-cell::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,7,0) 50%, rgba(8,8,7,.55) 100%),
    radial-gradient(ellipse at 50% 100%, rgba(110,20,35,0) 30%, rgba(110,20,35,.3) 80%);
  opacity: 0;
  transition: opacity .55s ease;
  pointer-events: none;
}
.ed-cell:hover { border-color: var(--wine-hi); }
.ed-cell:hover img { transform: scale(1.05); }
.ed-cell:hover::after { opacity: 1; }

.ed-cell .cap {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  display: flex; justify-content: space-between; align-items: flex-end;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
  z-index: 2;
}
.ed-cell:hover .cap { opacity: 1; transform: translateY(0); }
.ed-cell .cap .ttl {
  font-family: var(--ff-display);
  font-size: clamp(26px, 2.5vw, 40px);
  line-height: 1; color: var(--paper);
  text-shadow: 0 1px 8px rgba(8,8,7,.55);
}
.ed-cell .cap .idx {
  font-family: var(--ff-sub);
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--paper-72);
}

.ed-cell.a { grid-column: span 7; aspect-ratio: 4/5; }
.ed-cell.b { grid-column: span 5; aspect-ratio: 4/5; }
.ed-cell.c { grid-column: span 4; aspect-ratio: 4/5; }
.ed-cell.d { grid-column: span 4; aspect-ratio: 4/5; }
.ed-cell.e { grid-column: span 4; aspect-ratio: 4/5; }
.ed-cell.f { grid-column: span 5; aspect-ratio: 4/5; }
.ed-cell.g { grid-column: span 7; aspect-ratio: 4/5; }
.ed-cell.h { grid-column: span 12; aspect-ratio: 21/9; }

/* ============ VIDEOS ============ */
.videos {
  padding-top: var(--gap-section);
  padding-bottom: var(--gap-section);
  background: var(--bg);
}
.videos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.5vw, 56px);
  align-items: start;
}
.phone {
  position: relative;
  width: 100%; max-width: 300px;
  margin: 0 auto;
  aspect-ratio: 9 / 19.5;
  border-radius: 44px;
  background: linear-gradient(180deg, #1a1a18, #0c0c0a);
  padding: 9px;
  box-shadow:
    0 0 0 1px rgba(242,239,233,.06) inset,
    0 1px 0 rgba(242,239,233,.08) inset,
    0 30px 80px -30px rgba(0,0,0,.7),
    0 60px 140px -60px rgba(110,20,35,.38);
  transition: transform .6s cubic-bezier(.2,.7,.2,1), box-shadow .6s ease;
  will-change: transform;
}
.phone:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 0 1px rgba(242,239,233,.08) inset,
    0 1px 0 rgba(242,239,233,.1) inset,
    0 40px 100px -30px rgba(0,0,0,.75),
    0 80px 160px -60px rgba(110,20,35,.5);
}
.phone__screen {
  position: relative; width: 100%; height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: #0a0a08;
}
.phone__screen picture,
.phone__screen img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.78) saturate(.95);
}
.phone__notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 88px; height: 24px;
  background: #050505;
  border-radius: 14px;
  z-index: 3;
}
.phone__statusbar {
  position: absolute; top: 16px; left: 0; right: 0;
  display: flex; justify-content: space-between;
  padding: 0 26px;
  font-family: var(--ff-sub);
  font-size: 11px; font-weight: 500;
  color: #fff;
  z-index: 4;
}
.phone__play {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(8,8,7,.44);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(242,239,233,.45);
  display: grid; place-items: center;
  z-index: 3;
  transition: background .35s ease, transform .35s ease, border-color .35s ease;
}
.phone__play:hover {
  background: rgba(110,20,35,.6);
  border-color: var(--wine-hi);
  transform: translate(-50%, -50%) scale(1.1);
}
.phone__play::before {
  content: '';
  width: 0; height: 0;
  border-left: 12px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 3px;
}
.phone__caption {
  position: absolute; left: 18px; right: 18px; bottom: 18px;
  z-index: 3;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.phone__caption .ttl {
  font-family: var(--ff-display);
  font-size: 26px; line-height: 1;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}
.phone__caption .dur {
  font-family: var(--ff-sub);
  font-size: 9.5px; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.video-item .meta {
  margin-top: 26px; text-align: center;
  display: flex; justify-content: center; gap: 14px; align-items: center;
  font-family: var(--ff-sub);
  font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--paper-55);
}
.video-item .meta .dot { width: 3px; height: 3px; background: var(--wine-hi); border-radius: 50%; }

/* ============ CONTACTO ============ */
.contact {
  padding-top: var(--gap-section);
  padding-bottom: clamp(56px, 7vw, 110px);
  position: relative;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(110,20,35,.26), transparent 58%),
    var(--bg);
}
.contact__title {
  text-align: center;
  font-size: clamp(80px, 14vw, 230px);
  line-height: 0.9;
  margin-bottom: clamp(52px, 7vw, 100px);
}
.contact__title .small {
  display: block;
  font-family: var(--ff-sub);
  font-weight: 300;
  font-size: 11px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--wine-hi);
  text-shadow: none;
  margin-bottom: 24px;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(32px, 4.5vw, 72px);
  align-items: start;
  padding-top: 44px;
  border-top: 1px solid var(--paper-14);
}
.contact__col .k {
  font-family: var(--ff-sub);
  font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--paper-32);
  margin-bottom: 16px;
}
.contact__col .v {
  font-family: var(--ff-sans);
  font-size: clamp(17px, 1.7vw, 23px);
  font-weight: 300; color: var(--paper);
  line-height: 1.5; letter-spacing: 0.005em;
}
.contact__col .v a {
  border-bottom: 1px solid var(--paper-14);
  padding-bottom: 2px;
  transition: color .3s ease, border-color .3s ease;
}
.contact__col .v a:hover { color: var(--wine-hi); border-bottom-color: var(--wine-hi); }

.socials { display: flex; flex-direction: column; gap: 0; }
.socials a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid var(--paper-08);
  font-family: var(--ff-sub);
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--paper-72);
  transition: color .3s ease, padding-left .3s ease, border-color .3s ease;
}
.socials a:hover { color: var(--wine-hi); padding-left: 10px; border-bottom-color: var(--wine-hi); }
.socials a .arrow { color: var(--paper-32); transition: transform .35s ease, color .3s ease; }
.socials a:hover .arrow { transform: translate(5px, -5px); color: var(--wine-hi); }

.footer {
  margin-top: clamp(72px, 9vw, 130px);
  padding-top: 30px;
  border-top: 1px solid var(--paper-08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  font-family: var(--ff-sub);
  font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--paper-32);
}
.footer .sig {
  font-family: var(--ff-display);
  font-size: 30px;
  color: var(--paper-72);
  text-shadow: 0 0 1px rgba(242,239,233,.18);
  letter-spacing: 0;
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.1s ease, transform 1.1s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ============ TABLET (821–1100px) ============ */
@media (max-width: 1100px) {
  .contact__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 821px) and (max-width: 1100px) {
  .ed-cell.a { grid-column: span 6; }
  .ed-cell.b { grid-column: span 6; }
  .ed-cell.f { grid-column: span 6; }
  .ed-cell.g { grid-column: span 6; }
}

/* ============ MOBILE (≤820px) ============ */
@media (max-width: 820px) {
  .nav__menu  { display: none; }
  .nav__burger { display: block; }

  .about__grid { grid-template-columns: 1fr; gap: 44px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats .stat { border-right: 0; border-bottom: 1px solid var(--paper-08); }
  .stats .stat:nth-child(odd) { border-right: 1px solid var(--paper-08); }

  .contact-sheet { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .contact-sheet .pol:nth-child(1),
  .contact-sheet .pol:nth-child(2),
  .contact-sheet .pol:nth-child(3),
  .contact-sheet .pol:nth-child(4) { transform: rotate(0deg) translateY(0); }
  .contact-sheet .pol:nth-child(2n) { transform: rotate(1deg); }
  .contact-sheet .pol:nth-child(2n+1) { transform: rotate(-1deg); }

  .ed-grid { grid-template-columns: repeat(2, 1fr); }
  .ed-cell.a, .ed-cell.b, .ed-cell.c,
  .ed-cell.d, .ed-cell.e, .ed-cell.f,
  .ed-cell.g { grid-column: span 1; }
  .ed-cell.h { grid-column: span 2; aspect-ratio: 4/3; }

  .videos__grid { grid-template-columns: 1fr; gap: 52px; }
  .phone { max-width: 260px; }

  .contact__grid { grid-template-columns: 1fr; gap: 32px; }

  .hero__display .name { font-size: clamp(60px, 18vw, 110px); }
  .hero__display { font-size: clamp(44px, 13vw, 88px); }
  .hero__meta .pill { font-size: 9.5px; padding: 6px 10px; }
}

@media (max-width: 600px) {
  .section-head { flex-direction: column; gap: 16px; }
  .section-head .right { display: none; }
  .polaroid__footer { flex-direction: column; gap: 8px; text-align: center; }
  .footer { justify-content: center; text-align: center; }
  .hero__scroll { display: none; }
}

/* ============ PREFERS REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__scroll .vline { animation: none; }
  .contact-sheet .pol,
  .phone,
  .ed-cell img,
  .about__photo img,
  .contact-sheet .pol .img img {
    transition: none;
  }
  .nav,
  .nav__menu a::after,
  .socials a,
  .hero__sound,
  .mobile-menu {
    transition: none;
  }
}

/* ============ PRINT ============ */
@media print {
  .nav, .mobile-menu, .hero__scroll, .hero__sound { display: none; }
  .hero { height: auto; min-height: 0; }
  .hero__poster { display: none; }
}
