/* =========================================================
   ALEX PINHOL — A engenharia do desejo digital
   Direção: colagem renascentista digital + editorial noir
   ========================================================= */

:root {
  /* Palette */
  --ink: #0e0d0b;
  --paper: #f4ede1;      /* off-white cru */
  --paper-2: #ecdfc9;    /* creme mais quente */
  --sky: #8fb8d9;        /* azul de afresco */
  --ochre: #c98a3a;
  --pink: #ff2a86;       /* hot neon */
  --pink-2: #ff5aa4;
  --line: rgba(14, 13, 11, 0.14);

  /* Type */
  --serif: 'Fraunces', ui-serif, Georgia, serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 220ms var(--ease-out);

  /* Layout */
  --max: 1360px;
  --pad-x: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  cursor: none;
}

@media (hover: none) {
  body { cursor: auto; }
}

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

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

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.hl { color: var(--pink); font-style: italic; }
.uline {
  border-bottom: 1px dashed currentColor;
  transition: color var(--transition), border-color var(--transition);
}
.uline:hover { color: var(--pink); border-color: var(--pink); }

/* ---------- CURSOR ---------- */
.cursor, .cursor-dot {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 60ms linear, width 200ms var(--ease-out), height 200ms var(--ease-out), background 200ms var(--ease-out);
  mix-blend-mode: difference;
}
.cursor {
  width: 36px; height: 36px;
  border: 1.5px solid #fff;
  border-radius: 50%;
}
.cursor-dot {
  width: 4px; height: 4px;
  background: #fff;
  border-radius: 50%;
}
.cursor.is-hover { width: 72px; height: 72px; background: var(--pink); border-color: var(--pink); mix-blend-mode: normal; }
.cursor.is-hover ~ .cursor-dot, .is-hover-active { background: #fff; }

@media (hover: none) {
  .cursor, .cursor-dot { display: none; }
}

/* ---------- PROGRESS ---------- */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--pink);
  z-index: 200;
  transition: width 80ms linear;
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad-x);
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
.nav.is-scrolled {
  background: rgba(244, 237, 225, 0.85);
  backdrop-filter: blur(14px);
  padding: 14px var(--pad-x);
  border-bottom: 1px solid var(--line);
}
.nav__logo {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-weight: 800; font-size: 20px;
  letter-spacing: -0.01em;
}
.nav__logo svg { width: 44px; height: 22px; color: var(--ink); }

.nav__links {
  display: flex; align-items: center; gap: 28px;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em;
}
.nav__links a { position: relative; padding: 6px 0; }
.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--ink);
  transition: width var(--transition);
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }

.nav__cta {
  background: var(--ink); color: var(--paper);
  padding: 10px 18px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background var(--transition), transform var(--transition);
}
.nav__cta:hover { background: var(--pink); transform: translateY(-1px); }

@media (max-width: 780px) {
  .nav__links { gap: 14px; }
  .nav__links a:not(.nav__cta) { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px var(--pad-x) 80px;
  overflow: hidden;
  isolation: isolate;
}

.hero__sky {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero__sky img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}
.hero__sky::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(244,237,225,0) 0%, rgba(244,237,225,0.55) 70%, rgba(244,237,225,0.9) 100%),
    linear-gradient(180deg, rgba(244,237,225,0) 60%, var(--paper) 100%);
}

.hero__statue {
  position: absolute;
  left: -8vw;
  bottom: -10vh;
  width: 44vw;
  max-width: 560px;
  z-index: 1;
  will-change: transform;
  transform: translate3d(0,0,0);
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.22));
  pointer-events: none;
}

.hero__hand {
  position: absolute;
  right: -6vw;
  top: 8vh;
  width: 32vw;
  max-width: 500px;
  z-index: 1;
  will-change: transform;
  transform: translate3d(0,0,0) rotate(-8deg);
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2));
  pointer-events: none;
}

@media (max-width: 780px) {
  .hero__statue { width: 60vw; left: -12vw; opacity: 0.35; }
  .hero__hand { width: 55vw; right: -12vw; opacity: 0.4; }
}



.hero__inner {
  position: relative;
  max-width: var(--max);
  width: 100%;
  text-align: center;
  z-index: 2;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(14,13,11,0.06);
  border: 1px solid rgba(14,13,11,0.12);
  padding: 8px 16px; border-radius: 999px;
  backdrop-filter: blur(6px);
  margin-bottom: 32px;
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 0 rgba(255,42,134,0.5);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,42,134,0.5); }
  70% { box-shadow: 0 0 0 12px rgba(255,42,134,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,42,134,0); }
}

.hero__title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(56px, 10.5vw, 158px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--ink);
  text-shadow:
    0 2px 0 rgba(244,237,225,0.55),
    0 8px 40px rgba(244,237,225,0.6);
  position: relative;
  z-index: 3;
}
.hero__title .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroLine 900ms var(--ease-out) forwards;
}
.hero__title .line-1 { animation-delay: 0.05s; }
.hero__title .line-2 { animation-delay: 0.2s; }
.hero__title .line-3 { animation-delay: 0.35s; }
.hero__title .line-4 { animation-delay: 0.5s; }
.hero__title em { font-style: italic; font-weight: 600; color: var(--ink); opacity: 0.85; }
.hero__title .hl {
  display: inline-block;
  color: var(--pink);
  font-style: italic;
  font-weight: 900;
  position: relative;
}

@keyframes heroLine {
  to { opacity: 1; transform: translateY(0); }
}

.hero__sub {
  max-width: 640px;
  margin: 32px auto 0;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: rgba(14,13,11,0.78);
}
.hero__sub strong { color: var(--ink); font-weight: 700; }

.hero__ctas {
  margin-top: 40px;
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  font-size: 15px; font-weight: 600;
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
}
.btn--primary {
  background: var(--ink); color: var(--paper);
  box-shadow: 0 8px 30px rgba(14,13,11,0.25);
}
.btn--primary:hover {
  background: var(--pink);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255,42,134,0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn__play {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--pink); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px;
}

.hero__scroll {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(14,13,11,0.6);
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, var(--ink) 40%, transparent);
  animation: scrollLine 2s var(--ease-in-out) infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0.2); transform-origin: top; }
  50%  { transform: scaleY(1);   transform-origin: top; }
  50.01%{transform: scaleY(1);   transform-origin: bottom;}
  100% { transform: scaleY(0.2); transform-origin: bottom; }
}

/* ---------- REVEALS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Word-by-word reveal */
.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) rotateX(-40deg);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  transform-origin: 50% 100%;
}
.is-visible .reveal-word,
.reveal-word.is-visible {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

/* ---------- MARQUEE ---------- */
.marquee {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  border-block: 1px solid var(--ink);
  padding: 22px 0;
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(20px, 3vw, 42px);
  letter-spacing: -0.01em;
}
.marquee__track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee__track .dot { color: var(--pink); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- SECTION SHARED ---------- */
section {
  padding: clamp(80px, 12vh, 160px) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.marquee, .fullbleed, .statement, .cta { max-width: none; padding-inline: 0; }
.fullbleed { padding-block: 0; }

.section__label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(14,13,11,0.6);
  margin-bottom: 32px;
}
.section__label span {
  font-family: var(--serif); font-weight: 900;
  font-size: 18px; color: var(--pink); letter-spacing: 0;
  font-style: italic;
}

.section__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0 0 48px;
  max-width: 20ch;
}

/* ---------- MANIFESTO ---------- */
.manifesto__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 900px) {
  .manifesto__grid { grid-template-columns: 1fr; }
}

.manifesto__figure {
  position: relative;
  transform: rotate(-2.5deg);
  transition: transform 400ms var(--ease-out);
}
.manifesto__figure:hover { transform: rotate(0deg) scale(1.02); }
.manifesto__figure img {
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(14,13,11,0.2);
}
.manifesto__figure-caption {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--paper);
  padding: 12px 18px;
  font-family: var(--serif);
  font-size: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(14,13,11,0.08);
  transform: rotate(3deg);
}
.manifesto__figure-caption em { color: var(--pink); }

.manifesto__text .lede {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.35;
  font-weight: 500;
  margin: 0 0 24px;
  color: var(--ink);
}
.manifesto__text p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(14,13,11,0.82);
  margin: 0 0 20px;
  max-width: 60ch;
}

.manifesto__signature {
  margin-top: 40px;
  display: flex; align-items: center; gap: 20px;
}
.manifesto__signature svg {
  width: 160px; height: auto;
  color: var(--pink);
}
.sig-path { stroke-dasharray: 500; stroke-dashoffset: 500; }
.is-visible .sig-path {
  animation: drawSig 1.6s var(--ease-out) forwards 0.3s;
}
@keyframes drawSig { to { stroke-dashoffset: 0; } }

.manifesto__signature span {
  font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(14,13,11,0.55);
}

/* ---------- STATEMENT (explosive) ---------- */
.statement {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: clamp(120px, 20vh, 220px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.statement::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,42,134,0.18), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(143,184,217,0.14), transparent 40%);
  pointer-events: none;
}
.statement__inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
}
.statement__kicker, .statement__foot {
  font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(244,237,225,0.6);
  margin: 0;
}
.statement__foot { margin-top: 40px; }

.statement__title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(56px, 11vw, 180px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  margin: 28px 0;
}
.statement__title em { font-style: italic; font-weight: 500; opacity: 0.85; }
.statement__title .hl {
  color: var(--pink);
  font-style: italic;
}
.statement__title [data-split] {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px) scale(0.9);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
}
.statement.is-visible .statement__title [data-split] {
  opacity: 1; transform: translateY(0) scale(1);
}
.statement.is-visible .statement__title [data-split]:nth-child(1){transition-delay: 0.05s;}
.statement.is-visible .statement__title [data-split]:nth-child(2){transition-delay: 0.15s;}
.statement.is-visible .statement__title [data-split]:nth-child(3){transition-delay: 0.25s;}
.statement.is-visible .statement__title [data-split]:nth-child(4){transition-delay: 0.55s;}
.statement.is-visible .statement__title [data-split]:nth-child(5){transition-delay: 0.65s;}
.statement.is-visible .statement__title [data-split]:nth-child(6){transition-delay: 0.75s;}

/* ---------- METHOD ---------- */
.method__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 780px) {
  .method__grid { grid-template-columns: 1fr; }
}

.method__card {
  padding: 40px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.method__card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--pink), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms var(--ease-out);
}
.method__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(14,13,11,0.1);
  background: #fff;
}
.method__card:hover::before { transform: scaleX(1); }

.method__num {
  font-family: var(--serif);
  font-weight: 900;
  font-style: italic;
  font-size: 56px;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 24px;
}
.method__card h3 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.method__card h3 em { font-weight: 500; }
.method__card p {
  font-size: 16px; line-height: 1.6;
  color: rgba(14,13,11,0.78);
  margin: 0 0 20px;
}
.method__card ul {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.method__card ul li {
  padding: 8px 0;
  font-size: 14px;
  color: rgba(14,13,11,0.7);
  border-bottom: 1px solid var(--line);
  position: relative;
  padding-left: 20px;
}
.method__card ul li::before {
  content: '✦';
  color: var(--pink);
  position: absolute; left: 0;
  font-size: 12px;
}

/* ---------- FULLBLEED ---------- */
.fullbleed {
  position: relative;
  height: clamp(60vh, 80vh, 720px);
  overflow: hidden;
}
.fullbleed img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 12s var(--ease-out);
}
.fullbleed.is-visible img { transform: scale(1); }

.fullbleed__caption {
  position: absolute;
  bottom: 40px; left: var(--pad-x); right: var(--pad-x);
  max-width: 900px;
  color: #fff;
}
.fullbleed__caption span {
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.fullbleed__caption h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  margin: 12px 0 0;
  max-width: 20ch;
}

/* ---------- WORK ---------- */
.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 900px) { .work__grid { grid-template-columns: 1fr; } }

.work__card {
  padding: 40px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.work__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(14,13,11,0.12);
}
.work__card--big {
  grid-column: span 3;
  background: var(--ink);
  color: var(--paper);
  border: none;
  min-height: 260px;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.work__card--big::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 40%; height: 100%;
  background: radial-gradient(circle at right, rgba(255,42,134,0.25), transparent 60%);
  pointer-events: none;
}
.work__card--big::after {
  content: 'VYNCO';
  position: absolute;
  top: 20px; right: 40px;
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(80px, 14vw, 220px);
  color: rgba(255,42,134,0.06);
  letter-spacing: -0.04em;
  pointer-events: none;
  line-height: 1;
}
@media (max-width: 900px) { .work__card--big { grid-column: span 1; } }

.work__tag {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(14,13,11,0.06);
  color: rgba(14,13,11,0.7);
  margin-bottom: 16px;
}
.work__card--big .work__tag {
  background: rgba(255,42,134,0.15); color: var(--pink);
}
.work__card h3 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.work__card p {
  font-size: 16px; line-height: 1.6;
  color: rgba(14,13,11,0.78);
  margin: 0 0 20px; max-width: 55ch;
}
.work__card--big p { color: rgba(244,237,225,0.85); }
.work__meta {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(14,13,11,0.5);
  display: flex; gap: 8px; flex-wrap: wrap;
}
.work__card--big .work__meta { color: rgba(244,237,225,0.55); }

/* ---------- STATS ---------- */
.stats {
  background: var(--ink);
  color: var(--paper);
  max-width: none;
  padding: 100px var(--pad-x);
}
.stats__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 900px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .stats__grid { grid-template-columns: 1fr; } }
.stats__item {
  border-top: 1px solid rgba(244,237,225,0.15);
  padding-top: 24px;
}
.stats__num {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(64px, 8vw, 120px);
  line-height: 0.9;
  color: var(--pink);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.stats__num { display: inline-block; }
.stats__plus {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 500;
  color: var(--pink);
  margin-left: 4px;
  opacity: 0.75;
  font-size: clamp(48px, 6vw, 90px);
  vertical-align: 25%;
}
.stats__label {
  font-size: 14px; line-height: 1.5;
  color: rgba(244,237,225,0.7);
  max-width: 26ch;
}

/* ---------- QUOTES ---------- */
.quotes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .quotes__grid { grid-template-columns: 1fr; } }

.quote {
  padding: 40px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  border-radius: 12px;
  margin: 0;
  position: relative;
}
.quote::before {
  content: '“';
  position: absolute;
  top: 0; left: 20px;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 100px;
  line-height: 1;
  color: var(--pink);
  opacity: 0.4;
}
.quote p {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  margin: 30px 0 20px;
  color: var(--ink);
}
.quote footer {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(14,13,11,0.55);
}

/* ---------- CTA ---------- */
.cta {
  background: var(--paper-2);
  padding: clamp(100px, 16vh, 180px) var(--pad-x);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute; inset: 0;
  background: url('assets/painterly-bg.png') center/cover no-repeat;
  opacity: 0.35;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.cta__inner {
  position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto;
  text-align: center;
}
.cta__kicker {
  font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--pink);
  margin: 0 0 20px;
}
.cta__title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(48px, 8vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}
.cta__title em { font-style: italic; font-weight: 500; }
.cta__sub {
  font-size: 18px; line-height: 1.6;
  color: rgba(14,13,11,0.75);
  max-width: 56ch; margin: 0 auto 40px;
}
.cta__form {
  display: flex; flex-wrap: wrap; gap: 12px;
  max-width: 640px; margin: 0 auto;
}
.cta__form input {
  flex: 1 1 240px;
  padding: 16px 20px;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.cta__form input:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(255,42,134,0.15);
}
.cta__form button {
  padding: 16px 28px;
  border: none;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background var(--transition), transform var(--transition);
}
.cta__form button:hover { background: var(--pink); transform: translateY(-2px); }
.cta__thanks {
  flex-basis: 100%;
  font-size: 14px;
  color: var(--pink);
  margin: 4px 0 0;
}

.cta__contact {
  margin-top: 32px;
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(14,13,11,0.6);
}
.cta__contact a:hover { color: var(--pink); }

/* ---------- FOOTER ---------- */
.footer {
  padding: 80px var(--pad-x) 32px;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: none;
}
@media (max-width: 780px) { .footer { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer { grid-template-columns: 1fr; } }

.footer__logo {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.footer__col p {
  font-size: 14px; color: rgba(244,237,225,0.7);
  max-width: 30ch;
}
.footer__label {
  display: block;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(244,237,225,0.5);
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  color: rgba(244,237,225,0.85);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--pink); }
.footer__bottom {
  grid-column: 1 / -1;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(244,237,225,0.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(244,237,225,0.5);
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal, .reveal-word, [data-split] { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   HERO · "DESEJADAS" · smoke + sparks reveal
   The word is hidden until it enters view (reveal shared class
   below already handles entrance). We layer a smoke burst that
   fades away and sparks that keep drifting up.
   ============================================================ */
.hl--reveal {
  position: relative;
  display: inline-block;
  color: var(--pink, #ff2a86);
  will-change: transform, filter, opacity;
}
.hl--reveal.is-lit { animation: descRevealFlash 900ms cubic-bezier(.2,.7,.2,1) both; }

@keyframes descRevealFlash {
  0%   { filter: brightness(.4) blur(14px); transform: translateY(18px) scale(.94); letter-spacing: -.06em; opacity: 0; }
  35%  { filter: brightness(2.2) blur(0);   transform: translateY(0)   scale(1.04); letter-spacing: 0;      opacity: 1; }
  60%  { filter: brightness(1.6) blur(0);   transform: translateY(0)   scale(0.99); }
  100% { filter: brightness(1)   blur(0);   transform: translateY(0)   scale(1);    letter-spacing: 0;      opacity: 1; }
}

/* SMOKE puffs — dark clouds erupting behind the pink word */
.hl--reveal { isolation: isolate; }
.hl--reveal .smoke {
  position: absolute;
  inset: -100% -25% -100%;
  pointer-events: none;
  opacity: 0;
  z-index: -1;
  overflow: visible;
}
.hl--reveal.is-lit .smoke { opacity: 1; animation: smokeLifecycle 2400ms ease-out forwards; }
@keyframes smokeLifecycle {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  60%  { opacity: .55; }
  100% { opacity: 0; }
}
.hl--reveal .smoke i {
  position: absolute;
  left: 50%; top: 55%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(70,60,60,.95), rgba(35,30,30,.85) 40%, rgba(20,15,15,.55) 75%, rgba(14,13,11,0) 100%);
  filter: blur(14px);
  transform: translate(-50%, -50%) scale(.1);
  mix-blend-mode: normal;
}
.hl--reveal.is-lit .smoke i { animation: puff 2200ms cubic-bezier(.15,.6,.25,1) forwards; }
.hl--reveal.is-lit .smoke i:nth-child(1) { --dx:-38%; --dy:-70%; --sc:1.6; animation-delay: 0ms; }
.hl--reveal.is-lit .smoke i:nth-child(2) { --dx: 42%; --dy:-60%; --sc:1.9; animation-delay: 40ms; }
.hl--reveal.is-lit .smoke i:nth-child(3) { --dx:-60%; --dy: 10%; --sc:1.4; animation-delay: 60ms; }
.hl--reveal.is-lit .smoke i:nth-child(4) { --dx: 55%; --dy: 20%; --sc:1.7; animation-delay: 20ms; }
.hl--reveal.is-lit .smoke i:nth-child(5) { --dx: -8%; --dy:-95%; --sc:2.1; animation-delay: 80ms; }
.hl--reveal.is-lit .smoke i:nth-child(6) { --dx: 10%; --dy: 60%; --sc:1.3; animation-delay: 110ms; }
@keyframes puff {
  0%   { transform: translate(-50%, -50%) scale(.15); opacity: 0; filter: blur(3px); }
  20%  { opacity: 1; }
  50%  { opacity: .85; }
  100% { transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(var(--sc)); opacity: 0; filter: blur(18px); }
}

/* SPARKS — 12 tiny neon dots that keep drifting up after the reveal */
.hl--reveal .sparks {
  position: absolute;
  inset: 0 -6% -30%;
  pointer-events: none;
}
.hl--reveal.is-lit .sparks b {
  position: absolute;
  bottom: 0;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--pink, #ff2a86);
  box-shadow: 0 0 6px 1px var(--pink, #ff2a86), 0 0 14px 3px rgba(255,42,134,.55);
  animation: sparkRise 3200ms cubic-bezier(.2,.7,.4,1) infinite;
  opacity: 0;
}
.hl--reveal.is-lit .sparks b:nth-child(1)  { left: 6%;  animation-delay: 300ms; animation-duration: 3400ms; }
.hl--reveal.is-lit .sparks b:nth-child(2)  { left: 14%; animation-delay: 900ms; animation-duration: 3800ms; width:3px; height:3px; }
.hl--reveal.is-lit .sparks b:nth-child(3)  { left: 22%; animation-delay: 500ms; animation-duration: 3000ms; }
.hl--reveal.is-lit .sparks b:nth-child(4)  { left: 30%; animation-delay: 1600ms; animation-duration: 4200ms; width:2px; height:2px; }
.hl--reveal.is-lit .sparks b:nth-child(5)  { left: 40%; animation-delay: 200ms; animation-duration: 3600ms; }
.hl--reveal.is-lit .sparks b:nth-child(6)  { left: 48%; animation-delay: 1200ms; animation-duration: 3200ms; width:5px; height:5px; }
.hl--reveal.is-lit .sparks b:nth-child(7)  { left: 56%; animation-delay: 700ms; animation-duration: 4000ms; }
.hl--reveal.is-lit .sparks b:nth-child(8)  { left: 64%; animation-delay: 2000ms; animation-duration: 3300ms; width:3px; height:3px; }
.hl--reveal.is-lit .sparks b:nth-child(9)  { left: 72%; animation-delay: 400ms; animation-duration: 3700ms; }
.hl--reveal.is-lit .sparks b:nth-child(10) { left: 80%; animation-delay: 1400ms; animation-duration: 3100ms; width:4px; height:4px; }
.hl--reveal.is-lit .sparks b:nth-child(11) { left: 88%; animation-delay: 800ms; animation-duration: 3900ms; }
.hl--reveal.is-lit .sparks b:nth-child(12) { left: 94%; animation-delay: 1800ms; animation-duration: 3500ms; width:2px; height:2px; }
@keyframes sparkRise {
  0%   { transform: translateY(0) translateX(0)   scale(1);   opacity: 0; }
  10%  { opacity: 1; }
  60%  { opacity: .7; transform: translateY(-70px) translateX(6px) scale(.85); }
  100% { transform: translateY(-130px) translateX(-4px) scale(.4); opacity: 0; }
}

/* ============================================================
   FULLBLEED · roman construction
   ============================================================ */
.fullbleed--roman { background: #0a0908; }
.fullbleed--roman img {
  object-position: center 30%;
  filter: contrast(1.05) saturate(1.05);
}
.fullbleed--roman::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,9,8,.15) 0%, rgba(10,9,8,0) 30%, rgba(10,9,8,.85) 100%);
  pointer-events: none;
}
.fullbleed--roman .fullbleed__caption h3 {
  max-width: 22ch;
}

/* ============================================================
   STATS · pedra romana + explosão de tinta neon
   ============================================================ */
.stats--stone {
  position: relative;
  padding: clamp(80px, 12vw, 140px) clamp(20px, 4vw, 60px);
  background: #0e0d0b;
  overflow: hidden;
  isolation: isolate;
}
.stats--stone .stats__stone {
  position: absolute; inset: 0;
  background-image: url("assets/stone-slab.png");
  background-size: cover;
  background-position: center;
  filter: contrast(1.05) brightness(.98) saturate(.9);
  opacity: 0;
  transition: opacity 1400ms ease 700ms;
  z-index: 0;
}
.stats--stone .stats__stone::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(14,13,11,0) 0%, rgba(14,13,11,.35) 60%, rgba(14,13,11,.75) 100%),
    linear-gradient(180deg, rgba(14,13,11,.55) 0%, rgba(14,13,11,0) 20%, rgba(14,13,11,0) 80%, rgba(14,13,11,.55) 100%);
}
.stats--stone.is-carved .stats__stone { opacity: 1; }

.stats--stone .stats__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
@media (max-width: 900px) { .stats--stone .stats__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .stats--stone .stats__grid { grid-template-columns: 1fr; } }

.stats--stone .stats__item {
  position: relative;
  padding: 40px 8px 8px;
  isolation: isolate;
  min-height: 220px;
}
.stats--stone .stats__item::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
}

/* neon paint splat behind the number */
.stats__splat {
  position: absolute;
  top: 30px; left: 20px;
  width: 160px;
  aspect-ratio: 1;
  transform: scale(.1) rotate(0deg);
  transform-origin: 50% 50%;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  filter: drop-shadow(0 0 22px rgba(255,42,134,.5)) drop-shadow(0 0 4px rgba(255,42,134,.85));
  transition: opacity 220ms ease, transform 620ms cubic-bezier(.15,.9,.2,1.1);
}
.stats--stone .stats__num,
.stats--stone .stats__plus,
.stats--stone .stats__label { position: relative; z-index: 2; }
.stats--stone .stats__num { mix-blend-mode: normal; }
.stats__splat svg { width: 100%; height: 100%; display: block; }
.stats__splat path { fill: var(--pink, #ff2a86); }
.stats__item.is-splashed .stats__splat {
  opacity: .85;
  transform: scale(1) rotate(var(--rot, 6deg));
  animation: paintSettle 1600ms ease 620ms forwards;
}
.stats--stone.is-carved .stats__splat { opacity: .55; }
.stats__item:nth-child(1).is-splashed .stats__splat { --rot: -8deg; }
.stats__item:nth-child(2).is-splashed .stats__splat { --rot: 12deg; }
.stats__item:nth-child(3).is-splashed .stats__splat { --rot: -14deg; }
.stats__item:nth-child(4).is-splashed .stats__splat { --rot: 7deg; }

@keyframes paintSettle {
  0%   { filter: drop-shadow(0 0 24px rgba(255,42,134,.75)) drop-shadow(0 0 6px rgba(255,42,134,.9)); }
  60%  { filter: drop-shadow(0 0 12px rgba(255,42,134,.35)) drop-shadow(0 0 2px rgba(255,42,134,.5)); }
  100% { filter: drop-shadow(0 2px 3px rgba(0,0,0,.35)); }
}

/* number carved into stone once the section is "carved" */
.stats--stone .stats__num {
  font-family: var(--serif, "Fraunces", serif);
  font-weight: 900;
  font-size: clamp(72px, 8vw, 140px);
  line-height: .9;
  color: var(--pink, #ff2a86);
  text-shadow: 0 0 22px rgba(255,42,134,.55);
  display: inline-block;
  transition: color 900ms ease 900ms, text-shadow 900ms ease 900ms;
}
.stats--stone .stats__plus {
  display: inline-block;
  font-family: var(--serif, "Fraunces", serif);
  font-weight: 900;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 1;
  color: var(--pink, #ff2a86);
  margin-left: 4px;
  vertical-align: 40%;
  transition: color 900ms ease 900ms;
}
.stats--stone.is-carved .stats__num,
.stats--stone.is-carved .stats__plus {
  color: #2b2419;
  text-shadow:
    0 1px 0 rgba(255,255,255,.35),
    0 -1px 0 rgba(0,0,0,.55),
    inset 0 2px 4px rgba(0,0,0,.6);
  -webkit-text-stroke: 1px rgba(0,0,0,.15);
}
.stats--stone .stats__label {
  margin-top: 14px;
  font-family: var(--sans, "Inter", sans-serif);
  font-size: 13px;
  line-height: 1.45;
  color: rgba(244,237,225,.7);
  max-width: 24ch;
  transition: color 700ms ease 1100ms;
}
.stats--stone.is-carved .stats__label { color: rgba(43,36,25,.85); }

@media (prefers-reduced-motion: reduce) {
  .hl--reveal.is-lit .smoke i,
  .hl--reveal.is-lit .sparks b { animation: none !important; opacity: 0 !important; }
  .stats__splat, .stats--stone .stats__stone { transition: none !important; }
}
