/* ============================================
   SP.AGENCY — Design System v2
   Inspirado en la presentación comercial:
   fondo oscuro texturizado, cintas de papel rasgado,
   fotos "sticker", pills sólidos, tipografía redondeada.
   ============================================ */

@font-face {
  font-family: 'Isidora Soft';
  src: url('../assets/fonts/IsidoraSoftBlack.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Paleta oficial SP.agency */
  --charcoal: #3A3940;
  --navy: #272C40;
  --blue: #30486A;
  --teal: #8EB7BB;
  --plum: #7D4B67;
  --rose: #C68C94;
  --blush: #F0DFD7;
  --white: #FFFFFF;

  /* Fondo oscuro tipo "corcho/scrapbook" */
  --bg: #17151b;
  --bg-2: #1f1c24;
  --ink: #F5EFE9;
  --muted: rgba(245,239,233,.66);
  --paper-cream: #F0DFD7;
  --paper-blue: #4a5c78;

  --font-display: 'Isidora Soft', 'Fredoka', sans-serif;
  --font-body: 'Fredoka', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 26px;
  --radius-sm: 14px;
  --ease: cubic-bezier(.22,1,.36,1);

  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 900px 550px at 12% 8%, rgba(48,72,106,.4), transparent 60%),
    radial-gradient(ellipse 800px 550px at 88% 12%, rgba(125,75,103,.28), transparent 60%),
    radial-gradient(ellipse 900px 600px at 50% 100%, rgba(142,183,187,.14), transparent 65%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  background-attachment: fixed;
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.01em;
}
h2 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
h3, h4 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
}

section { position: relative; padding: 96px 0; }
@media (max-width: 720px) { section { padding: 60px 0; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.97rem;
  padding: 15px 30px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .3s;
  white-space: nowrap;
}
.btn:active { transform: scale(.96); }

.btn-primary {
  background: var(--rose);
  color: var(--navy);
  box-shadow: 0 10px 26px rgba(198,140,148,.3);
}
.btn-primary:hover { background: var(--teal); transform: translateY(-3px) rotate(-1deg); box-shadow: 0 14px 30px rgba(142,183,187,.35); }

.btn-ghost {
  background: rgba(245,239,233,.06);
  color: var(--ink);
  border-color: rgba(245,239,233,.35);
}
.btn-ghost:hover { background: var(--ink); color: var(--navy); transform: translateY(-3px); }

.btn-light {
  background: var(--white);
  color: var(--navy);
}
.btn-light:hover { background: var(--teal); color: var(--navy); transform: translateY(-3px) rotate(1deg); }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s;
}
.navbar.scrolled {
  background: rgba(23,21,27,.82);
  backdrop-filter: blur(14px) saturate(1.2);
  padding: 12px 0;
  box-shadow: 0 6px 24px rgba(0,0,0,.3);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 40px; width: auto; transition: transform .4s var(--ease); }
.brand:hover img { transform: rotate(-8deg) scale(1.05); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 16px;
  border-radius: 100px;
  color: var(--ink);
  transition: background .3s, color .3s;
}
.nav-links a:hover { background: rgba(245,239,233,.1); }
.nav-links a.active { background: var(--rose); color: var(--navy); font-weight: 600; }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }

@media (max-width: 900px) {
  .nav-links { position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 80vw);
    background: var(--bg-2); flex-direction: column; justify-content: center; align-items: flex-start;
    gap: 4px; padding: 40px; transform: translateX(100%); transition: transform .45s var(--ease);
    box-shadow: -10px 0 40px rgba(0,0,0,.5); }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: var(--ink); width: 100%; font-size: 1.15rem; }
  .nav-links a:hover { background: rgba(255,255,255,.1); }
  .nav-links a.active { background: var(--rose); color: var(--navy); }
  .nav-cta .btn-ghost { display: none; }
  .burger { display: flex; z-index: 1100; }
  .burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
  position: relative;
}
.hero .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .45;
  z-index: 0;
}
.hero .blob-1 { width: 480px; height: 480px; background: var(--plum); top: -140px; right: -100px; animation: float1 14s ease-in-out infinite; }
.hero .blob-2 { width: 360px; height: 360px; background: var(--teal); bottom: -120px; left: -80px; animation: float2 16s ease-in-out infinite; }
.hero .blob-3 { width: 260px; height: 260px; background: var(--rose); top: 40%; left: 55%; animation: float1 12s ease-in-out infinite reverse; }

@keyframes float1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-30px, 40px) scale(1.08); } }
@keyframes float2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px, -30px) scale(1.1); } }

.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  color: var(--ink);
}
.hero h1 .hl { color: var(--rose); }
.hero p.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 46ch;
  margin: 22px 0 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Chat bubble motif */
.bubble-stack { position: relative; height: 420px; }
.chat-bubble {
  position: absolute;
  background: var(--white);
  color: var(--navy);
  padding: 16px 20px;
  border-radius: 22px 22px 22px 4px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
  opacity: 0;
  animation: pop .6s var(--ease) forwards;
}
.chat-bubble.b2 { background: var(--rose); color: var(--navy); border-radius: 22px 22px 4px 22px; }
.chat-bubble.b3 { background: var(--teal); color: var(--navy); }
.chat-bubble.b4 { background: var(--paper-cream); color: var(--navy); border-radius: 22px 22px 4px 22px; }
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(.9); } to { opacity: 1; transform: translateY(0) scale(1); } }

.typing-dots { display: inline-flex; gap: 4px; align-items: center; }
.typing-dots span { width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: .5; animation: blink 1.2s infinite ease-in-out; }
.typing-dots span:nth-child(2) { animation-delay: .2s; }
.typing-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%,80%,100% { opacity: .3; } 40% { opacity: 1; } }

/* ---------- Marquee ---------- */
.marquee-wrap {
  background: rgba(245,239,233,.04);
  padding: 26px 0;
  border-top: 1px solid rgba(245,239,233,.1);
  border-bottom: 1px solid rgba(245,239,233,.1);
  overflow: hidden;
}
.marquee { display: flex; gap: 56px; width: max-content; animation: scroll 32s linear infinite; }
.marquee span { font-family: var(--font-body); font-weight: 700; font-size: 1.2rem; color: var(--ink); opacity: .5; white-space: nowrap; }
.marquee-wrap:hover .marquee { animation-play-state: paused; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .45s; }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }

/* ---------- Section headers ---------- */
.sec-head { max-width: 680px; margin-bottom: 52px; }
.sec-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); color: var(--ink); }
.sec-head p { color: var(--muted); font-size: 1.05rem; margin-top: 14px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Tape banner (titular tipo cinta rasgada) ---------- */
.tape {
  position: relative;
  display: inline-block;
  background: var(--paper-cream);
  color: var(--navy);
  padding: 16px 32px;
  transform: rotate(-1.4deg);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
  clip-path: polygon(0.8% 18%, 0% 2%, 3% 14%, 7% 1%, 11% 16%, 15% 2%, 19% 15%, 23% 0%, 27% 13%, 31% 3%, 35% 16%, 39% 1%, 43% 14%, 47% 2%, 51% 17%, 55% 1%, 59% 15%, 63% 0%, 67% 13%, 71% 3%, 75% 16%, 79% 1%, 83% 14%, 87% 2%, 91% 17%, 95% 1%, 100% 10%, 100% 88%, 96% 100%, 92% 84%, 88% 99%, 84% 85%, 80% 100%, 76% 83%, 72% 99%, 68% 85%, 64% 100%, 60% 83%, 56% 99%, 52% 84%, 48% 100%, 44% 83%, 40% 99%, 36% 85%, 32% 100%, 28% 83%, 24% 99%, 20% 85%, 16% 100%, 12% 83%, 8% 99%, 4% 85%, 0% 100%);
}
.tape.blue { background: var(--paper-blue); color: var(--white); }
.tape.grid {
  background-color: #f4f1e9;
  background-image: linear-gradient(rgba(39,44,64,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(39,44,64,.12) 1px, transparent 1px);
  background-size: 16px 16px;
}
.tape h1, .tape h2, .tape h3 { color: var(--navy); font-size: clamp(1.4rem, 3vw, 2.1rem); }
.tape::before, .tape::after {
  content: '';
  position: absolute;
  width: 54px; height: 26px;
  background: rgba(245,239,233,.6);
  top: -14px;
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
  z-index: 2;
}
.tape::before { left: -14px; transform: rotate(-24deg); }
.tape::after { right: -14px; transform: rotate(20deg); }
.tape.rot-r { transform: rotate(1.2deg); }
.tape-wrap { margin-bottom: 40px; }

/* ---------- Sticker photos (fotos tipo recorte/polaroid) ---------- */
.sticker {
  display: inline-block;
  background: var(--white);
  padding: 10px 10px 10px;
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(0,0,0,.45);
  transform: rotate(-4deg);
  transition: transform .4s var(--ease);
}
.sticker:hover { transform: rotate(0deg) scale(1.03); }
.sticker img { border-radius: 3px; width: 100%; height: 100%; object-fit: cover; }
.sticker.rot-r { transform: rotate(4deg); }
.sticker.rot-r:hover { transform: rotate(0deg) scale(1.03); }
.sticker.small { padding: 6px; }

/* ---------- Paper clip / binder clip decor ---------- */
.clip-deco { position: absolute; width: 46px; opacity: .9; filter: drop-shadow(0 6px 10px rgba(0,0,0,.4)); z-index: 3; }

/* ---------- Pillars / Value cards ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2,1fr); } .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: rgba(245,239,233,.05);
  border: 1px solid rgba(245,239,233,.1);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s;
  backdrop-filter: blur(6px);
}
.card:hover { transform: translateY(-8px) rotate(-.4deg); box-shadow: 0 22px 44px rgba(0,0,0,.35); background: rgba(245,239,233,.08); }
.card h3, .card p { color: var(--ink); }
.card p { color: var(--muted); font-size: .96rem; }
.card .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--rose);
  margin-bottom: 8px;
  display: block;
}
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card .icon-dot {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px;
  background: rgba(245,239,233,.08);
}

/* Tarjetas "papel" de color sólido (variedad tipo moodboard) */
.card.paper-cream { background: var(--paper-cream); border-color: transparent; }
.card.paper-cream h3, .card.paper-cream p, .card.paper-cream .num { color: var(--navy); }
.card.paper-teal { background: var(--teal); border-color: transparent; }
.card.paper-teal h3, .card.paper-teal p, .card.paper-teal .num { color: var(--navy); }
.card.paper-rose { background: var(--rose); border-color: transparent; }
.card.paper-rose h3, .card.paper-rose p, .card.paper-rose .num { color: var(--navy); }
.card.paper-blue { background: var(--paper-blue); border-color: transparent; }
.card.paper-blue h3, .card.paper-blue p, .card.paper-blue .num { color: var(--white); }
.card.paper-blue p { color: rgba(255,255,255,.75); }

/* ---------- Positioning / contrast band ---------- */
.band-dark {
  background: rgba(0,0,0,.22);
  border-top: 1px solid rgba(245,239,233,.08);
  border-bottom: 1px solid rgba(245,239,233,.08);
}
.band-dark .muted { color: var(--muted); }

.no-list { list-style: none; }
.no-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(245,239,233,.14);
  font-size: 1.05rem;
  color: var(--ink);
}
.no-list li .x { color: var(--rose); font-weight: 900; font-size: 1.2rem; }

.yes-list li .check { color: var(--teal); font-weight: 900; font-size: 1.2rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2,1fr); } }
.stat .n { font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3.4rem); color: var(--rose); }
.stat .l { font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-top: 6px; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: rgba(0,0,0,.3);
  border-top: 1px solid rgba(245,239,233,.08);
  padding: 70px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { font-family: var(--font-body); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--rose); margin-bottom: 16px; font-weight: 600; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: var(--muted); transition: color .25s, padding-left .25s; }
.footer-grid a:hover { color: var(--teal); padding-left: 4px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px; border-top: 1px solid rgba(245,239,233,.1);
  font-size: .85rem; color: var(--muted); flex-wrap: wrap; gap: 12px;
}

/* ---------- Cursor dot (desktop only) ---------- */
.cursor-dot {
  position: fixed; width: 14px; height: 14px; border-radius: 50%;
  background: var(--rose); pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%); transition: transform .15s var(--ease), opacity .3s;
  mix-blend-mode: difference; opacity: .9;
}
@media (max-width: 900px), (hover: none) { .cursor-dot { display: none; } }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero .blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .4; }
.page-hero .blob-a { width: 380px; height: 380px; background: var(--plum); top: -120px; right: 10%; animation: float1 15s ease-in-out infinite; }
.page-hero .blob-b { width: 260px; height: 260px; background: var(--teal); bottom: -100px; left: 6%; animation: float2 13s ease-in-out infinite; }
.page-hero.has-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(23,21,27,.96) 35%, rgba(23,21,27,.65) 70%, rgba(23,21,27,.4) 100%);
  z-index: 1;
}
.hero.has-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(23,21,27,.94) 30%, rgba(23,21,27,.6) 65%, rgba(23,21,27,.35) 100%);
  z-index: 1;
}
.hero-photo, .page-hero .hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 30%;
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); color: var(--ink); }
.page-hero p { color: var(--muted); margin-top: 16px; max-width: 60ch; font-size: 1.05rem; }
.breadcrumb { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--rose); margin-bottom: 14px; font-weight: 600; }

/* ---------- Tags / pills ---------- */
.pill {
  display: inline-flex; align-items: center; padding: 7px 16px;
  border-radius: 100px; font-size: .8rem; font-weight: 600;
  background: var(--teal); color: var(--navy);
}
.pill-rose { background: var(--rose); color: var(--navy); }
.pill-cream { background: var(--paper-cream); color: var(--navy); }
.pill-dark { background: rgba(245,239,233,.12); color: var(--ink); }

/* ---------- Instagram feed section ---------- */
.ig-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.ig-handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ink);
}
.ig-handle .ig-dot { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--rose), var(--plum)); display:flex; align-items:center; justify-content:center; color:#fff; font-size:1rem; font-weight:700; }
.ig-stats { display: flex; gap: 22px; font-size: .88rem; color: var(--muted); margin-top: 4px; }
.ig-stats strong { color: var(--ink); }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 14px;
}
.ig-grid a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
@media (max-width: 900px) { .ig-grid { grid-template-columns: repeat(3,1fr); grid-auto-rows: 160px; } }
@media (max-width: 600px) { .ig-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 150px; } .ig-grid a:nth-child(1) { grid-column: span 2; grid-row: span 1; } }

.ig-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
  border: 1px solid rgba(245,239,233,.1);
}
.ig-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.ig-item:hover img { transform: scale(1.08); }
.ig-item .ig-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,0) 45%);
  display: flex; align-items: flex-end; padding: 14px;
  opacity: 0; transition: opacity .35s var(--ease);
}
.ig-item:hover .ig-overlay { opacity: 1; }
.ig-item .ig-overlay span { color: #fff; font-size: .82rem; font-weight: 600; }

/* ---------- PWCC discipline photo strip ---------- */
.pf-photo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 26px;
}
@media (max-width: 800px) { .pf-photo-strip { grid-template-columns: repeat(3,1fr); } }
.pf-photo-strip a { position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 3/4; border: 1px solid rgba(245,239,233,.12); }
.pf-photo-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.pf-photo-strip a:hover img { transform: scale(1.1); }
.pf-photo-strip .lbl {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 8px 10px 6px;
  font-size: .68rem; font-weight: 700; color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,.8), transparent);
  text-transform: uppercase; letter-spacing: .04em;
}

/* ---------- Highlight box (marcador tipo subrayador) ---------- */
.highlight {
  display: inline-block;
  background: var(--rose);
  color: var(--navy);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  transform: rotate(-1deg);
  font-weight: 600;
}
.highlight.teal { background: var(--teal); }
.highlight.cream { background: var(--paper-cream); }

/* ---------- Blog article ---------- */
.post-meta-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 18px; }
.post-meta-row .pill { font-size: .76rem; padding: 6px 14px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-weight: 600; font-size: .9rem; transition: color .25s, transform .25s; }
.back-link:hover { color: var(--rose); transform: translateX(-4px); }

.article-body { max-width: 720px; margin: 0 auto; font-size: 1.06rem; color: var(--muted); }
.article-body p { margin-bottom: 20px; }
.article-body h2 { color: var(--ink); font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 44px 0 16px; }
.article-body .lead { font-size: 1.22rem; color: var(--ink); font-weight: 500; }
.article-body ul, .article-body ol { margin: 0 0 20px 22px; }
.article-body li { margin-bottom: 10px; }

.pull-quote { background: var(--rose); color: var(--navy); font-family: var(--font-display); font-weight: 900; font-size: clamp(1.3rem, 2.6vw, 1.8rem); line-height: 1.25; padding: 32px 36px; border-radius: var(--radius); margin: 40px 0; transform: rotate(-1deg); box-shadow: 0 14px 30px rgba(0,0,0,.3); }

.article-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 900px; margin: 8px auto 0; }
@media (max-width: 700px) { .article-gallery { grid-template-columns: 1fr 1fr; } }
.article-gallery a { position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/5; border: 1px solid rgba(245,239,233,.12); }
.article-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.article-gallery a:hover img { transform: scale(1.08); }
.article-gallery figcaption, .gallery-caption { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 14px; }

.video-embed { max-width: 720px; margin: 0 auto; }
.video-embed .ratio-16x9 { position: relative; width: 100%; padding-top: 56.25%; border-radius: var(--radius); overflow: hidden; box-shadow: 0 14px 30px rgba(0,0,0,.35); }
.video-embed .ratio-16x9 iframe, .video-embed .ratio-16x9 video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-embed .ratio-9x16 { position: relative; width: 100%; max-width: 340px; margin: 0 auto; padding-top: 177.7%; border-radius: var(--radius); overflow: hidden; box-shadow: 0 14px 30px rgba(0,0,0,.35); }
.video-embed .ratio-9x16 iframe, .video-embed .ratio-9x16 video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; height: 100%; background: rgba(245,239,233,.05); border: 2px dashed rgba(245,239,233,.2); color: var(--muted); text-align: center; padding: 20px; }
.video-placeholder .play { width: 56px; height: 56px; border-radius: 50%; background: var(--rose); color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }

/* Utility */
.text-center { text-align: center; }
.mt-2 { margin-top: 24px; }
.mt-4 { margin-top: 48px; }
