/* ponytail: preflight mínimo no lugar de @import "tailwindcss" (site servido estático, sem build) */
h1, h2, h3, h4, h5, h6, p, dl, dd, figure, blockquote { margin: 0; }
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg, video { display: block; vertical-align: middle; }
img, video { max-width: 100%; height: auto; }
b, strong { font-weight: bolder; }
small { font-size: 80%; }
summary { cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

:root {
  --ivory: #f7f1e7;
  --blue: #274e6c;
  --blue-soft: #7296ac;
  --caramel: #a97543;
  --tan: #c7a77e;
  --ink: #1f2930;
  --paper: #fbf7f0;
  --line: rgba(39, 78, 108, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ivory); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-sans), sans-serif;
  text-rendering: optimizeLegibility;
}
body::after {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image: repeating-radial-gradient(circle at 20% 30%, rgba(39, 78, 108, 0.08) 0 0.5px, transparent 0.5px 4px);
}
::selection { background: var(--caramel); color: var(--paper); }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 10;
  width: min(1180px, calc(100% - 28px));
  height: 66px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(247, 241, 231, 0.42);
  border-radius: 14px;
  background: rgba(247, 241, 231, 0.86);
  box-shadow: 0 18px 54px rgba(39, 78, 108, 0.12), inset 0 1px rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px) saturate(140%);
  transform: translateX(-50%);
  animation: nav-in 0.9s 0.2s both cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display), serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--blue);
}
.nav-brand img { width: 42px; height: 42px; border-radius: 8px; object-fit: cover; }
.site-header nav { display: flex; gap: 30px; font-size: 0.76rem; font-weight: 600; }
.site-header nav a, .text-link, footer a { position: relative; }
.site-header nav a::after, .text-link::after, footer a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header nav a:hover::after, .text-link:hover::after, footer a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: var(--ivory);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.45s, background 0.45s, transform 0.25s, box-shadow 0.45s;
}
.button:hover {
  background: transparent;
  color: var(--blue);
  box-shadow: 0 14px 34px rgba(39, 78, 108, 0.16);
  transform: translateY(-2px);
}
.button:active { transform: scale(0.98); }
.button span { font-size: 1.15rem; transition: transform 0.35s; }
.button:hover span { transform: rotate(45deg); }
.button-small { min-height: 46px; justify-self: end; padding: 0 20px; }

.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 76px);
  align-items: center;
  padding: 100px max(28px, calc((100vw - 1240px) / 2)) 28px;
}
.hero-copy { position: relative; z-index: 2; padding: 4vh 0 0; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--caramel);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--blue);
  font-family: var(--font-display), serif;
  font-size: clamp(3.65rem, 5.5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.87;
  animation: hero-copy-in 1.1s 0.15s both cubic-bezier(0.16, 1, 0.3, 1);
}
.hero h1 em {
  display: inline-block;
  padding-bottom: 0.08em;
  color: var(--caramel);
  font-weight: 600;
  line-height: 1.1;
}
.hero-lead {
  max-width: 460px;
  margin: 28px 0;
  color: #3d4b54;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
  animation: hero-copy-in 1s 0.35s both cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  animation: hero-copy-in 1s 0.5s both cubic-bezier(0.16, 1, 0.3, 1);
}
.text-link { font-size: 0.8rem; font-weight: 700; color: var(--blue); }
.hero-visual {
  position: relative;
  min-height: calc(100dvh - 128px);
  overflow: hidden;
  border-radius: 16px;
  background: var(--tan);
  box-shadow: 0 40px 90px rgba(39, 78, 108, 0.2);
}
.hero-visual > img, .reveal-photo > img { object-fit: cover; }
.blind-curtain {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px;
  background: var(--blue);
  color: var(--ivory);
  clip-path: inset(0 0 0 0);
  animation: curtain-open 1.8s 0.55s both cubic-bezier(0.77, 0, 0.18, 1);
}
.blind-curtain span { font-size: 0.8rem; }
.blind-curtain strong {
  max-width: 380px;
  font-family: var(--font-display), serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 0.95;
}
.sample-orbit {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 241, 231, 0.6);
  border-radius: 50%;
  background: rgba(39, 78, 108, 0.82);
  color: var(--ivory);
  backdrop-filter: blur(12px);
}
.sample-orbit::before {
  position: absolute;
  inset: 9px;
  border: 1px dashed rgba(247, 241, 231, 0.46);
  border-radius: inherit;
  content: "";
  animation: spin 14s linear infinite;
}
.sample-orbit span:first-child { position: absolute; top: 16px; font-size: 0.58rem; letter-spacing: 0.14em; }
.sample-orbit span:last-child { font-family: var(--font-display), serif; font-size: 2.8rem; }

.manifesto { padding: clamp(100px, 14vw, 190px) max(28px, calc((100vw - 1180px) / 2)); }
.manifesto p {
  max-width: 1100px;
  margin: 0;
  color: var(--blue);
  font-family: var(--font-display), serif;
  font-size: clamp(3rem, 6vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.manifesto span { color: var(--caramel); }

.question-stage { min-height: 220vh; background: var(--blue); color: var(--ivory); }
.question-sticky {
  position: sticky;
  top: 0;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 8vw;
  padding: 100px max(28px, calc((100vw - 1180px) / 2));
  overflow: hidden;
}
.question-copy h2, .section-intro h2, .spectrum-copy h2, .reveal-copy h2,
.profiles-title h2, .included-copy h2, .audience h2, .event-copy h2,
.next-edition h2, .faq h2, .final-cta h2 {
  margin: 0;
  font-family: var(--font-display), serif;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.question-copy h2 { max-width: 640px; font-size: clamp(3.5rem, 6vw, 6.4rem); }
.question-copy p {
  max-width: 520px;
  margin: 26px 0 0;
  color: rgba(247, 241, 231, 0.72);
  font-size: 1.05rem;
  line-height: 1.7;
}
.pack-stack { position: relative; min-height: 520px; perspective: 1000px; }
.pack {
  position: absolute;
  inset: 3% 21%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 48px 30px 38px;
  border-radius: 10px 10px 16px 16px;
  color: var(--blue);
  text-align: center;
  box-shadow: 0 28px 70px rgba(17, 28, 36, 0.28);
}
.pack::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 16px;
  border-radius: 10px 10px 0 0;
  content: "";
  background: rgba(31, 41, 48, 0.14);
}
.pack::after {
  position: absolute;
  inset: 30px 20px 20px;
  border: 1px solid rgba(39, 78, 108, 0.3);
  border-radius: 8px;
  content: "";
  pointer-events: none;
}
.pack span { font-family: var(--font-display), serif; font-size: clamp(3.2rem, 6vw, 5rem); line-height: 1; }
.pack strong { max-width: 230px; font-size: 0.68rem; letter-spacing: 0.12em; line-height: 1.6; text-transform: uppercase; }
.pack-one {
  background: var(--tan);
  transform: translate(-18%, -7%) rotate(-9deg);
  animation: pack-one linear both;
  animation-timeline: view();
  animation-range: entry 0% exit 100%;
}
.pack-two {
  background: var(--caramel);
  transform: translate(7%, 2%) rotate(7deg);
  animation: pack-two linear both;
  animation-timeline: view();
  animation-range: entry 0% exit 100%;
}
.pack-three {
  background: var(--ivory);
  transform: translate(0, 0) rotate(-1deg);
  animation: pack-three linear both;
  animation-timeline: view();
  animation-range: entry 0% exit 100%;
}

.journey { padding: clamp(100px, 12vw, 170px) max(20px, calc((100vw - 1180px) / 2)); }
.section-intro { max-width: 780px; margin-bottom: 70px; }
.section-intro h2 { color: var(--blue); font-size: clamp(3.2rem, 5.8vw, 6rem); }
.journey-stack { position: relative; }
.journey-card {
  position: sticky;
  top: 100px;
  min-height: 68vh;
  display: grid;
  grid-template-columns: 0.45fr 1.25fr 0.7fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 8vh;
  padding: clamp(28px, 5vw, 70px);
  border: 1px solid rgba(247, 241, 231, 0.16);
  border-radius: 16px;
  background: var(--blue);
  color: var(--ivory);
  box-shadow: 0 -20px 55px rgba(39, 78, 108, 0.12);
}
.journey-card:nth-child(2) { background: #315f7c; }
.journey-card:nth-child(3) { background: #3f708c; }
.journey-card:nth-child(4) { background: #8d633d; }
.journey-card:nth-child(5) { background: var(--caramel); }
.journey-number {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.journey-number span {
  color: rgba(247, 241, 231, 0.45);
  font-family: var(--font-display), serif;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.75;
}
.journey-number small { font-size: 0.68rem; letter-spacing: 0.13em; text-transform: uppercase; }
.journey-card > div:nth-child(2) > p {
  margin: 0 0 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.journey-card h3 {
  max-width: 660px;
  margin: 0 0 24px;
  font-family: var(--font-display), serif;
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  font-weight: 500;
  line-height: 0.92;
}
.journey-card > div:nth-child(2) > span {
  display: block;
  max-width: 580px;
  color: rgba(247, 241, 231, 0.75);
  font-size: 0.95rem;
  line-height: 1.7;
}
.cup-mark {
  position: relative;
  width: min(220px, 18vw);
  aspect-ratio: 1;
  justify-self: end;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 241, 231, 0.36);
  border-radius: 50%;
}
.cup-mark i {
  width: 58%;
  height: 58%;
  border-radius: 50%;
  background: rgba(31, 41, 48, 0.7);
  box-shadow: inset 0 0 0 12px rgba(247, 241, 231, 0.16);
  animation: cup-float 4s ease-in-out infinite;
}
.cup-mark b {
  position: absolute;
  font-family: var(--font-display), serif;
  font-size: 2rem;
  font-weight: 500;
}

.coffee-spectrum { padding: clamp(100px, 12vw, 170px) 0; overflow: hidden; background: var(--paper); }
.spectrum-copy, .spectrum-line { width: min(1180px, calc(100% - 48px)); margin-right: auto; margin-left: auto; }
.spectrum-copy { max-width: 760px; margin-left: max(24px, calc((100vw - 1180px) / 2)); }
.spectrum-copy h2 { color: var(--blue); font-size: clamp(3rem, 5.2vw, 5.4rem); }
.spectrum-copy p { max-width: 520px; margin: 24px 0 64px; line-height: 1.7; }
.marquee { width: 100%; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.marquee > div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 0;
  animation: marquee 32s linear infinite alternate;
}
.marquee span {
  color: var(--blue);
  font-family: var(--font-display), serif;
  font-size: clamp(1.9rem, 3vw, 3.4rem);
  white-space: nowrap;
}
.marquee i { width: 11px; height: 18px; display: block; border-radius: 50%; background: var(--caramel); transform: rotate(28deg); }
.spectrum-line { margin-top: 36px; color: var(--caramel); font-weight: 700; text-align: right; }

.reveal { min-height: 100dvh; display: grid; grid-template-columns: 1.05fr 0.95fr; background: var(--ivory); }
.reveal-photo { position: relative; min-height: 100dvh; overflow: hidden; }
.reveal-photo img {
  transform: scale(1.07);
  animation: image-breathe linear both;
  animation-timeline: view();
  animation-range: entry 0% exit 100%;
}
.reveal-mask {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 42px;
  background: var(--blue);
  color: var(--ivory);
  clip-path: inset(0 0 0 0);
  animation: reveal-image linear both;
  animation-timeline: view();
  animation-range: entry 18% cover 62%;
}
.reveal-mask span {
  font-family: var(--font-display), serif;
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 0.95;
}
.reveal-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(52px, 8vw, 110px); }
.reveal-copy > p:first-child {
  color: var(--caramel);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.reveal-copy h2 { color: var(--blue); font-size: clamp(3rem, 5vw, 5.6rem); }
.reveal-copy > p:nth-child(3) { max-width: 520px; margin: 30px 0; line-height: 1.7; }
.price-guess {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.price-guess span { max-width: 150px; font-size: 0.75rem; line-height: 1.5; }
.price-guess div { display: flex; align-items: start; gap: 5px; color: var(--caramel); }
.price-guess i { font-style: normal; }
.price-guess strong { font-family: var(--font-display), serif; font-size: 5rem; font-weight: 500; line-height: 0.7; }

.profiles { padding: clamp(100px, 12vw, 170px) max(24px, calc((100vw - 1180px) / 2)); }
.profiles-title { max-width: 780px; margin-bottom: 64px; }
.profiles-title h2 { color: var(--blue); font-size: clamp(3rem, 5.5vw, 5.8rem); }
.profiles-title p { max-width: 600px; margin: 24px 0 0; line-height: 1.7; }
.profile-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 14px;
}
.profile {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border-radius: 14px;
  background: #e7ded1;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.55s;
}
.profile:hover { z-index: 2; box-shadow: 0 28px 60px rgba(39, 78, 108, 0.18); transform: translateY(-8px) scale(1.01); }
.profile-1 { grid-row: span 2; background: var(--blue); color: var(--ivory); }
.profile-2 { background: var(--tan); color: var(--blue); }
.profile-3 { background: var(--blue-soft); color: var(--ivory); }
.profile-4 { background: #e8d6c1; color: var(--blue); }
.profile-5 { background: var(--caramel); color: var(--ivory); }
.profile h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 7px;
  font-family: var(--font-display), serif;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 600;
  line-height: 0.95;
}
.profile p { position: relative; z-index: 1; margin: 0; font-size: 0.75rem; opacity: 0.76; }
.profile-rings { position: absolute; top: -80px; right: -70px; width: 250px; height: 250px; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.profile:hover .profile-rings { transform: rotate(18deg) scale(1.12); }
.profile-rings span { position: absolute; inset: 0; border: 1px solid currentColor; border-radius: 48% 52% 44% 56%; opacity: 0.28; }
.profile-rings span:nth-child(2) { inset: 24px; transform: rotate(38deg); }
.profile-rings span:nth-child(3) { inset: 55px; transform: rotate(78deg); }

.included {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  padding: clamp(100px, 12vw, 170px) max(24px, calc((100vw - 1180px) / 2));
  background: var(--paper);
}
.included-copy h2 { color: var(--blue); font-size: clamp(3rem, 5vw, 5.4rem); }
.included-copy p { max-width: 470px; margin-top: 26px; line-height: 1.7; }
.included-list { align-self: center; border-top: 1px solid var(--line); }
.included-list article {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.included-list i {
  position: relative;
  align-self: center;
  width: 11px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--caramel);
  transform: rotate(28deg);
}
.included-list i::after {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  border-radius: 2px;
  content: "";
  background: rgba(247, 241, 231, 0.7);
}
.included-list h3 {
  flex: 1;
  color: var(--blue);
  font-family: var(--font-display), serif;
  font-size: clamp(1.5rem, 2.3vw, 2.1rem);
  font-weight: 500;
  line-height: 1;
}
.included-list span { max-width: 250px; color: #4f5a61; font-size: 0.76rem; line-height: 1.55; text-align: right; }

.audience { padding: clamp(100px, 12vw, 170px) max(24px, calc((100vw - 1180px) / 2)); text-align: center; }
.audience h2 { max-width: 820px; margin: 0 auto 64px; color: var(--blue); font-size: clamp(3.2rem, 5.8vw, 6.2rem); }
.audience-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.audience-cloud span {
  padding: 14px 21px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
  font-size: 0.78rem;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.audience-cloud span:hover { background: var(--blue); color: var(--ivory); transform: translateY(-3px); }

.events { display: grid; grid-template-columns: 0.9fr 1.1fr; min-height: 90dvh; background: var(--paper); }
.event-logo { position: relative; min-height: 600px; overflow: hidden; }
.event-logo img { object-fit: cover; transform: scale(1.06); transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.events:hover .event-logo img { transform: scale(1); }
.event-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(52px, 8vw, 120px); }
.event-copy h2 { max-width: 680px; color: var(--blue); font-size: clamp(3.2rem, 5.5vw, 6rem); }
.event-copy > p:not(.eyebrow) { max-width: 520px; margin: 28px 0; line-height: 1.7; }

.next-edition {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
  padding: clamp(100px, 12vw, 160px) max(24px, calc((100vw - 1180px) / 2));
  background: var(--blue);
  color: var(--ivory);
}
.next-edition > div > p { margin: 0 0 14px; color: var(--tan); font-size: 0.76rem; font-weight: 700; }
.next-edition h2 { font-size: clamp(3.4rem, 6vw, 6.6rem); }
.next-edition dl { margin: 0; }
.next-edition dl div { display: grid; grid-template-columns: 0.36fr 1fr; gap: 18px; padding: 16px 0; border-bottom: 1px solid rgba(247, 241, 231, 0.16); }
.next-edition dt { color: var(--tan); font-size: 0.7rem; font-weight: 700; }
.next-edition dd { margin: 0; font-size: 0.78rem; }
.button-light { grid-column: 2; width: fit-content; border-color: var(--ivory); background: var(--ivory); color: var(--blue); }
.button-light:hover { border-color: var(--ivory); color: var(--ivory); }

.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  padding: clamp(100px, 12vw, 170px) max(24px, calc((100vw - 1180px) / 2));
}
.faq h2 { position: sticky; top: 130px; color: var(--blue); font-size: clamp(3rem, 4.8vw, 5.2rem); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  color: var(--blue);
  cursor: pointer;
  font-family: var(--font-display), serif;
  font-size: 1.45rem;
  font-weight: 600;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-family: var(--font-sans), sans-serif; font-weight: 400; transition: transform 0.3s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 600px; margin: 0; padding: 0 44px 24px 0; color: #4f5a61; font-size: 0.86rem; line-height: 1.75; }

.final-cta {
  position: relative;
  min-height: 90dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 24px;
  background: var(--caramel);
  color: var(--ivory);
  text-align: center;
}
.final-cta > p { position: relative; z-index: 1; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.final-cta h2 { position: relative; z-index: 1; max-width: 980px; margin-bottom: 38px; font-size: clamp(4rem, 8vw, 8.4rem); }
.final-cta .button { position: relative; z-index: 1; }
/* intro do bule (pour.js) */
.pour-intro {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: radial-gradient(ellipse at 50% 45%, #31597a, var(--blue) 72%);
  clip-path: inset(0);
  transition: clip-path 0.9s cubic-bezier(0.77, 0, 0.18, 1);
  cursor: pointer;
}
.pour-intro.done { clip-path: inset(0 0 100% 0); }
.pour-intro canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.pour-brand {
  position: absolute;
  top: 10vh;
  right: 0;
  left: 0;
  color: var(--ivory);
  font-family: var(--font-display), serif;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  animation: hero-copy-in 1s 0.2s both cubic-bezier(0.16, 1, 0.3, 1);
}
.pour-hint {
  position: absolute;
  bottom: 7vh;
  right: 0;
  left: 0;
  color: rgba(247, 241, 231, 0.55);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  animation: hero-copy-in 1s 0.6s both cubic-bezier(0.16, 1, 0.3, 1);
}
.pour-intro::before, .pour-intro::after {
  position: absolute;
  top: 48%;
  left: 48.5%;
  width: 14px;
  height: 44px;
  border-radius: 50%;
  content: "";
  background: rgba(247, 241, 231, 0.5);
  filter: blur(8px);
  opacity: 0;
}
.pour-intro.steamed::before, .pour-intro.steamed::after { animation: steam-rise 2.2s ease-in-out infinite; }
.pour-intro.steamed::after { left: 51.5%; height: 34px; animation-delay: 0.9s; }
.pouring .site-header, .pouring .hero h1, .pouring .hero-lead,
.pouring .hero-actions, .pouring .blind-curtain { animation-play-state: paused !important; }

.bean-field { position: absolute; inset: 0; pointer-events: none; }
.bean-field canvas { width: 100%; height: 100%; display: block; }
.final-mark {
  position: absolute;
  width: min(78vw, 760px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 241, 231, 0.22);
  border-radius: 50%;
  animation: mark-float 8s ease-in-out infinite;
}
.final-mark::before, .final-mark::after {
  position: absolute;
  border: 1px dashed rgba(247, 241, 231, 0.19);
  border-radius: 50%;
  content: "";
}
.final-mark::before { inset: 9%; animation: spin 30s linear infinite; }
.final-mark::after { inset: 22%; animation: spin 22s linear infinite reverse; }
.final-mark span { color: rgba(247, 241, 231, 0.12); font-family: var(--font-display), serif; font-size: 24rem; }

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 24px;
  padding: 56px max(24px, calc((100vw - 1180px) / 2));
  background: var(--ivory);
  color: var(--blue);
  font-size: 0.74rem;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { border-radius: 10px; }
.footer-brand p { font-family: var(--font-display), serif; font-size: 1.15rem; font-weight: 600; line-height: 1.1; }
footer > div:last-child { display: flex; justify-content: flex-end; gap: 24px; }
:focus-visible { outline: 3px solid var(--caramel); outline-offset: 4px; }

@keyframes nav-in { from { opacity: 0; transform: translate(-50%, -24px); } }
@keyframes hero-copy-in { from { opacity: 0; transform: translateY(34px); } }
@keyframes curtain-open {
  0%, 45% { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(0 0 0 100%); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes cup-float { 50% { transform: translateY(-8px) scale(1.025); } }
@keyframes marquee { to { transform: translateX(calc(-100% + 100vw)); } }
@keyframes pack-one { to { transform: translate(-42%, -40%) rotate(-22deg); opacity: 0.3; } }
@keyframes pack-two { to { transform: translate(35%, -22%) rotate(18deg); opacity: 0.45; } }
@keyframes pack-three { to { transform: translateY(-4%) rotate(1deg) scale(1.06); } }
@keyframes reveal-image { to { clip-path: inset(0 100% 0 0); } }
@keyframes image-breathe { to { transform: scale(1); } }
@keyframes mark-float { 50% { transform: scale(1.04) rotate(4deg); } }

/* ==== Motion temático: café + prova às cegas ==== */

/* vapor subindo das xícaras numeradas */
.cup-mark::before, .cup-mark::after {
  position: absolute;
  top: 18%;
  left: 44%;
  width: 12px;
  height: 38px;
  border-radius: 50%;
  content: "";
  background: rgba(247, 241, 231, 0.5);
  filter: blur(7px);
  opacity: 0;
  animation: steam-rise 4.2s ease-in-out infinite;
}
.cup-mark::after { left: 56%; height: 30px; animation-delay: 2s; }
@keyframes steam-rise {
  0% { transform: translateY(26px) scaleX(0.65); opacity: 0; }
  35% { opacity: 0.75; }
  100% { transform: translate(-8px, -44px) scaleX(1.2); opacity: 0; }
}

/* grãos de café rolando no marquee */
.marquee i { position: relative; animation: bean-roll 7s linear infinite; }
.marquee i::after {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  border-radius: 2px;
  content: "";
  background: rgba(247, 241, 231, 0.7);
}
@keyframes bean-roll { from { transform: rotate(28deg); } to { transform: rotate(388deg); } }

/* palpite de preço: o "?" respira */
.price-guess strong { display: inline-block; animation: guess-pulse 2.8s ease-in-out infinite; }
@keyframes guess-pulse { 50% { transform: scale(1.08); } }

/* marquee pausado fora da viewport (motion.js) */
.marquee.paused > div, .marquee.paused i { animation-play-state: paused; }

/* xícara de progresso do scroll (motion.js) */
.scroll-cup {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(247, 241, 231, 0.42);
  border-radius: 50%;
  background: rgba(247, 241, 231, 0.86);
  box-shadow: 0 10px 30px rgba(39, 78, 108, 0.16);
  backdrop-filter: blur(12px);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.scroll-cup.show { opacity: 1; transform: none; pointer-events: auto; }
.scroll-cup .line { fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; }
.scroll-cup .fill { fill: var(--caramel); transform: scaleY(0); transform-origin: center 25px; }

/* fallback p/ browsers sem scroll-driven animations (Firefox):
   sem isso, animation-duration 0 + fill both congela tudo no estado final
   e a máscara da foto nunca abriria */
@supports not (animation-timeline: view()) {
  .pack-one, .pack-two, .pack-three, .reveal-photo img { animation: none; }
  .reveal-mask { animation: reveal-image 1.4s 0.6s both cubic-bezier(0.77, 0, 0.18, 1); }
}

@media (max-width: 960px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 105px; }
  .hero-copy { padding: 32px 0 10px; }
  .hero-visual { min-height: 62dvh; }
  .question-sticky, .reveal, .events, .included, .faq { grid-template-columns: 1fr; }
  .question-sticky { padding-top: 80px; }
  .pack-stack { min-height: 430px; }
  .journey-card { grid-template-columns: 0.35fr 1fr; }
  .cup-mark { display: none; }
  .profile-grid { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .profile-1 { grid-row: auto; grid-column: span 2; }
  .included-copy { max-width: 680px; }
  .event-logo, .reveal-photo { min-height: 70dvh; }
  .next-edition { grid-template-columns: 1fr; }
  .button-light { grid-column: 1; }
  .faq h2 { position: static; }
}

@media (max-width: 640px) {
  .site-header { top: 8px; width: calc(100% - 16px); height: 60px; }
  .nav-brand span { display: none; }
  .button-small { min-height: 42px; padding: 0 15px; font-size: 0.7rem; }
  .hero { min-height: auto; gap: 20px; padding: 90px 16px 16px; }
  .hero h1 { font-size: clamp(3.25rem, 16.5vw, 5rem); }
  .hero-lead { margin: 20px 0; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-visual { min-height: 58dvh; }
  .blind-curtain { padding: 24px; }
  .manifesto, .journey, .profiles, .included, .audience, .faq { padding-right: 16px; padding-left: 16px; }
  .manifesto p { font-size: 3.1rem; }
  .question-stage { min-height: auto; }
  .question-sticky { position: relative; min-height: auto; grid-template-columns: 1fr; gap: 24px; padding: 100px 16px 70px; }
  .question-copy h2 { font-size: 3.4rem; }
  .pack-stack { min-height: 390px; }
  .journey-card { top: 80px; min-height: 64dvh; grid-template-columns: 1fr; gap: 28px; padding: 26px; }
  .journey-number { flex-direction: row; align-items: start; }
  .journey-number span { font-size: 4rem; }
  .journey-card h3 { font-size: 3.1rem; }
  .spectrum-copy, .spectrum-line { width: calc(100% - 32px); margin-right: 16px; margin-left: 16px; }
  .spectrum-line { text-align: left; }
  .reveal-copy { padding: 70px 16px; }
  .reveal-copy h2, .profiles-title h2, .included-copy h2, .audience h2, .event-copy h2, .faq h2 { font-size: 3.2rem; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-1 { grid-column: auto; }
  .included-list article { flex-wrap: wrap; }
  .included-list span { flex-basis: 100%; max-width: 100%; padding-left: 29px; text-align: left; }
  .event-logo, .reveal-photo { min-height: 62dvh; }
  .event-copy { padding: 70px 16px; }
  .next-edition { gap: 44px; padding-right: 16px; padding-left: 16px; }
  .next-edition dl div { grid-template-columns: 1fr; gap: 6px; }
  .final-cta h2 { font-size: 4rem; }
  .final-mark span { font-size: 12rem; }
  footer { grid-template-columns: 1fr; align-items: start; }
  footer > p { display: none; }
  footer > div:last-child { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .blind-curtain { display: none; }
  .cup-mark::before, .cup-mark::after { display: none; }
  .reveal-mask { display: none; }
  .scroll-cup { display: none; }
  .pack-one, .pack-two, .pack-three, .reveal-photo img { animation: none; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header { background: var(--ivory); backdrop-filter: none; }
}
