@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/montserrat.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/playfair.woff2") format("woff2");
}

@font-face {
  font-family: "Cinzel";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("../fonts/cinzel.woff2") format("woff2");
}

@font-face {
  font-family: "Great Vibes";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/great-vibes.woff2") format("woff2");
}

:root {
  --bg: #050505;
  --bg-2: #0a0705;
  --gold: #d4af37;
  --gold-soft: #c49b66;
  --gold-deep: #b8860b;
  --gold-light: #f0d9a0;
  --gold-pale: #f6e7c6;
  --text: #f7f3ea;
  --muted: #b9b1a4;
  --dim: #8a8276;
  --line: rgba(212, 175, 55, 0.38);
  --serif: "Playfair Display", Georgia, serif;
  --display: "Cinzel", "Playfair Display", serif;
  --sans: "Montserrat", system-ui, sans-serif;
  --script: "Great Vibes", cursive;
  --radius: 16px;
  --header-h: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
}

body.pam-body {
  overflow-x: hidden;
  min-height: 100vh;
  background:
    radial-gradient(1200px 600px at 80% 10%, rgba(184, 134, 11, 0.12), transparent 55%),
    radial-gradient(900px 500px at 10% 80%, rgba(196, 155, 102, 0.08), transparent 50%),
    var(--bg);
}

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

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

button {
  font: inherit;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
}

.gold-veil {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(1px 1px at 12% 22%, rgba(240, 217, 160, 0.35), transparent 2px),
    radial-gradient(1px 1px at 48% 61%, rgba(212, 175, 55, 0.28), transparent 2px),
    radial-gradient(1px 1px at 81% 18%, rgba(246, 231, 198, 0.22), transparent 2px),
    radial-gradient(1px 1px at 33% 84%, rgba(212, 175, 55, 0.18), transparent 2px);
  opacity: 0.7;
}

.site-header,
.hero,
.profile-wrap,
.socials,
.final-cta,
.site-footer,
.site-menu {
  position: relative;
  z-index: 1;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px 28px;
  min-height: 96px;
  height: auto;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.42) 62%, transparent 100%);
}

.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  color: var(--gold-pale);
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.brand-crown {
  width: 52px;
  height: 52px;
  color: #f3d7a0;
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.55));
  flex: 0 0 52px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.brand-name {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 0.22em;
  font-weight: 700;
  line-height: 1;
  padding-left: 0.08em;
  color: #f8e7c0;
  text-shadow: 0 0 14px rgba(212, 175, 55, 0.4);
  text-transform: uppercase;
}

.brand-last {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.28em;
  font-weight: 600;
  line-height: 1;
  padding-left: 0.08em;
  color: #e8c992;
  text-transform: uppercase;
}

.brand-crown svg,
.btn-ico svg,
.menu-toggle svg,
.star-rule svg,
.scroll-hint svg,
.card-icon svg,
.card-go svg,
.footer-icons svg,
.cta-diamond svg,
.verified svg {
  width: 100%;
  height: 100%;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 11px;
}

.btn-ghost {
  border: 1px solid var(--gold-soft);
  color: var(--gold-pale);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.08), 0 0 18px rgba(184, 134, 11, 0.18);
}

.btn-ghost:hover {
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.35);
}

.btn-glow {
  margin-top: 8px;
  width: auto;
  align-self: center;
  padding: 13px 26px;
  font-size: 12px;
  border: 1px solid var(--gold);
  color: var(--gold-pale);
  background: radial-gradient(circle at 50% 50%, rgba(184, 134, 11, 0.16), transparent 70%);
  box-shadow:
    0 0 0 1px rgba(240, 217, 160, 0.12),
    0 0 28px rgba(212, 175, 55, 0.28),
    inset 0 0 18px rgba(212, 175, 55, 0.08);
}

.btn-glow:hover {
  box-shadow:
    0 0 0 1px rgba(240, 217, 160, 0.28),
    0 0 42px rgba(212, 175, 55, 0.48);
}

.btn-solid {
  padding: 16px 28px;
  font-size: 12px;
  color: #1a1208;
  background: linear-gradient(180deg, #f3d7a0 0%, #d4af37 48%, #b07a2e 100%);
  box-shadow: 0 8px 28px rgba(184, 134, 11, 0.38), 0 0 24px rgba(212, 175, 55, 0.28);
}

.btn-solid:hover {
  box-shadow: 0 10px 34px rgba(212, 175, 55, 0.5);
}

.btn-ico {
  width: 14px;
  height: 14px;
  display: inline-flex;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  color: var(--gold-light);
  display: grid;
  place-items: center;
}

.menu-toggle svg {
  width: 26px;
  height: 26px;
}

.menu-toggle-close {
  display: none;
}

body.menu-open .menu-toggle-open {
  display: none;
}

body.menu-open .menu-toggle-close {
  display: block;
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 25;
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(16px);
  display: grid;
  place-items: center;
}

.site-menu[hidden] {
  display: none;
}

.site-menu-inner {
  text-align: center;
}

.menu-kicker {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted);
}

.menu-title {
  margin: 8px 0 36px;
  font-family: var(--serif);
  font-size: 48px;
  background: linear-gradient(180deg, #f6e7c6, #d4af37 55%, #8d6418);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.site-menu a {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text);
}

.site-menu a:hover,
.menu-join {
  color: var(--gold-light);
}

.hero {
  min-height: 100svh;
  height: 100svh;
  max-height: 1080px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 96px 4vw 72px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.hero-bg,
.hero-void,
.hero-dust,
.hero-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg {
  background-image: url("../img/hero-bg.jpg");
  background-size: cover;
  background-position: center left;
  opacity: 0.5;
  filter: saturate(0.85) brightness(0.72);
}

.hero-void {
  background-image: url("../img/hero-void.jpg");
  background-size: cover;
  background-position: right center;
  opacity: 0.38;
  mix-blend-mode: lighten;
}

.hero-dust {
  background-image: url("../img/gold-dust.jpg");
  background-size: cover;
  opacity: 0.34;
  mix-blend-mode: screen;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.42) 0%, rgba(5, 5, 5, 0.22) 36%, rgba(5, 5, 5, 0.06) 58%, rgba(5, 5, 5, 0.38) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.18) 0%, transparent 20%, transparent 70%, #050505 100%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0;
  width: min(520px, 42vw);
  flex: 0 1 520px;
  max-width: none;
  min-width: 0;
  container-type: inline-size;
  overflow: visible;
  transform: translateX(-14vw);
}

.hero-kicker {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  font-weight: 500;
  color: #efe8da;
}

.hero-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 8.8cqi, 72px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  white-space: nowrap;
  max-width: 100%;
  background: linear-gradient(180deg, #f8e7c0 0%, #e1bf6a 38%, #c49b66 68%, #9a6f28 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.45));
}

.star-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(320px, 78%);
  margin: 22px auto 20px;
  color: var(--gold);
}

.star-rule span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e8c992, var(--gold), #e8c992, transparent);
  opacity: 1;
}

.star-rule svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.hero-tagline {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 400;
  color: #e8e0d2;
}

.hero-script {
  margin: 0 0 28px;
  font-family: var(--script);
  font-size: 30px;
  color: var(--gold-light);
  letter-spacing: 0.01em;
}

.active-now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 10px;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  background: rgba(10, 28, 16, 0.88);
  border: 1px solid rgba(74, 222, 128, 0.55);
  color: #bbf7d0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.28);
}

.active-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse-green 1.7s ease-out infinite;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-portrait {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  margin-left: -72px;
  flex: 0 0 auto;
}

.hero-cutout {
  height: min(78vh, 760px);
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: center;
  filter:
    drop-shadow(0 18px 28px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 28px rgba(196, 155, 102, 0.18));
  mask-image: linear-gradient(180deg, #000 88%, transparent 100%);
}

.profile-wrap {
  margin-top: -90px;
  padding-bottom: 18px;
}

.curve {
  height: 110px;
  color: var(--gold);
}

.curve svg {
  width: 100%;
  height: 110px;
  display: block;
}

.profile {
  margin-top: -86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 3;
}

.avatar-ring {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(180deg, #f3d7a0, #b8860b);
  box-shadow: 0 0 0 6px rgba(5, 5, 5, 0.92), 0 0 24px rgba(212, 175, 55, 0.35);
  overflow: visible;
  position: relative;
}

.avatar-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 50%;
  background: #111;
}

.avatar-online {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #22c55e;
  border: 3px solid #050505;
  box-shadow: 0 0 10px #4ade80;
  animation: pulse-green 1.7s ease-out infinite;
}

.profile-name {
  margin: 18px 0 4px;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.verified {
  width: 22px;
  height: 22px;
  display: inline-flex;
}

.profile-handle {
  margin: 0;
  font-size: 14px;
  color: var(--dim);
}

.profile-bio {
  margin: 10px 0 18px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-hint {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  display: grid;
  place-items: center;
  animation: bob 2.2s ease-in-out infinite;
}

.scroll-hint svg {
  width: 16px;
  height: 16px;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.socials {
  padding: 36px 5vw 20px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
  justify-items: center;
}

.social-card {
  position: relative;
  width: 100%;
  min-height: 220px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(196, 155, 102, 0.42);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  isolation: isolate;
}

.social-card.has-video {
  grid-column: span 1;
  width: min(100%, 280px);
  min-height: 0;
  aspect-ratio: 9 / 16;
  border-radius: 28px;
}

.social-card:not(.has-video) {
  grid-column: 2 / span 2;
  max-width: 420px;
}

.card-photo,
.card-shade,
.card-video {
  position: absolute;
  inset: 0;
}

.card-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.social-card.has-video:hover .card-video {
  transform: scale(1.06);
}

.card-photo {
  background-image: url("../img/ivana-photo.png");
  background-size: cover;
  background-position: var(--card-pos, center);
  transform: scale(1.04);
  transition: transform 0.6s ease;
}

.social-card:hover .card-photo {
  transform: scale(1.1);
}

.filter-warm .card-photo {
  filter: saturate(1.15) contrast(1.05) sepia(0.18) brightness(0.72);
}

.filter-neutral .card-photo {
  filter: saturate(0.9) brightness(0.68);
}

.filter-neon .card-photo {
  filter: saturate(1.35) hue-rotate(312deg) contrast(1.1) brightness(0.7);
}

.filter-mono .card-photo {
  filter: grayscale(1) contrast(1.15) brightness(0.62);
}

.filter-cool .card-photo {
  filter: saturate(0.85) hue-rotate(198deg) brightness(0.68);
}

.social-card.has-video .card-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.28) 46%, rgba(0, 0, 0, 0.68) 100%);
}

.card-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.55) 48%, rgba(0, 0, 0, 0.78) 100%);
}

.card-body {
  position: relative;
  z-index: 2;
  min-height: 280px;
  padding: 28px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}

.social-card.has-video .card-body {
  min-height: 0;
  height: 100%;
}

.card-icon {
  width: 46px;
  height: 46px;
  color: var(--gold-pale);
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.35));
}

.card-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.card-desc {
  font-size: 13px;
  color: #d9d1c4;
}

.card-go {
  margin-top: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.7);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.28);
}

.card-go svg {
  width: 16px;
  height: 16px;
}

.final-cta {
  padding: 28px 6vw 10px;
}

.cta-box {
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid rgba(196, 155, 102, 0.5);
  border-radius: 18px;
  padding: 22px 22px 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(90deg, rgba(20, 14, 8, 0.9), rgba(10, 8, 6, 0.72));
  box-shadow: inset 0 0 40px rgba(184, 134, 11, 0.06);
}

.cta-copy {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-diamond {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.45));
}

.cta-copy p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-copy strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.cta-copy span {
  font-size: 14px;
  color: #ddd4c6;
}

.site-footer {
  padding: 34px 20px 28px;
  text-align: center;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-icons span {
  width: 18px;
  height: 18px;
  display: inline-flex;
}

.site-footer p {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #6f6a62;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin: 0 0 14px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.footer-legal a:hover {
  color: var(--gold-pale);
}

.legal-body .site-header {
  position: sticky;
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.legal-main {
  padding: 40px 6vw 64px;
}

.legal-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px 32px 48px;
  border: 1px solid rgba(196, 155, 102, 0.38);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(20, 14, 8, 0.92), rgba(8, 6, 5, 0.92));
}

.legal-kicker {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}

.legal-card h1 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  color: var(--gold-pale);
}

.legal-updated {
  margin: 0 0 28px;
  font-size: 13px;
  color: var(--dim);
}

.legal-card h2 {
  margin: 28px 0 10px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold-light);
}

.legal-card p,
.legal-card li {
  color: #ddd4c6;
  font-size: 15px;
  line-height: 1.7;
}

.legal-card ul {
  padding-left: 20px;
}

.legal-card a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 980px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    height: auto;
    max-height: none;
    padding: 96px 0 0;
  }

  .hero-copy {
    padding: 110px 24px 40px;
    width: auto;
    flex: none;
    max-width: none;
    align-items: center;
    text-align: center;
    transform: none;
  }

  .btn-glow {
    align-self: center;
  }

  .hero-portrait {
    margin-left: 0;
    justify-content: center;
  }

  .hero-title {
    white-space: normal;
    font-size: clamp(48px, 14vw, 80px);
  }

  .star-rule {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-portrait {
    min-height: 62vh;
    padding-top: 0;
  }

  .hero-cutout {
    height: 62vh;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.55) 0%, rgba(5, 5, 5, 0.2) 28%, rgba(5, 5, 5, 0.1) 55%, #050505 100%);
  }

  .social-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .social-card,
  .social-card.has-video,
  .social-card:not(.has-video) {
    grid-column: auto;
    width: min(100%, 380px);
  }

  .social-card:not(.has-video) {
    width: 100%;
    min-height: 240px;
  }

  .social-card.has-video {
    max-height: none;
    min-height: 0;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .cta-copy {
    flex-direction: column;
  }

  .site-header {
    padding: 12px 14px 20px;
  }

  .brand-crown {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-name {
    font-size: 18px;
    letter-spacing: 0.18em;
  }

  .brand-last {
    font-size: 12px;
  }

  .legal-card {
    padding: 24px 18px 32px;
  }

  .header-actions .btn-sm {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-hint,
  .active-dot,
  .avatar-online,
  .reveal,
  .reveal-portrait,
  .social-card {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal,
  .reveal-portrait {
    opacity: 0;
    animation: pamReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .hero-copy .reveal:nth-child(1) { animation-delay: 0.05s; }
  .hero-copy .reveal:nth-child(2) { animation-delay: 0.16s; }
  .hero-copy .reveal:nth-child(3) { animation-delay: 0.28s; }
  .hero-copy .reveal:nth-child(4) { animation-delay: 0.38s; }
  .hero-copy .reveal:nth-child(5) { animation-delay: 0.48s; }
  .hero-copy .reveal:nth-child(6) { animation-delay: 0.58s; }
  .reveal-portrait { animation-delay: 0.2s; }

  .social-card {
    opacity: 0;
    animation: pamReveal 0.7s ease forwards;
  }
  .social-card:nth-child(1) { animation-delay: 0.4s; }
  .social-card:nth-child(2) { animation-delay: 0.48s; }
  .social-card:nth-child(3) { animation-delay: 0.56s; }
  .social-card:nth-child(4) { animation-delay: 0.64s; }
  .social-card:nth-child(5) { animation-delay: 0.72s; }
}

@keyframes pamReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
