/* ── Header / Nav ── */
body {
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(240, 223, 194, 0.38), transparent 30rem),
    radial-gradient(circle at 84% 72%, rgba(114, 87, 54, 0.24), transparent 34rem),
    linear-gradient(135deg, #b49c78 0%, #9b7f5b 100%) !important;
}

main {
  position: relative;
  z-index: 1;
}

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 9998;
  overflow: hidden;
  background: #17140f;
  pointer-events: none;
  animation: intro-fallback-hide 0.55s var(--ease-fluid) 5.5s forwards;
}

.site-intro.is-leaving {
  animation: intro-fallback-hide 0.55s var(--ease-fluid) forwards;
}

.site-intro-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #17140f;
  animation: intro-video-in 0.65s ease-out both;
}

.page-shell {
  transform-origin: center top;
  background:
    linear-gradient(135deg, rgba(255, 252, 246, 0.86), rgba(243, 234, 218, 0.92)),
    radial-gradient(circle at 90% 10%, rgba(180, 156, 120, 0.16), transparent 22rem) !important;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 28px 80px -32px rgba(63, 48, 34, 0.48),
    0 10px 30px -18px rgba(63, 48, 34, 0.35);
}

html.intro-lock .page-shell,
html.intro-lock .reading-progress {
  opacity: 0;
  visibility: hidden;
  animation: intro-shell-fallback 0.45s var(--ease-fluid) 5.8s forwards;
}

html.intro-ready .page-shell {
  animation: intro-shell-reveal 0.7s var(--ease-fluid) both;
}

@media (max-width: 767px) {
  .site-intro {
    animation-delay: 4.4s;
  }

  html.intro-lock .page-shell,
  html.intro-lock .reading-progress {
    animation-delay: 4.6s;
  }

  .site-intro-video {
    object-fit: cover;
    object-position: center 42%;
    width: 100vw;
    height: 100dvh;
    min-height: 100%;
  }
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: var(--progress, 0%);
  height: 3px;
  background: linear-gradient(90deg, #725736, #b49c78, #f0dfc2);
  box-shadow: 0 0 18px rgba(138, 106, 67, 0.35);
  transform-origin: left;
  pointer-events: none;
}

.ambient-orbs {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.ambient-orb {
  position: absolute;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.22;
  mix-blend-mode: soft-light;
  animation: ambient-drift 18s ease-in-out infinite;
}
.ambient-orb--one {
  top: 8%;
  left: -8rem;
  background: #f0dfc2;
}
.ambient-orb--two {
  right: -9rem;
  bottom: 10%;
  background: #725736;
  animation-delay: -7s;
}

.site-nav-pill {
  position: relative;
  background: rgba(255, 252, 246, 0.82) !important;
  border: 1px solid rgba(114, 87, 54, 0.08);
  backdrop-filter: blur(18px);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.38rem;
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.2), rgba(255,250,241,0.06));
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), background 0.45s ease, box-shadow 0.45s ease;
}
.nav-brand:hover {
  transform: translateY(-1px) scale(1.025);
  background: linear-gradient(145deg, rgba(255,255,255,0.38), rgba(255,250,241,0.12));
  box-shadow: 0 12px 24px -20px rgba(87,66,42,0.58);
}
.nav-brand-logo {
  display: block;
  width: clamp(5.4rem, 8vw, 6.85rem);
  height: auto;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 7px 10px rgba(138,106,67,0.15));
  transition: filter 0.45s ease;
}
.nav-brand:hover .nav-brand-logo {
  filter: drop-shadow(0 10px 15px rgba(138,106,67,0.22));
}

.nav-links { list-style: none; margin: 0; padding: 0; }

.nav-link {
  position: relative;
  display: inline-block;
  padding: 0.35rem 0.15rem;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #64748b;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.4s ease, letter-spacing 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s ease;
}
.nav-link--wide {
  letter-spacing: 0.12em;
}
@media (min-width: 1280px) {
  .nav-link { font-size: 10px; letter-spacing: 0.24em; }
  .nav-link--wide { letter-spacing: 0.14em; }
}

.nav-link-stack {
  display: block;
  position: relative;
  overflow: hidden;
  height: 1.15em;
  line-height: 1.15;
}
.nav-link-face {
  display: block;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link-face--alt {
  position: absolute;
  inset: 0;
  color: #8a6a43;
  transform: translateY(110%);
}
.nav-link:hover .nav-link-face:first-child { transform: translateY(-110%); }
.nav-link:hover .nav-link-face--alt { transform: translateY(0); }

.nav-link-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #0f172a 20%, #0f172a 80%, transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.85;
}
.nav-link:hover .nav-link-line,
.nav-link.is-active .nav-link-line { transform: scaleX(1); }
.nav-link.is-active {
  color: #0f172a;
  letter-spacing: 0.26em;
}
.nav-link.is-active .nav-link-line {
  background: linear-gradient(90deg, transparent, #8a6a43 15%, #b49c78 50%, #8a6a43 85%, transparent);
  animation: nav-line-glow 2.8s ease-in-out infinite;
}

.nav-link-spark {
  position: absolute;
  top: 50%;
  left: -6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #b49c78;
  transform: translateY(-50%) scale(0);
  opacity: 0;
  box-shadow: 0 0 8px rgba(180, 156, 120, 0.85);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.nav-link--wide:hover .nav-link-spark {
  transform: translateY(-50%) scale(1);
  opacity: 1;
  animation: nav-spark-orbit 1.2s ease-in-out infinite;
}

.nav-link:hover { color: #0f172a; letter-spacing: 0.28em; }
.nav-link--wide:hover { letter-spacing: 0.16em; }

.nav-link::before {
  content: '';
  position: absolute;
  inset: -4px -8px;
  border-radius: 9999px;
  background: radial-gradient(ellipse at center, rgba(180, 156, 120, 0.16), transparent 70%);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.45s ease, transform 0.45s ease;
  z-index: -1;
}
.nav-link:hover::before { opacity: 1; transform: scale(1); }

.nav-cta {
  --btn-rx: 0deg;
  --btn-ry: 0deg;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #8a6a43 !important;
  transform: perspective(520px) rotateX(var(--btn-rx)) rotateY(var(--btn-ry));
  transform-style: preserve-3d;
  transition: transform 0.45s var(--ease-fluid), box-shadow 0.45s ease;
}
.nav-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}
.nav-cta:hover {
  transform: perspective(520px) rotateX(var(--btn-rx)) rotateY(var(--btn-ry)) translateY(-2px) translateZ(8px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 10px 24px -10px rgba(138, 106, 67, 0.52);
}
.nav-cta:hover::after { transform: translateX(120%); }
.nav-cta-text { position: relative; z-index: 1; }

.nav-drawer {
  margin-top: 0.65rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 12px 32px -12px rgba(15, 23, 42, 0.15);
  animation: nav-drawer-in 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-drawer[hidden] { display: none; }
.nav-drawer-list { list-style: none; margin: 0; padding: 0; }
.nav-drawer-link {
  display: block;
  padding: 0.65rem 0.5rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #64748b;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: color 0.3s ease, padding-left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-drawer-link:last-child { border-bottom: none; }
.nav-drawer-link:hover,
.nav-drawer-link.is-active { color: #8a6a43; padding-left: 1rem; }

@keyframes nav-line-glow {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 1; }
}
@keyframes nav-spark-orbit {
  0%, 100% { transform: translateY(-50%) translateX(0) scale(1); }
  50% { transform: translateY(-50%) translateX(4px) scale(1.15); }
}
@keyframes nav-drawer-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-orb {
    animation: none !important;
  }
  .nav-link-face, .nav-link-line, .nav-link-spark, .nav-cta::after, .nav-drawer,
  .hero-badge-dot {
    animation: none !important;
    transition: none !important;
  }
  .nav-link:hover .nav-link-face { transform: none; }
  .nav-link-face--alt { display: none; }
  .nav-link.is-active .nav-link-line { transform: scaleX(1); }
}

/* ── Hero copy — reveals artísticos ── */
.hero-copy { max-width: 36rem; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(138, 106, 67, 0.13);
  background: rgba(255, 252, 246, 0.58);
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6f5a3f;
  margin-bottom: 1.25rem;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8a6a43;
  box-shadow: 0 0 0 0 rgba(138, 106, 67, 0.42);
  animation: hero-pulse 2.4s ease-in-out infinite;
}

.hero-title-line {
  display: block;
  overflow: hidden;
}
.hero-title-line + .hero-title-line { margin-top: 0.05em; }
.hero-title-line--secondary { font-size: 0.76em; }

.hero-rule {
  width: 3.5rem;
  height: 1px;
  margin-top: 1.25rem;
  background: linear-gradient(90deg, #8a6a43, rgba(180, 156, 120, 0.35), transparent);
  transform-origin: left;
}

.hero-stat-num {
  font-size: 1.875rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1;
}
@media (min-width: 640px) { .hero-stat-num { font-size: 2.25rem; } }
.hero-stat-label {
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.hero-profile {
  position: relative;
  max-width: 31rem;
  padding: 0.9rem 1rem 0.95rem 1.15rem;
  border-left: 2px solid rgba(138,106,67,0.42);
  border-radius: 0 1rem 1rem 0;
  background:
    linear-gradient(90deg, rgba(180,156,120,0.11), rgba(255,252,246,0.03) 72%);
}

.hero-profile-poetic {
  margin: 0;
  color: #334155;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.45;
}

.hero-profile-poetic em {
  color: #8a6a43;
  font-weight: 400;
}

.hero-profile-credentials {
  margin: 0.5rem 0 0;
  color: #746a5d;
  font-size: 0.7rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.hero-profile-credentials strong {
  color: #57422a;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-signature {
  position: relative;
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr) 2.75rem;
  align-items: center;
  gap: 0.9rem;
  max-width: 31rem;
  padding: 1rem 0;
  border-block: 1px solid rgba(138,106,67,0.12);
}

.hero-signature::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at 82% 50%, rgba(180,156,120,0.12), transparent 34%);
  transition: opacity 0.6s ease;
}

.hero-signature:hover::before { opacity: 1; }

.hero-signature-line {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #8a6a43, rgba(138,106,67,0.12));
  transform-origin: left;
  transition: transform 0.65s var(--ease-fluid);
}

.hero-signature:hover .hero-signature-line { transform: scaleX(1.16); }

.hero-signature p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.hero-signature p em {
  display: block;
  color: #334155;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  font-weight: 400;
  line-height: 1.25;
}

.hero-signature p span {
  display: block;
  margin-top: 0.26rem;
  color: #7b7063;
  font-size: 0.72rem;
  line-height: 1.5;
  letter-spacing: 0.025em;
}

.hero-signature-mark {
  position: relative;
  z-index: 1;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid rgba(138,106,67,0.18);
  border-radius: 50%;
  color: #8a6a43;
  background: rgba(255,252,246,0.48);
  box-shadow: 0 12px 24px -20px rgba(87,66,42,0.62);
  transition: transform 0.65s var(--ease-fluid), background 0.45s ease;
}

.hero-signature:hover .hero-signature-mark {
  transform: rotate(90deg) scale(1.05);
  background: rgba(255,252,246,0.78);
}

.hero-btn {
  --btn-rx: 0deg;
  --btn-ry: 0deg;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.75rem;
  gap: 0.72rem;
  padding: 1rem 2.15rem;
  border-radius: 9999px;
  font-size: 1.02rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: perspective(680px) rotateX(var(--btn-rx)) rotateY(var(--btn-ry)) translateY(0);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.65s var(--ease-fluid), box-shadow 0.65s var(--ease-soft), background 0.65s var(--ease-soft), border-color 0.65s var(--ease-soft);
}
.hero-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.45s ease;
  background: radial-gradient(220px circle at var(--gx, 50%) var(--gy, 50%), rgba(255, 255, 255, 0.34), transparent 62%);
}
.hero-btn:hover::before { opacity: 1; }
.hero-btn > span,
.hero-btn > svg { position: relative; z-index: 1; }
.hero-btn--primary {
  background: linear-gradient(135deg, #8a6a43, #725736);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 10px 0 -7px rgba(63, 48, 34, 0.45),
    0 18px 34px -18px rgba(114, 87, 54, 0.62);
}
.hero-btn--primary:hover {
  background: linear-gradient(135deg, #7c603e, #5f472b);
  transform: perspective(680px) rotateX(var(--btn-rx)) rotateY(var(--btn-ry)) translateY(-3px) translateZ(8px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 14px 0 -8px rgba(63, 48, 34, 0.4),
    0 24px 46px -20px rgba(114, 87, 54, 0.72);
}
.hero-btn--ghost {
  border: 1px solid rgba(138, 106, 67, 0.2);
  color: #57422a;
  background: rgba(255, 252, 246, 0.28);
}
.hero-btn--ghost::before {
  background:
    linear-gradient(90deg, transparent, rgba(138, 106, 67, 0.12), transparent),
    radial-gradient(180px circle at var(--gx, 50%) var(--gy, 50%), rgba(180, 156, 120, 0.18), transparent 62%);
}
.hero-btn--ghost:hover {
  border-color: rgba(138, 106, 67, 0.36);
  background: rgba(255, 252, 246, 0.58);
  transform: perspective(680px) rotateX(var(--btn-rx)) rotateY(var(--btn-ry)) translateY(-2px);
  box-shadow: 0 14px 30px -22px rgba(87, 66, 42, 0.5);
}
.hero-btn-icon {
  transition: transform 0.65s var(--ease-fluid);
}
.hero-btn--primary:hover .hero-btn-icon { transform: translateX(4px) translateZ(18px); }
.hero-btn--ghost:hover .hero-btn-icon--ghost { transform: rotate(45deg) scale(1.06); }

/* Easing fluido compartilhado */
:root {
  --ease-fluid: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes hero-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(138, 106, 67, 0.38); }
  50% { box-shadow: 0 0 0 6px rgba(138, 106, 67, 0); }
}

@keyframes ambient-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  45% { transform: translate3d(2rem, -1.25rem, 0) scale(1.08); }
  70% { transform: translate3d(-1rem, 1.5rem, 0) scale(0.96); }
}

@keyframes intro-fallback-hide {
  to { opacity: 0; visibility: hidden; }
}

@keyframes intro-video-in {
  from { opacity: 0; transform: scale(1.015); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes intro-shell-fallback {
  to { opacity: 1; visibility: visible; }
}

@keyframes intro-shell-reveal {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.992);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ── Collage (green-museum inspired) ── */
.collage-zone {
  perspective: 1400px;
  --px: 0;
  --py: 0;
}

.collage-deco {
  position: absolute;
  top: -0.5rem;
  right: 8%;
  font-size: 1.75rem;
  color: rgba(15, 23, 42, 0.18);
  pointer-events: none;
  z-index: 0;
  animation: collage-deco-float 8s ease-in-out infinite;
}
@media (min-width: 768px) {
  .collage-deco { right: 12%; top: 0; }
}

.collage-wrap {
  position: relative;
  width: 100%;
  max-width: 410px;
  height: 490px;
  margin: 0 auto;
  transform-style: preserve-3d;
  will-change: transform;
}
@media (min-width: 640px) {
  .collage-wrap { max-width: 450px; height: 530px; }
}

.collage-arch {
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: 10rem 10rem 1.25rem 1.25rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.28);
  z-index: 10;
}
.collage-arch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transform: translate3d(calc(var(--px) * 1.2px), calc(var(--py) * 1.2px), 0) scale(1);
  transition: transform 1.1s var(--ease-fluid), filter 1.1s var(--ease-soft);
}
.collage-arch:hover .collage-arch-img {
  transform: translate3d(calc(var(--px) * 1.2px), calc(var(--py) * 1.2px), 0) scale(1.05);
}
.collage-arch-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.45) 0%, transparent 45%, transparent 100%);
  opacity: 0.85;
  transition: opacity 0.9s var(--ease-soft);
  pointer-events: none;
}
.collage-arch:hover .collage-arch-gradient {
  opacity: 1;
}

.collage-arch-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 4rem;
  z-index: 15;
  color: #f8fafc;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.9s var(--ease-soft), transform 0.9s var(--ease-fluid);
}
.collage-arch:hover .collage-arch-caption {
  opacity: 1;
  transform: translateY(0);
}
.collage-arch-caption .meta {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.15rem;
}
.collage-arch-caption .title {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
@media (max-width: 767px) {
  .collage-arch-caption {
    opacity: 1;
    transform: none;
  }
}

.collage-card-dark {
  position: absolute;
  top: -2%;
  right: -15%;
  width: 48%;
  z-index: 30;
  transform: rotate(4deg) translate3d(calc(var(--px) * 0.5px), calc(var(--py) * 0.5px), 0);
  transition: transform 1s var(--ease-fluid);
}
.collage-wrap:hover .collage-card-dark {
  transform: rotate(0deg) translate3d(calc(var(--px) * 0.35px), calc(-4px + var(--py) * 0.35px), 0);
}
.collage-card-dark-inner {
  padding: 0.48rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1.2rem;
  background: linear-gradient(145deg, #172033, #0f172a);
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.35);
  transition: box-shadow 1s var(--ease-soft);
}
.collage-card-dark:hover .collage-card-dark-inner {
  box-shadow: 0 28px 56px -14px rgba(15, 23, 42, 0.45);
}
.collage-card-dark-photo {
  aspect-ratio: 4 / 5;
  border-radius: 0.88rem;
  overflow: hidden;
  background: #1e293b;
}
.collage-card-dark-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  filter: grayscale(0.35) contrast(1.05);
  transition: transform 1.1s var(--ease-fluid), filter 1.1s var(--ease-soft);
}
.collage-card-dark:hover .collage-card-dark-photo img {
  transform: scale(1.06);
  filter: grayscale(0) contrast(1);
}
.collage-card-dark-caption { padding: 0.55rem 0.25rem 0.15rem; }
.collage-card-dark-caption .meta {
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.45);
}
.collage-card-dark-caption .title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #f8fafc;
  margin-top: 0.15rem;
}

.collage-card-ticket {
  position: absolute;
  bottom: 2%;
  left: -14%;
  width: 49%;
  z-index: 30;
  transform: rotate(-4deg) translate3d(calc(var(--px) * -0.4px), calc(var(--py) * -0.4px), 0);
  transition: transform 1s var(--ease-fluid);
}
.collage-wrap:hover .collage-card-ticket {
  transform: rotate(0deg) translate3d(calc(var(--px) * -0.25px), calc(-3px + var(--py) * -0.25px), 0);
}
.collage-card-ticket-inner {
  padding: 0.48rem;
  border: 1px solid rgba(255,255,255,0.36);
  border-radius: 1.2rem;
  background: linear-gradient(145deg, #b1b3a2, #919482);
  box-shadow: 0 16px 32px -12px rgba(15, 23, 42, 0.22);
  overflow: hidden;
  transition: box-shadow 1s var(--ease-soft);
}
.collage-card-ticket:hover .collage-card-ticket-inner {
  box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.3);
}
.collage-card-ticket-content { padding: 0; }
.collage-card-ticket-photo {
  aspect-ratio: 4 / 5;
  border-radius: 0.88rem;
  overflow: hidden;
  background: #e2e8f0;
  margin: 0;
}
.collage-card-ticket-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 1.1s var(--ease-fluid);
}
.collage-card-ticket:hover .collage-card-ticket-photo img {
  transform: scale(1.04);
}
.collage-card-ticket-body .admit {
  font-size: 7px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.45);
}
.collage-card-ticket-body .event {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0f172a;
  margin-top: 0.2rem;
  line-height: 1.15;
}
.collage-card-ticket-body .detail {
  font-size: 8px;
  color: rgba(15, 23, 42, 0.55);
  margin-top: 0.25rem;
}
.collage-ticket-tear {
  margin: 0.45rem -0.75rem 0;
  height: 0.6rem;
  background: radial-gradient(circle at 50% 0, transparent 5px, #9ea08f 5px);
  background-size: 12px 100%;
}
.collage-barcode {
  padding: 0.3rem 0.75rem 0.55rem;
  display: flex;
  gap: 2px;
  justify-content: center;
  opacity: 0.35;
}
.collage-barcode span {
  display: block;
  width: 2px;
  background: #0f172a;
  border-radius: 1px;
  transition: height 0.75s var(--ease-fluid);
}
.collage-card-ticket:hover .collage-barcode span:nth-child(odd) { height: 20px !important; }

.collage-play {
  --btn-rx: 0deg;
  --btn-ry: 0deg;
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 20;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  cursor: pointer;
  transform: perspective(520px) rotateX(var(--btn-rx)) rotateY(var(--btn-ry));
  transform-style: preserve-3d;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 4px 16px rgba(15, 23, 42, 0.2);
  transition: transform 0.75s var(--ease-fluid), background 0.75s var(--ease-soft);
}
.collage-play::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.26);
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 0.55s var(--ease-soft), transform 0.55s var(--ease-fluid);
}
.collage-play:hover {
  transform: perspective(520px) rotateX(var(--btn-rx)) rotateY(var(--btn-ry)) scale(1.08) translateX(2px) translateZ(12px);
  background: rgba(255, 255, 255, 0.35);
}
.collage-play:hover::before {
  opacity: 1;
  transform: scale(1);
}
.collage-play svg { transition: transform 0.75s var(--ease-fluid); }
.collage-play:hover svg { transform: translateX(2px) rotate(-8deg) translateZ(12px); }

@keyframes collage-deco-float {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.35; }
  50% { transform: translateY(-6px) rotate(8deg); opacity: 0.55; }
}

@media (max-width: 1023px) {
  .collage-card-dark { right: -10%; width: 42%; }
  .collage-card-ticket { left: -8%; width: 46%; }
}
@media (max-width: 480px) {
  .collage-wrap { max-width: 280px; height: 360px; }
  .collage-card-dark { right: -6%; }
  .collage-card-ticket { left: -4%; }
}
@media (prefers-reduced-motion: reduce) {
  .collage-card-dark, .collage-card-ticket, .collage-deco {
    animation: none !important;
  }
  .collage-arch-img, .collage-card-dark-photo img, .collage-card-ticket-photo img {
    transition: none !important;
  }
  .collage-wrap { transition: none !important; }
}
