﻿:root {
  --burgundy: #4a0e1a;
  --burgundy-soft: #6d1930;
  --black: #0d0d0d;
  --black-soft: #161214;
  --gold: #c9a961;
  --gold-bright: #ddc680;
  --gold-soft: rgba(201, 169, 97, 0.18);
  --bone: #f5ede0;
  --bone-muted: rgba(245, 237, 224, 0.72);
  --line: rgba(201, 169, 97, 0.18);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --radius: 30px;
  --radius-sm: 22px;
  --container: min(1180px, calc(100vw - 28px));
  --transition: 260ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--bone);
  background:
    radial-gradient(circle at top left, rgba(201, 169, 97, 0.09), transparent 26%),
    radial-gradient(circle at 80% 12%, rgba(74, 14, 26, 0.45), transparent 30%),
    linear-gradient(180deg, #120d0f 0%, #090909 100%);
  overflow-x: hidden;
}

body.js-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 720ms ease, transform 720ms ease;
}

body.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body[data-lang="en"] [data-ro][data-en],
body[data-lang="ro"] [data-ro][data-en] {
  transition: opacity var(--transition);
}

a,
button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
}

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

button {
  border: 0;
  background: none;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(245, 237, 224, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--bone);
  padding: 15px 16px;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(201, 169, 97, 0.42);
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.08);
}

select option {
  color: #111;
}

section,
footer,
header {
  position: relative;
  z-index: 2;
}

.section-shell {
  width: var(--container);
  margin: 0 auto;
}

.ambient,
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
}

.ambient {
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.26;
  animation: drift 18s ease-in-out infinite alternate;
}

.ambient-a {
  top: -10rem;
  right: -8rem;
  background: rgba(201, 169, 97, 0.2);
}

.ambient-b {
  inset: auto auto -12rem -10rem;
  background: rgba(74, 14, 26, 0.46);
  animation-duration: 24s;
}

.grain {
  background-image:
    linear-gradient(rgba(255,255,255,0.015), rgba(255,255,255,0.015)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  opacity: 0.2;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translate(-50%, -12px);
  width: var(--container);
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(11, 11, 11, 0.2);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), border-color var(--transition), background var(--transition);
  z-index: 20;
}

.site-header.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  border-color: rgba(201, 169, 97, 0.16);
  background: rgba(11, 11, 11, 0.82);
}

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

.site-header nav a,
.lang-toggle {
  position: relative;
  text-decoration: none;
  color: var(--bone);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header nav a::after,
.footer-meta a::after,
.tier-cta::after,
.fondator-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform var(--transition);
}

.site-header nav a:hover::after,
.footer-meta a:hover::after,
.tier-cta:hover::after,
.fondator-link:hover::after {
  transform: scaleX(1);
}

.brand-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 97, 0.16);
  cursor: pointer;
}

.lang-toggle .active {
  color: var(--gold);
}

.hero {
  min-height: 100vh;
  padding: 100px 0 48px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.32)),
    url("https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?auto=format&fit=crop&w=1600&q=80") center/cover;
  transform: scale(1.08);
  animation: heroPan 22s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 22%, rgba(201, 169, 97, 0.18), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(74, 14, 26, 0.38), transparent 30%),
    linear-gradient(180deg, rgba(9, 9, 9, 0.08) 0%, rgba(9, 9, 9, 0.72) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 26px;
}

.hero-copy {
  max-width: 42rem;
}

.eyebrow,
.card-kicker,
.tier-name,
.step-icon,
.tier-badge,
.fondator-mini {
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow,
.card-kicker,
.fondator-mini {
  font-size: 0.78rem;
  color: var(--gold);
  margin: 0 0 14px;
}

h1,
h2,
h3,
.brand-mark,
.drop-name,
.price-block strong,
.fondator-price {
  font-family: "Cormorant Garamond", serif;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  font-size: clamp(4rem, 12vw, 7.4rem);
  line-height: 0.92;
  margin-bottom: 18px;
}

.hero-subline {
  font-size: clamp(1.06rem, 3vw, 1.45rem);
  color: var(--bone);
  margin-bottom: 16px;
}

.hero-text,
.section-intro p,
.manifesto p,
.billing-note,
.step-card p,
.application-copy p,
.form-footnote,
.faq-item p,
.footer-line,
.footer-meta p,
.event-list p,
.hero-meta p,
.hero-points li,
.application-success p,
.price-tagline,
.drop-meta,
.fondator-copy,
.fondator-footnote,
.member-stamp {
  color: var(--bone-muted);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 28px 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.btn:hover,
.tier-card:hover,
.scroll-cue:hover,
.site-header nav a:hover,
.footer-meta a:hover,
.lang-toggle:hover,
.drop-card:hover,
.fondator-card:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1206;
  box-shadow: 0 18px 40px rgba(201, 169, 97, 0.2);
}

.btn-full {
  width: 100%;
}

.hero-meta {
  display: grid;
  gap: 6px;
}

.hero-meta p:first-child {
  color: var(--bone);
  font-variant-numeric: tabular-nums;
}

.hero-card,
.invitation,
.tier-card,
.step-card,
.application-wrap,
.faq-item,
.events,
.event-list article,
.application-form,
.application-success,
.drop-card,
.fondator-card {
  position: relative;
  background: linear-gradient(180deg, rgba(23, 16, 18, 0.9), rgba(10, 10, 10, 0.96));
  border: 1px solid rgba(201, 169, 97, 0.14);
  box-shadow: var(--shadow);
}

.club-note,
.invitation,
.application-wrap,
.fondator-card {
  overflow: hidden;
}

.club-note,
.invitation,
.application-wrap,
.application-form,
.application-success,
.fondator-card {
  border-radius: var(--radius);
}

.club-note {
  padding: 28px;
  background: linear-gradient(180deg, rgba(22, 16, 18, 0.88), rgba(10, 10, 10, 0.94));
}

.club-note::before,
.invitation::before,
.tier-card::before,
.application-wrap::before,
.drop-card::before,
.fondator-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(201, 169, 97, 0.08), transparent 42%);
  pointer-events: none;
}

.member-number {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 9px 12px;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
  font-size: 0.78rem;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 97, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.club-note h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 0.98;
  margin-bottom: 18px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.hero-points li {
  padding-left: 18px;
  position: relative;
}

.hero-points li::before,
.tier-card li::before,
.fondator-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: 38px;
  height: 62px;
  border-radius: 999px;
  border: 1px solid rgba(245, 237, 224, 0.22);
  display: flex;
  justify-content: center;
  padding-top: 10px;
  z-index: 3;
}

.scroll-cue span {
  width: 6px;
  height: 12px;
  border-radius: 999px;
  background: var(--gold);
  animation: scrollPulse 1.8s infinite;
}

.invitation,
.tiers,
.how-it-works,
.flash-drops,
.application,
.events,
.faq,
.site-footer {
  padding: 86px 0;
}

.section-intro {
  max-width: 42rem;
  margin-bottom: 30px;
}

.section-intro.narrow {
  max-width: 38rem;
}

.section-intro h2,
.application-copy h2,
.application-success h3 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.96;
  margin-bottom: 14px;
}

.manifesto {
  max-width: 54rem;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.manifesto p {
  font-size: clamp(1.12rem, 2.8vw, 1.45rem);
}

.tier-grid,
.steps-grid,
.faq-list,
.event-list,
.drop-grid {
  display: grid;
  gap: 18px;
}

.tier-card,
.drop-card {
  padding: 24px;
  border-radius: 28px;
  transition: transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.tier-card:hover,
.drop-card:hover,
.fondator-card:hover {
  border-color: rgba(201, 169, 97, 0.34);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(201, 169, 97, 0.08);
}

.tier-featured {
  background: linear-gradient(180deg, rgba(40, 18, 23, 0.96), rgba(10, 10, 10, 0.96));
}

.tier-badge {
  display: inline-flex;
  padding: 8px 10px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: #1a1206;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  font-size: 0.7rem;
  font-weight: 700;
}

.tier-top {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.tier-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 169, 97, 0.22);
  color: var(--gold);
  font-size: 1.15rem;
}

.tier-name {
  font-size: 0.84rem;
  color: var(--gold);
  margin-bottom: 2px;
}

.tier-sub {
  color: var(--bone-muted);
  margin: 0;
}

.price-block {
  display: flex;
  align-items: end;
  gap: 10px;
  margin-bottom: 10px;
}

.price-block strong {
  font-size: clamp(2.9rem, 6vw, 4.1rem);
  line-height: 1;
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  letter-spacing: -0.05em;
  text-shadow: 0 0 18px rgba(201, 169, 97, 0.08);
}

.price-block span {
  color: var(--gold);
  padding-bottom: 6px;
}

.price-tagline {
  margin-bottom: 18px;
  color: var(--bone);
  font-size: 0.98rem;
}

.billing-note {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.tier-card ul,
.fondator-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
}

.tier-card li,
.fondator-list li {
  position: relative;
  padding-left: 18px;
  color: var(--bone-muted);
  line-height: 1.65;
}

.tier-cta,
.fondator-link {
  position: relative;
  display: inline-flex;
  width: fit-content;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.tier-cta {
  color: var(--bone);
}

.fondator-link {
  color: var(--gold-bright);
}

.fondator-shell {
  margin-top: 54px;
}

.fondator-rule {
  width: min(720px, 100%);
  height: 1px;
  margin: 0 auto 28px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 97, 0.72) 20%, rgba(201, 169, 97, 0.72) 80%, transparent 100%);
}

.fondator-card {
  max-width: 620px;
  margin: 0 auto;
  padding: 34px 30px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(201, 169, 97, 0.09), transparent 42%),
    linear-gradient(180deg, rgba(24, 15, 17, 0.95), rgba(9, 9, 9, 0.98));
  transition: transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.fondator-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 169, 97, 0.09);
  border-radius: calc(var(--radius) - 10px);
  pointer-events: none;
}

.fondator-intro {
  margin: 0 auto 18px;
}

.fondator-intro .eyebrow {
  margin-bottom: 8px;
}

.fondator-intro h2 {
  font-size: clamp(2.3rem, 6vw, 3.7rem);
  margin-bottom: 8px;
}

.fondator-sub,
.fondator-copy-en {
  color: rgba(245, 237, 224, 0.52);
  font-size: 0.95rem;
}

.fondator-copy {
  max-width: 36rem;
  margin: 0 auto 12px;
}

.fondator-price {
  margin: 26px 0 18px;
  color: var(--gold-bright);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.fondator-list {
  max-width: 29rem;
  margin: 0 auto 24px;
  text-align: left;
}

.fondator-footnote {
  margin: 18px 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.step-card,
.faq-item,
.event-list article {
  padding: 22px;
  border-radius: 24px;
}

.step-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 97, 0.22);
  color: var(--gold);
  font-size: 0.78rem;
  margin-bottom: 16px;
}

.step-card h3,
.faq-item h3,
.application-success h3 {
  font-size: 1.9rem;
  margin-bottom: 10px;
}

.drop-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(180deg, rgba(18, 13, 15, 0.6), rgba(11, 11, 11, 0.98)),
    radial-gradient(circle at top right, rgba(201, 169, 97, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(23, 16, 18, 0.9), rgba(10, 10, 10, 0.96));
}

.drop-name {
  font-size: 1.8rem;
  line-height: 1.05;
  margin-bottom: 12px;
}

.drop-meta {
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.drop-sold {
  margin: 10px 0 0;
  color: var(--gold-bright);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.application-wrap {
  padding: 24px;
  display: grid;
  gap: 22px;
}

.application-form {
  padding: 22px;
}

.form-grid,
.radio-grid {
  display: grid;
  gap: 14px;
}

.application-form label,
.application-form fieldset {
  display: block;
  margin-bottom: 16px;
}

.application-form span,
.application-form legend {
  display: inline-block;
  margin-bottom: 8px;
}

.application-form small,
.form-footnote,
.reference-code {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--bone-muted);
}

.application-form fieldset {
  border: 1px solid rgba(245, 237, 224, 0.1);
  border-radius: 20px;
  padding: 16px;
}

.radio-grid label {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 237, 224, 0.08);
}

.radio-grid input {
  width: 16px;
  height: 16px;
  padding: 0;
}

.application-success {
  padding: 30px 24px;
  align-self: center;
}

.application-success[hidden] {
  display: none;
}

.reference-code {
  margin-top: 14px;
  color: var(--gold-bright);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}

.event-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
}

.event-list span {
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.faq-list {
  grid-template-columns: 1fr;
}

.footer-meta {
  display: grid;
  gap: 8px;
}

.footer-meta a {
  position: relative;
  width: fit-content;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.member-stamp {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 97, 0.18);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), inset 0 -10px 20px rgba(0, 0, 0, 0.12);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 240ms;
}

@keyframes heroPan {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-2%, -1%, 0); }
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(24px, -18px, 0); }
}

@keyframes scrollPulse {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(18px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

@media (min-width: 720px) {
  .hero-grid,
  .application-wrap {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: center;
    gap: 34px;
  }

  .tier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .drop-grid,
  .faq-list,
  .event-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .radio-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .site-footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
  }
}

@media (min-width: 1080px) {
  .tier-grid,
  .drop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card {
    justify-self: end;
    max-width: 420px;
  }
}

@media (max-width: 719px) {
  .site-header {
    width: calc(100vw - 20px);
    top: 10px;
    padding: 10px 12px;
  }

  .site-header nav {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .site-header nav a,
  .lang-toggle {
    font-size: 0.74rem;
  }

  .hero {
    padding-top: 92px;
  }

  .hero h1 {
    max-width: 9ch;
  }

  .invitation,
  .tiers,
  .how-it-works,
  .flash-drops,
  .application,
  .events,
  .faq,
  .site-footer {
    padding: 72px 0;
  }

  .fondator-card {
    padding: 28px 22px;
  }

  .drop-card {
    min-height: 180px;
  }
}

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

  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ============== HERO BACKGROUND VIDEO (full-bleed, cinematic) ============== */
.hero {
  position: relative;
  isolation: isolate;
}

/* Override the old unsplash ::before â€” replace with dark vignette only */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(201, 169, 97, 0.08), transparent 45%),
    linear-gradient(180deg, rgba(9, 7, 8, 0.35) 0%, rgba(9, 7, 8, 0.55) 40%, rgba(9, 7, 8, 0.85) 100%);
  z-index: 1;
  pointer-events: none;
  animation: none;
  transform: none;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
  filter: saturate(0.92) brightness(0.75) contrast(1.05);
  animation: heroKenBurns 28s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroKenBurns {
  0%   { transform: scale(1.08) translate3d(-0.4%, -0.6%, 0); }
  50%  { transform: scale(1.14) translate3d(0.6%, 0.2%, 0); }
  100% { transform: scale(1.10) translate3d(-0.2%, 0.6%, 0); }
}

/* Keep hero grid above the video */
.hero-grid,
.hero-overlay,
.scroll-cue {
  position: relative;
  z-index: 2;
}

/* Subtle vignette on top of the video for readability */
.hero-overlay {
  background:
    radial-gradient(circle at 16% 22%, rgba(201, 169, 97, 0.14), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(74, 14, 26, 0.28), transparent 32%),
    linear-gradient(180deg, rgba(9, 9, 9, 0.12) 0%, rgba(9, 9, 9, 0.58) 100%);
  backdrop-filter: blur(0.5px);
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .hero-bg-video { animation: none; transform: scale(1.08); }
}

/* Mobile: video should still be visible but less dominant */
@media (max-width: 720px) {
  .hero-bg-video {
    object-position: center center;
    filter: saturate(0.85) brightness(0.62);
  }
}

/* ============== INVITATION SECTION VIDEO (cinematic frame) ============== */
.hero-video-wrap {
  position: relative;
  width: 100%;
  max-width: 1060px;
  margin: 44px auto 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(201, 169, 97, 0.25) inset,
    0 0 60px rgba(201, 169, 97, 0.08) inset;
  background: #000;
  transform: translateZ(0);
  transition: transform 600ms ease, box-shadow 600ms ease;
}

.hero-video-wrap:hover {
  transform: translateY(-4px) scale(1.004);
  box-shadow:
    0 52px 120px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(221, 198, 128, 0.45) inset,
    0 0 80px rgba(221, 198, 128, 0.12) inset;
}

.hero-video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 400ms ease;
}

.hero-video-wrap.is-playing::after {
  opacity: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-play {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  padding: 14px 26px 14px 52px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bone);
  background: rgba(9, 9, 9, 0.55);
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background 260ms ease, border-color 260ms ease, transform 260ms ease, padding 260ms ease;
}

.hero-video-play::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid var(--gold);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  transition: all 260ms ease;
}

.hero-video-play:hover {
  background: rgba(74, 14, 26, 0.7);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
}

.hero-video-wrap.is-playing .hero-video-play {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

@media (max-width: 720px) {
  .hero-video-wrap {
    border-radius: var(--radius-sm);
    margin-top: 28px;
  }
  .hero-video-play {
    bottom: 14px;
    left: 14px;
    padding: 11px 20px 11px 42px;
    font-size: 0.72rem;
  }
  .hero-video-play::before {
    left: 16px;
    border-left-width: 8px;
    border-top-width: 6px;
    border-bottom-width: 6px;
  }
}

/* ============== FONDATOR ENGRAVED BOTTLE VISUAL ============== */
.fondator-visual {
  margin: 0 auto 40px;
  max-width: 920px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(201, 169, 97, 0.22) inset;
  transform: translateZ(0);
}

.fondator-visual img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 900ms ease;
  filter: saturate(0.95) contrast(1.05);
}

.fondator-visual:hover img {
  transform: scale(1.03);
}

.fondator-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(9,7,8,0.55) 100%);
  pointer-events: none;
}

.fondator-visual figcaption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  font-style: italic;
  color: var(--bone);
  text-align: left;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.8);
  z-index: 1;
}

@media (max-width: 720px) {
  .fondator-visual {
    border-radius: var(--radius-sm);
    margin-bottom: 28px;
  }
  .fondator-visual figcaption {
    left: 16px;
    right: 16px;
    bottom: 14px;
  }
}


/* ========== Card Refusal Band ========== */
.card-refusal {
  padding: clamp(60px, 9vw, 120px) 0;
  background: linear-gradient(180deg, rgba(10,6,8,0.96), rgba(30,8,14,0.88));
  border-top: 1px solid rgba(120, 25, 48, 0.22);
  border-bottom: 1px solid rgba(120, 25, 48, 0.22);
  position: relative;
  overflow: hidden;
}
.card-refusal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(180, 30, 60, 0.10), transparent 60%);
  pointer-events: none;
}
.refusal-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
}
.refusal-kicker {
  font-family: var(--font-mono, monospace);
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  color: rgba(210, 170, 140, 0.85);
  text-transform: uppercase;
  margin: 0 0 24px;
}
.refusal-line {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.4vw, 3.9rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #f5ecdc;
  margin: 0 0 22px;
  font-weight: 400;
}
.refusal-sub {
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.65;
  color: rgba(245, 236, 220, 0.78);
  max-width: 640px;
  margin: 0 auto;
}
.manifesto-coda {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(120, 25, 48, 0.25);
  font-style: italic;
  color: rgba(245, 236, 220, 0.75);
}
@media (max-width: 640px) {
  .refusal-line { font-size: clamp(1.8rem, 8vw, 2.6rem); }
}

/* Refusal slider */
.refusal-slider {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.refusal-slide { display: none; }
.refusal-slide-text {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.refusal-slide-text .refusal-line,
.refusal-slide-text .refusal-sub {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.refusal-slide-text .fade-in {
  opacity: 1;
  transform: translateY(0);
}
.refusal-dots {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.refusal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 236, 220, 0.22);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.refusal-dot:hover { background: rgba(245, 236, 220, 0.45); }
.refusal-dot.active {
  background: rgba(210, 170, 140, 0.95);
  transform: scale(1.3);
}

/* ========== Societatea 844 family/umbrella section ========== */
.societatea-family {
  padding: clamp(70px, 10vw, 140px) 0;
  background: linear-gradient(180deg, rgba(8,5,7,0.96), rgba(20,10,14,0.98));
  border-top: 1px solid rgba(120, 25, 48, 0.22);
  position: relative;
}
.family-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.family-kicker {
  font-family: var(--font-mono, monospace);
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  color: rgba(210, 170, 140, 0.85);
  text-transform: uppercase;
  margin: 0 0 24px;
}
.family-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.1;
  color: #f5ecdc;
  margin: 0 0 22px;
  font-weight: 400;
}
.family-sub {
  font-size: clamp(1.0rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  color: rgba(245, 236, 220, 0.78);
  max-width: 720px;
  margin: 0 auto 48px;
}
.family-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 36px;
}
.family-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 28px 16px;
  border: 1px solid rgba(120, 25, 48, 0.35);
  border-radius: 6px;
  background: rgba(10, 6, 8, 0.5);
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: 140px;
  color: inherit;
}
.family-card.active {
  border-color: rgba(210, 170, 140, 0.6);
  background: linear-gradient(180deg, rgba(40,18,28,0.7), rgba(20,10,14,0.9));
  box-shadow: 0 0 30px rgba(120, 25, 48, 0.15);
}
.family-card.coming:hover {
  border-color: rgba(210, 170, 140, 0.5);
  background: rgba(40, 18, 28, 0.6);
  transform: translateY(-2px);
}
.family-card.future {
  opacity: 0.55;
}
.family-icon {
  font-size: 1.6rem;
  color: rgba(210, 170, 140, 0.85);
  line-height: 1;
}
.family-card.active .family-icon { color: #d2aa8c; }
.family-name {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: #f5ecdc;
  letter-spacing: 0.02em;
}
.family-state {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(210, 170, 140, 0.75);
}
.family-card.active .family-state {
  color: #a8e6bf;
}
.family-note {
  font-style: italic;
  color: rgba(245, 236, 220, 0.65);
  font-size: 0.98rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}
@media (max-width: 640px) {
  .family-grid { grid-template-columns: repeat(2, 1fr); }
}
