/*
Theme Name: Provinil
Description: Provinil — Artículos Gráficos y Promocionales. Tampico, Madero, Altamira.
Version: 2.0
Author: Provinil
*/

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

:root {
  --red:    #e01010;
  --red2:   #b00000;
  --dark:   #111111;
  --dark2:  #1a1a1a;
  --bg:     #efefed;
  --bg2:    #e4e4e1;
  --bg3:    #d8d8d4;
  --white:  #ffffff;
  --gray:   #555555;
  --gray2:  #888888;
  --border: rgba(0,0,0,0.09);
  --nav-h:  62px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }

/* ── NAV ── */
.pv-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(239,239,237,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 52px;
}
.pv-nav__logo { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.pv-logo-box {
  background: var(--red); color: #fff;
  font-size: 1.05rem; font-weight: 800;
  padding: 4px 9px; border-radius: 5px;
  letter-spacing: 0.3px; font-family: 'Inter', sans-serif;
}
.pv-logo-text {
  font-size: 1.05rem; font-weight: 800;
  color: var(--dark); margin-left: 4px;
  letter-spacing: -0.2px;
}
.pv-nav__links {
  display: flex; gap: 34px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.pv-nav__links a {
  font-size: 0.73rem; font-weight: 700;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--dark); transition: color 180ms;
}
.pv-nav__links a:hover { color: var(--red); }
.pv-nav__cta {
  margin-left: auto;
  background: var(--dark); color: #fff;
  font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.4px; padding: 8px 18px;
  border-radius: 6px; display: flex; align-items: center; gap: 7px;
  transition: background 180ms, transform 180ms;
  cursor: pointer;
}
.pv-nav__cta:hover { background: var(--red); transform: translateY(-1px); }
@media (max-width: 768px) {
  .pv-nav { padding: 0 18px; }
  .pv-nav__links { display: none; }
}

/* ── SHOWCASE ── */
#showcase { position: relative; min-height: 180vh; }

.showcase-pin {
  position: sticky; top: 0; height: 100vh;
  overflow: hidden;
  background: #ffffff;
}

/* ── IMAGEN FULL CENTER ── */
.sc-stage {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}

.sc-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.8s cubic-bezier(0.76,0,0.24,1), opacity 0.55s ease;
  will-change: transform, opacity;
}

.sc-slide img {
  max-height: 88vh; max-width: 72vw;
  width: auto; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.12));
  user-select: none; pointer-events: none;
  /* sin mix-blend-mode para respetar transparencia PNG */
}

/* ── TEXTO SUPERPUESTO ABAJO-IZQUIERDA ── */
.sc-text {
  position: absolute;
  bottom: 52px; left: 52px;
  z-index: 10;
  max-width: 460px;
  transition: opacity 0.22s ease;
}

.sc-label {
  font-size: 0.62rem; font-weight: 700;
  color: var(--gray2); letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 10px;
  display: block;
}

.sc-title {
  font-size: clamp(3rem, 6vw, 7.5rem);
  font-weight: 900; line-height: 0.88;
  letter-spacing: -5px; color: var(--dark);
  margin-bottom: 18px;
}
.sc-title .accent { color: var(--red); }

.sc-desc {
  font-size: 0.92rem; color: var(--gray);
  line-height: 1.65; margin-bottom: 22px;
  font-weight: 400; max-width: 380px;
}

.sc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.sc-tag {
  background: var(--bg2);
  border: 1.5px solid rgba(0,0,0,0.1);
  color: var(--dark); padding: 4px 13px;
  border-radius: 100px; font-size: 0.7rem; font-weight: 600;
}

.sc-wa {
  display: inline-flex; align-items: center; gap: 9px;
  background: #25d366; color: #fff;
  padding: 13px 26px; border-radius: 9px;
  font-weight: 700; font-size: 0.88rem;
  box-shadow: 0 4px 18px rgba(37,211,102,0.3);
  transition: background 180ms, transform 180ms, box-shadow 180ms;
}
.sc-wa:hover { background: #128c7e; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }

/* ── COUNTER + DOTS ARRIBA-DERECHA ── */
.sc-meta {
  position: absolute; top: calc(var(--nav-h) + 24px); right: 44px;
  z-index: 10;
  display: flex; flex-direction: column; align-items: flex-end; gap: 14px;
}

.sc-num {
  font-size: 0.62rem; font-weight: 800; color: var(--red);
  letter-spacing: 4px; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.sc-num::after {
  content: ''; display: block;
  width: 24px; height: 2px; background: var(--red);
}

.sc-dots { display: flex; gap: 7px; align-items: center; }
.sc-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(0,0,0,0.18);
  transition: background 280ms, transform 280ms; cursor: pointer;
}
.sc-dot.is-active { background: var(--red); transform: scale(1.55); }

/* ── PROGRESS BAR ABAJO ── */
.sc-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: rgba(0,0,0,0.08); z-index: 10;
}
.sc-bar-fill {
  height: 100%; background: var(--red);
  width: 20%; transition: width 0.4s ease;
}

/* scroll hint */
.sc-scroll-hint {
  position: absolute; bottom: 20px; right: 44px;
  display: flex; align-items: center; gap: 8px;
  color: var(--gray2); font-size: 0.65rem; z-index: 10;
  animation: fadeHint 2s 1.5s ease both; opacity: 0;
}
@keyframes fadeHint { from{opacity:0} to{opacity:1} }
.sc-mouse {
  width: 18px; height: 28px;
  border: 1.5px solid var(--gray2); border-radius: 9px;
  display: flex; justify-content: center; padding-top: 4px;
}
.sc-wheel {
  width: 2px; height: 5px; background: var(--red); border-radius: 2px;
  animation: scrollW 1.6s ease infinite;
}
@keyframes scrollW { 0%{opacity:1;transform:translateY(0)} 100%{opacity:0;transform:translateY(7px)} }

@media (max-width: 768px) {
  .sc-text { bottom: 24px; left: 18px; right: 18px; max-width: 100%; }
  .sc-title { letter-spacing: -2px; }
  .sc-slide img { max-height: 55vh; max-width: 90vw; }
  .sc-meta { right: 18px; }
  .sc-scroll-hint { display: none; }
}

/* ── MARQUEE ── */
.pv-marquee {
  background: var(--dark); overflow: hidden;
  padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.06);
}
.pv-marquee__track {
  display: flex; gap: 0;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.pv-marquee__track:hover { animation-play-state: paused; }
.pv-marquee__item {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 0 32px;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
}
.pv-marquee__item .dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0;
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── STATS ── */
.pv-stats {
  display: flex; justify-content: center; flex-wrap: wrap;
  background: var(--dark);
  padding: 36px 20px;
}
.pv-stat {
  text-align: center; padding: 10px 48px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.pv-stat:last-child { border-right: none; }
.pv-stat__num {
  font-size: 2.6rem; font-weight: 900; color: var(--red); line-height: 1;
}
.pv-stat__label {
  font-size: 0.62rem; color: rgba(255,255,255,0.5);
  margin-top: 6px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
}
@media (max-width: 600px) { .pv-stat { padding: 10px 22px; } }

/* ── STATEMENT SECTION ── */
.pv-statement {
  padding: 100px 52px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.pv-statement__big {
  font-size: clamp(4rem, 7vw, 9rem);
  font-weight: 900; line-height: 0.88; letter-spacing: -6px;
  color: var(--dark);
}
.pv-statement__big .r { color: var(--red); }
.pv-statement__right { }
.pv-statement__text {
  font-size: 1.05rem; color: var(--gray); line-height: 1.75; margin-bottom: 32px;
}
.pv-statement__stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.pv-st-num { font-size: 2.8rem; font-weight: 900; color: var(--red); line-height: 1; }
.pv-st-label { font-size: 0.72rem; color: var(--gray2); font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }
@media (max-width: 800px) {
  .pv-statement { grid-template-columns: 1fr; gap: 36px; padding: 60px 20px; }
  .pv-statement__big { letter-spacing: -3px; }
}

/* ── MAP SECTION ── */
.pv-map-section { background: var(--bg2); }
.pv-map-inner {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 0;
  min-height: 520px;
}
.pv-map-info {
  padding: 64px 52px; display: flex; flex-direction: column; justify-content: center;
}
.pv-map-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900; letter-spacing: -2px; line-height: 1.05;
  margin-bottom: 20px; color: var(--dark);
}
.pv-map-title .r { color: var(--red); }
.pv-map-desc { font-size: 0.93rem; color: var(--gray); line-height: 1.7; margin-bottom: 32px; }
.pv-city-list { display: flex; flex-direction: column; gap: 10px; }
.pv-city-row {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem; font-weight: 600; color: var(--dark);
}
.pv-city-row .pin {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pv-city-row .pin.gray { background: rgba(0,0,0,0.15); }
.pv-map-embed {
  position: relative; overflow: hidden;
}
.pv-map-embed iframe {
  width: 100%; height: 100%; border: none; display: block;
  filter: grayscale(20%) contrast(1.05);
}
@media (max-width: 900px) {
  .pv-map-inner { grid-template-columns: 1fr; }
  .pv-map-embed { height: 300px; }
  .pv-map-info { padding: 40px 20px; }
}

/* ── PRODUCTS ── */
.pv-products-section { padding: 100px 52px; }
.pv-products-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 52px; gap: 20px;
}
.pv-products-title {
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900; letter-spacing: -3px; line-height: 1;
  color: var(--dark);
}
.pv-products-title .r { color: var(--red); }
.pv-products-sub { font-size: 0.88rem; color: var(--gray); max-width: 280px; text-align: right; line-height: 1.6; }

/* Bento grid */
.pv-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.pv-bento-card {
  background: var(--white); border-radius: 20px;
  overflow: hidden; display: flex; flex-direction: column;
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 240ms, box-shadow 240ms, border-color 240ms;
  cursor: pointer; text-decoration: none; color: var(--dark);
}
.pv-bento-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); border-color: rgba(224,16,16,0.3); }
.pv-bento-card:nth-child(1) { grid-column: span 5; }
.pv-bento-card:nth-child(2) { grid-column: span 4; }
.pv-bento-card:nth-child(3) { grid-column: span 3; }
.pv-bento-card:nth-child(4) { grid-column: span 6; }
.pv-bento-card:nth-child(5) { grid-column: span 6; }

.pv-bento-img {
  flex: 1; background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  min-height: 200px; overflow: hidden;
}
.pv-bento-img img {
  max-height: 180px; width: auto; max-width: 90%;
  object-fit: contain;
  transition: transform 400ms ease;
}
.pv-bento-card:hover .pv-bento-img img { transform: scale(1.06); }
.pv-bento-body { padding: 22px 24px; }
.pv-bento-title { font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.pv-bento-desc { font-size: 0.8rem; color: var(--gray); line-height: 1.55; margin-bottom: 12px; }

@media (max-width: 900px) {
  .pv-bento { grid-template-columns: 1fr 1fr; }
  .pv-bento-card:nth-child(n) { grid-column: span 1; }
  .pv-products-section { padding: 60px 18px; }
  .pv-products-header { flex-direction: column; align-items: flex-start; }
  .pv-products-sub { text-align: left; }
}
@media (max-width: 550px) {
  .pv-bento { grid-template-columns: 1fr; }
}

/* ── RED CTA ── */
.pv-cta-section {
  background: var(--red); padding: 100px 52px; text-align: center;
}
.pv-cta-title {
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 900; letter-spacing: -4px; line-height: 0.92;
  color: #fff; margin-bottom: 20px;
}
.pv-cta-sub {
  font-size: 1rem; color: rgba(255,255,255,0.75); margin-bottom: 40px;
  max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.65;
}
.pv-cta-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; color: var(--dark);
  padding: 18px 44px; border-radius: 10px;
  font-weight: 800; font-size: 1.05rem;
  box-shadow: 0 6px 30px rgba(0,0,0,0.2);
  transition: transform 180ms, box-shadow 180ms;
}
.pv-cta-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 40px rgba(0,0,0,0.28); }

/* ── SECTION COMMONS ── */
.pv-section { padding: 110px 20px; }
.pv-section--gray { background: var(--bg2); }
.pv-container { max-width: 1180px; margin: 0 auto; }
.pv-eyebrow {
  text-align: center; font-size: 0.65rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 4px;
  color: var(--red); margin-bottom: 14px;
}
.pv-heading {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 900; letter-spacing: -2px; line-height: 1.05;
  margin-bottom: 14px; color: var(--dark);
}
.pv-heading .r { color: var(--red); }
.pv-subheading {
  text-align: center; color: var(--gray);
  font-size: 0.95rem; max-width: 460px;
  margin: 0 auto 56px; line-height: 1.7;
}

/* reveal */
.pv-reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.pv-reveal.is-visible { opacity: 1; transform: translateY(0); }
.pv-d1{transition-delay:.08s} .pv-d2{transition-delay:.16s}
.pv-d3{transition-delay:.24s} .pv-d4{transition-delay:.32s}

/* ── PRODUCTS GRID ── */
.pv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.pv-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px; padding: 0 0 24px;
  overflow: hidden; display: block;
  color: var(--dark);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 240ms, box-shadow 240ms, border-color 240ms;
  cursor: pointer; position: relative;
}
.pv-card::after {
  content: ''; position: absolute; inset: 0 0 auto;
  height: 3px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 260ms ease;
}
.pv-card:hover { transform: translateY(-5px); box-shadow: 0 10px 32px rgba(0,0,0,0.1); border-color: rgba(224,16,16,0.35); }
.pv-card:hover::after { transform: scaleX(1); }
.pv-card__thumb {
  width: 100%; aspect-ratio: 16/9;
  background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-bottom: 20px;
}
.pv-card__thumb img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 12px;
  transition: transform 400ms ease;
}
.pv-card:hover .pv-card__thumb img { transform: scale(1.06); }
.pv-card__body { padding: 0 22px; }
.pv-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 7px; }
.pv-card__desc { font-size: 0.82rem; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.pv-chip {
  display: inline-block;
  background: rgba(224,16,16,0.09);
  border: 1px solid rgba(224,16,16,0.2);
  color: var(--red); padding: 3px 11px;
  border-radius: 100px; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
}

/* ── CITIES ── */
.pv-cities { padding: 90px 20px; text-align: center; background: var(--bg2); }
.pv-city-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px; max-width: 720px; margin: 44px auto 0;
}
.pv-pill {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 100px; padding: 10px 22px;
  font-size: 0.86rem; font-weight: 600; color: var(--dark);
  display: flex; align-items: center; gap: 7px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: border-color 200ms, color 200ms; cursor: pointer;
}
.pv-pill:hover { border-color: var(--red); color: var(--red); }
.pv-pill.is-featured { background: var(--red); border-color: var(--red); color: #fff; }
.pv-pill.is-featured:hover { background: var(--red2); }
.pv-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

/* ── WHY ── */
.pv-why-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px; margin-top: 0;
}
.pv-why-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 18px; padding: 32px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 240ms, box-shadow 240ms, border-color 240ms;
}
.pv-why-card:hover { transform: translateY(-4px); box-shadow: 0 8px 26px rgba(0,0,0,0.09); border-color: rgba(224,16,16,0.3); }
.pv-why-num { font-size: 3.2rem; font-weight: 900; color: var(--red); opacity: 0.65; line-height: 1; margin-bottom: 16px; }
.pv-why-title { font-size: 1rem; font-weight: 700; margin-bottom: 9px; }
.pv-why-desc { font-size: 0.84rem; color: var(--gray); line-height: 1.7; }

/* ── CONTACT ── */
.pv-contact { padding: 100px 20px; text-align: center; }
.pv-contact-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 24px; padding: 56px 40px;
  max-width: 800px; margin: 48px auto 0;
  box-shadow: 0 4px 22px rgba(0,0,0,0.07);
  position: relative; overflow: hidden;
}
.pv-contact-card::before {
  content: ''; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%); width: 180px; height: 3px;
  background: var(--red); box-shadow: 0 0 18px var(--red);
}
.pv-contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 24px; margin: 32px 0;
}
.pv-contact-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.pv-contact-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(224,16,16,0.09); border: 1px solid rgba(224,16,16,0.2);
  display: flex; align-items: center; justify-content: center;
}
.pv-contact-label { font-size: 0.67rem; color: var(--gray2); text-transform: uppercase; letter-spacing: 1.2px; font-weight: 600; }
.pv-contact-value { font-size: 0.88rem; font-weight: 700; color: var(--dark); }
.pv-wa-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #25d366; color: #fff;
  padding: 16px 40px; border-radius: 11px;
  font-weight: 800; font-size: 1rem;
  box-shadow: 0 4px 24px rgba(37,211,102,0.3);
  transition: background 180ms, transform 180ms, box-shadow 180ms;
}
.pv-wa-btn:hover { background: #128c7e; transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 40px rgba(37,211,102,0.45); }
@media (max-width: 600px) { .pv-contact-card { padding: 36px 18px; } }

/* ── FOOTER ── */
.pv-footer {
  background: var(--dark);
  padding: 40px 20px; text-align: center;
  color: rgba(255,255,255,0.4); font-size: 0.77rem;
}
.pv-footer-logo { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 10px; }

/* ── FLOATING WA ── */
.pv-fab {
  position: fixed; bottom: 26px; right: 26px; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.5);
  transition: transform 200ms, box-shadow 200ms;
  cursor: pointer;
}
.pv-fab:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,0.7); }
.pv-fab__ring {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: ring 2.2s ease infinite;
}
@keyframes ring { 0%{opacity:1;transform:scale(1)} 100%{opacity:0;transform:scale(1.55)} }

/* ── BUTTONS ── */
.pv-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(0,0,0,0.18); color: var(--dark);
  padding: 12px 26px; border-radius: 9px;
  font-weight: 600; font-size: 0.9rem;
  transition: border-color 180ms, background 180ms, transform 180ms;
}
.pv-btn-outline:hover { border-color: var(--dark); background: rgba(0,0,0,0.04); transform: translateY(-2px); }

/* ── UTILS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
