:root {
  --bg: #070707;
  --bg-soft: #101010;
  --cream: #f7f1e8;
  --cream-soft: rgba(247, 241, 232, 0.72);
  --muted: rgba(247, 241, 232, 0.58);
  --line: rgba(247, 241, 232, 0.14);
  --gold: #c8a96a;
  --gold-soft: rgba(200, 169, 106, 0.18);
  --wine: #2a080b;
  --blue-black: #090d17;
  --card: rgba(255, 255, 255, 0.045);
  --radius: 28px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--cream);
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(#070707, #070707);
  background-size: 72px 72px, auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 75% 25%, rgba(200, 169, 106, 0.13), transparent 34%),
    radial-gradient(circle at 16% 72%, rgba(62, 73, 102, 0.22), transparent 32%),
    linear-gradient(135deg, #050505 0%, #0b0b0c 52%, #111014 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
}

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

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

ul {
  padding-left: 1.1rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 100;
  width: min(1220px, calc(100% - 40px));
  height: 72px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px 0 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.72);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.42);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-photo-wrap {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(200,169,106,0.95), rgba(247,241,232,0.35), rgba(200,169,106,0.9));
  box-shadow:
    0 0 0 1px rgba(200,169,106,0.18),
    0 0 24px rgba(200,169,106,0.22),
    0 10px 28px rgba(0,0,0,0.38);
  flex-shrink: 0;
}

.brand-photo-wrap::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,106,0.28);
  opacity: 0.85;
}

.brand-photo-wrap::after {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,106,0.2), transparent 68%);
  z-index: -1;
  opacity: 0.9;
}

.brand-photo {
  width: 40px;
  height: 40px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 2px solid #080808;
}

.brand-text {
  display: inline-block;
  color: var(--cream);
  line-height: 1;
  text-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.brand-text span {
  color: var(--gold);
}

.site-nav {
  display: flex;
  gap: 6px;
  align-items: center;
}

.site-nav a {
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--cream-soft);
  font-size: 0.9rem;
  font-weight: 700;
  transition: 0.25s ease;
}

.site-nav a:hover {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--cream);
}

/* Hero */
.hero {
  position: relative;
  width: min(1320px, calc(100% - 56px));
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 0.88fr;
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
  padding: 142px 0 76px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 110px 0 76px;
  z-index: -2;
  border: 1px solid rgba(247, 241, 232, 0.08);
  border-radius: 36px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035), transparent 36%),
    radial-gradient(circle at 82% 48%, rgba(200,169,106,0.13), transparent 34%);
}

.hero::after {
  content: "PORTFOLIO";
  position: absolute;
  right: 2%;
  bottom: 76px;
  z-index: -1;
  color: rgba(247, 241, 232, 0.045);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 12vw, 12rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-left: clamp(0px, 2vw, 22px);
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5.8rem, 14vw, 12.5rem);
  line-height: 0.78;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 26px 70px rgba(0,0,0,0.42);
}

.hero-subtitle {
  display: inline-flex;
  margin: 28px 0 30px;
  padding: 11px 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  color: var(--cream);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 610px;
  color: var(--cream-soft);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 850;
  transition: 0.28s ease;
}

.btn.primary {
  color: #090909;
  background: var(--cream);
  box-shadow: 0 16px 40px rgba(247,241,232,0.14);
}

.btn.primary::after {
  content: "→";
  margin-left: 12px;
  font-size: 1.2rem;
}

.btn.secondary {
  color: var(--cream);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
}

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

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: clamp(520px, 72vh, 720px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.editorial-frame {
  position: absolute;
  left: 50%;
  bottom: 42px;
  width: clamp(360px, 34vw, 560px);
  height: clamp(500px, 62vh, 680px);
  transform: translateX(-50%);
  border-radius: 280px 280px 34px 34px;
  background:
    linear-gradient(180deg, rgba(200,169,106,0.18), rgba(255,255,255,0.035)),
    linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.015));
  border: 1px solid rgba(247,241,232,0.12);
  box-shadow: inset 0 0 80px rgba(255,255,255,0.035), var(--shadow);
}

.editorial-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: inherit;
  border: 1px solid rgba(247,241,232,0.1);
}

.hero-person {
  position: relative;
  z-index: 3;
  width: clamp(390px, 38vw, 620px);
  max-width: none;
  transform: translateY(20px);
  filter: drop-shadow(0 44px 70px rgba(0,0,0,0.56));
  animation: editorialFloat 6s ease-in-out infinite;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 84%, rgba(0,0,0,0.78) 92%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 84%, rgba(0,0,0,0.78) 92%, transparent 100%);
}

@keyframes editorialFloat {
  0%, 100% { transform: translateY(20px); }
  50% { transform: translateY(8px); }
}

.scroll-note {
  position: absolute;
  left: 0;
  bottom: 34px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Shared sections */
.section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 100px 0;
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading h2 {
  max-width: 900px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Cards */
.about-grid,
.event-layout,
.live-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-card,
.interest-card,
.platform-card,
.price-card,
.ba-card,
.event-card,
.live-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.about-card,
.interest-card {
  padding: clamp(26px, 4vw, 42px);
}

.about-card p {
  color: var(--cream-soft);
  font-size: 1.05rem;
  line-height: 1.9;
}

.about-card p + p {
  margin-top: 18px;
}

.interest-card {
  background:
    radial-gradient(circle at 80% 20%, var(--gold-soft), transparent 36%),
    rgba(255,255,255,0.045);
}

.interest-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-row span {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cream-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Platforms */
.stats-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.platform-card,
.price-card,
.live-card {
  transition: 0.28s ease;
}

.platform-card:hover,
.price-card:hover,
.live-card:hover {
  transform: translateY(-7px);
  border-color: rgba(200,169,106,0.34);
}

.platform-card {
  padding: 30px;
}

.platform-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.025);
}

.platform-icon svg {
  width: 25px;
  height: 25px;
  fill: var(--gold);
}

.tiktok-icon svg {
  width: 24px;
  height: 24px;
}

.facebook-icon svg {
  width: 26px;
  height: 26px;
}

.instagram-icon svg {
  width: 27px;
  height: 27px;
}

.platform-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.handle {
  margin: 8px 0 24px;
  color: var(--gold);
  font-weight: 750;
}

.platform-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.platform-stats div {
  padding: 15px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
}

.platform-stats strong {
  display: block;
  font-size: 1.55rem;
}

.platform-stats span {
  color: var(--muted);
  font-size: 0.85rem;
}

/* Packages */
.price-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 32px;
}

.price-card.silver {
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
}

.price-card.gold {
  background: linear-gradient(135deg, rgba(200,169,106,0.22), rgba(255,255,255,0.035));
}

.price-card.diamond {
  background: linear-gradient(135deg, rgba(52,44,75,0.72), rgba(255,255,255,0.035));
}

.package-type {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.price-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  margin-bottom: 20px;
}

.price-card ul {
  color: var(--cream-soft);
  line-height: 1.8;
}

.price {
  margin-top: auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 4.7rem);
  font-weight: 900;
}

.payment-note {
  margin-top: 34px;
  color: var(--gold);
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(1rem, 2.4vw, 1.7rem);
  font-weight: 900;
  letter-spacing: 0.08em;
}

/* Events */
.ba-card,
.event-card {
  padding: clamp(28px, 4vw, 42px);
}

.ba-card {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background:
  radial-gradient(
    circle at top right,
    rgba(255,255,255,0.06),
    transparent 24%
  ),

  linear-gradient(
    90deg,
    rgba(0,0,0,0.84),
    rgba(0,0,0,0.18) 55%,
    transparent 100%
  ),

  linear-gradient(
    135deg,
    #180204 0%,
    #3a050a 45%,
    #650710 100%
  );
}

.ba-card h3,
.event-card h3 {
  position: relative;
  z-index: 3;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.large-price {
  position: relative;
  z-index: 3;
  max-width: 58%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 1.02;
  font-weight: 900;
  margin-bottom: 28px;
}

.ba-card ul {
  position: relative;
  z-index: 3;
  max-width: 58%;
  color: var(--cream-soft);
  line-height: 1.85;
}

.package-person {
  position: absolute;

  right: -5px;
  bottom: -40px;

  z-index: 2;

  width: min(760px, 78%);

  filter:
    drop-shadow(0 50px 80px rgba(0,0,0,0.55));

  transform: scale(1.08);

  transition:
    transform 0.5s ease;

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      black 0%,
      black 88%,
      rgba(0,0,0,0.72) 95%,
      transparent 100%
    );

  mask-image:
    linear-gradient(
      to bottom,
      black 0%,
      black 88%,
      rgba(0,0,0,0.72) 95%,
      transparent 100%
    );
}

.ba-card:hover .package-person {
  transform: scale(1.12);
}

.event-card {
  background:
    radial-gradient(circle at 90% 20%, rgba(200,169,106,0.12), transparent 34%),
    rgba(255,255,255,0.045);
}

.service-item {
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.service-item strong,
.service-item span,
.service-item b {
  display: block;
}

.service-item strong {
  font-size: 1.28rem;
}

.service-item span {
  color: var(--muted);
  margin-top: 5px;
}

.service-item b {
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

/* Live */
.live-card {
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(91,14,19,0.62), rgba(255,255,255,0.035));
}

.live-title {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.live-title h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.live-title strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.7rem;
}

.live-card ul {
  color: var(--cream-soft);
  line-height: 1.9;
}

/* Contact */
.contact-card {
  padding: clamp(38px, 6vw, 78px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(200,169,106,0.12), transparent 42%),
    rgba(255,255,255,0.045);
}

.contact-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 56px 0;
}

.contact-grid > div {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,0.035);
}

.contact-icon {
  color: var(--gold);
  font-size: 3rem;
  margin-bottom: 14px;
}

.contact-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.contact-grid a {
  color: var(--cream-soft);
}

.thank-you {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 900;
}

.thank-you::before,
.thank-you::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.site-footer {
  padding: 26px 20px 42px;
  color: var(--muted);
  text-align: center;
}

.footer-credit {
  margin-top: 10px;
  font-size: 0.88rem;
  color: rgba(247, 241, 232, 0.5);
}

.footer-credit a {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: 0.25s ease;
}

.footer-credit a:hover {
  color: var(--cream);
}

/* Responsive */
@media (max-width: 900px) {
  .site-header {
    top: 14px;
    width: calc(100% - 28px);
    height: 66px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(290px, calc(100vw - 32px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(7,7,7,0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .hero {
    width: min(100% - 28px, 760px);
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 118px;
  }

  .hero::before {
    inset: 92px 0 42px;
  }

  .hero::after {
    display: none;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-subtitle {
    justify-content: center;
  }

  .hero-text {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .scroll-note {
    display: none;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-person {
    width: min(460px, 100%);
  }

  .about-grid,
  .stats-grid,
  .package-grid,
  .event-layout,
  .live-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .large-price,
  .ba-card ul {
    max-width: 100%;
  }

  .package-person {
    position: relative;
    right: -21px;
    bottom: auto;
    width: min(430px, 100%);
    margin: 30px auto -44px;
  }
}

@media (max-width: 560px) {
  .section {
    width: min(100% - 28px, var(--container));
    padding: 74px 0;
  }

  .hero h1 {
    font-size: clamp(4.5rem, 24vw, 6.4rem);
  }

  .hero-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 420px;
  }

  .editorial-frame {
    width: 320px;
    height: 430px;
  }

  .platform-stats {
    grid-template-columns: 1fr;
  }

  .live-title {
    flex-direction: column;
  }

  .brand {
  gap: 10px;
  font-size: 1.28rem;
}

.brand-photo-wrap {
  width: 40px;
  height: 40px;
}

.brand-photo {
  width: 34px;
  height: 34px;
}

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .hero-person,
  .btn,
  .platform-card,
  .price-card,
  .live-card {
    animation: none;
    transition: none;
  }
}

/* =========================================================
   PERFORMANCE HIGHLIGHTS
========================================================= */

.proof-section {
  position: relative;
}

.proof-grid {
  display: grid;
  gap: 28px;
}

.proof-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.08);

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.02)
    );

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  padding: 30px;

  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.35);
}

.proof-card:hover {
  transform: translateY(-8px);

  border-color:
    rgba(200,169,106,0.28);

  box-shadow:
    0 40px 90px rgba(0,0,0,0.42);
}

.proof-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top right,
      rgba(200,169,106,0.10),
      transparent 32%
    );

  pointer-events: none;
}

.proof-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  margin-bottom: 28px;
}

.proof-platform {
  display: flex;
  align-items: center;
  gap: 12px;

  font-size: 0.9rem;
  font-weight: 800;

  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: var(--cream-soft);
}

.proof-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;

  background: var(--gold);

  box-shadow:
    0 0 14px rgba(200,169,106,0.8);
}

.proof-number {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;

  color: var(--cream);
}

.proof-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.proof-images.single {
  grid-template-columns: 1fr;
  max-width: 420px;
}

.proof-images img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 24px;

  border: 1px solid rgba(255,255,255,0.08);

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.proof-card:hover .proof-images img {
  transform: scale(1.02);

  box-shadow:
    0 30px 70px rgba(0,0,0,0.35);
}

.proof-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 26px;
}

.proof-footer span {
  padding: 10px 14px;

  border-radius: 999px;

  background:
    rgba(255,255,255,0.05);

  border:
    1px solid rgba(255,255,255,0.08);

  color: var(--cream-soft);

  font-size: 0.82rem;
  font-weight: 700;

  letter-spacing: 0.05em;
}

/* MOBILE */

@media (max-width: 900px) {

  .proof-card {
    padding: 22px;
    border-radius: 28px;
  }

  .proof-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .proof-images {
    grid-template-columns: 1fr;
  }

  .proof-images.single {
    max-width: 100%;
  }

  .proof-number {
    font-size: 2.2rem;
  }
}

/* =========================================================
   PREMIUM FINAL UPGRADES
   Parallax, marquee, mobile proof gallery, cursor glow
========================================================= */

/* Smoother reveal */
.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Subtle parallax hero */
.hero {
  --hero-person-x: 0px;
  --hero-person-y: 0px;
  --hero-scroll-y: 0px;
  --frame-x: 0px;
  --frame-y: 0px;
}

.hero-person {
  animation: none;
  transform:
    translate3d(
      var(--hero-person-x),
      calc(20px + var(--hero-person-y) + var(--hero-scroll-y)),
      0
    );
  transition: filter 0.35s ease;
}

.editorial-frame {
  transform:
    translateX(-50%)
    translate3d(var(--frame-x), var(--frame-y), 0);
}

.hero-visual:hover .hero-person {
  filter:
    drop-shadow(0 48px 76px rgba(0,0,0,0.6))
    drop-shadow(0 0 18px rgba(200,169,106,0.12));
}

/* Animated floating grain */
body::after {
  animation: grainFloat 8s steps(8) infinite;
}

@keyframes grainFloat {
  0% {
    transform: translate3d(0, 0, 0);
  }

  25% {
    transform: translate3d(-2%, 1%, 0);
  }

  50% {
    transform: translate3d(1%, -2%, 0);
  }

  75% {
    transform: translate3d(2%, 2%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* Luxury marquee */
.luxury-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(200,169,106,0.06), transparent 35%, rgba(200,169,106,0.06));
}

.luxury-marquee::before,
.luxury-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 120px;
  height: 100%;
  pointer-events: none;
}

.luxury-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #070707, transparent);
}

.luxury-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #070707, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 42px;
  padding: 22px 0;
  animation: luxuryMarquee 28s linear infinite;
}

.marquee-track span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2.2vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track span::after {
  content: "•";
  margin-left: 42px;
  color: rgba(247,241,232,0.35);
}

@keyframes luxuryMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Collaboration strip */
.collab-section {
  padding-top: 90px;
}

.collab-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.collab-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 0%, rgba(200,169,106,0.14), transparent 32%),
    rgba(255,255,255,0.035);
  box-shadow: var(--shadow);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.collab-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200,169,106,0.35);
  background:
    radial-gradient(circle at 90% 0%, rgba(200,169,106,0.2), transparent 34%),
    rgba(255,255,255,0.055);
}

.collab-card span {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 900;
}

.collab-card h3 {
  margin-bottom: 14px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.05;
}

.collab-card p {
  color: var(--cream-soft);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* Animated number style */
.platform-stats strong,
.proof-number,
.price,
.live-title strong,
.large-price {
  font-variant-numeric: tabular-nums;
}

/* Premium cursor glow */
.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 260px;
  height: 260px;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background:
    radial-gradient(circle,
      rgba(200,169,106,0.16),
      rgba(200,169,106,0.07) 34%,
      transparent 68%);
  filter: blur(14px);
  transition: opacity 0.35s ease;
  mix-blend-mode: screen;
}

body.cursor-active .cursor-glow {
  opacity: 1;
}

/* Better mobile proof gallery */
@media (max-width: 700px) {
  .proof-card {
    overflow: visible;
  }

  .proof-images {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 0 2px 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .proof-images img {
    min-width: 84%;
    height: auto;
    scroll-snap-align: center;
  }

  .proof-images.single img {
    min-width: 100%;
  }

  .proof-images::-webkit-scrollbar {
    height: 6px;
  }

  .proof-images::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 99px;
  }

  .proof-images::-webkit-scrollbar-thumb {
    background: rgba(200,169,106,0.45);
    border-radius: 99px;
  }
}

/* Desktop premium proof hover */
@media (min-width: 901px) {
  .proof-card {
    transform-style: preserve-3d;
  }

  .proof-images img:first-child {
    transform-origin: left center;
  }

  .proof-images img:last-child {
    transform-origin: right center;
  }

  .proof-card:hover .proof-images img:first-child {
    transform: translateY(-4px) rotate(-1deg) scale(1.02);
  }

  .proof-card:hover .proof-images img:last-child {
    transform: translateY(6px) rotate(1deg) scale(1.02);
  }
}

/* Mobile layout upgrade */
@media (max-width: 900px) {
  .collab-strip {
    grid-template-columns: 1fr 1fr;
  }

  .collab-card {
    min-height: 230px;
  }

  .hero-person {
    transform: translateY(18px);
  }

  .editorial-frame {
    transform: translateX(-50%);
  }
}

@media (max-width: 560px) {
  .collab-strip {
    grid-template-columns: 1fr;
  }

  .luxury-marquee::before,
  .luxury-marquee::after {
    width: 64px;
  }

  .marquee-track {
    gap: 30px;
    padding: 18px 0;
  }

  .marquee-track span::after {
    margin-left: 30px;
  }
}

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  body::after,
  .marquee-track,
  .hero-person {
    animation: none;
  }

  .cursor-glow {
    display: none;
  }
}