:root{
  --bg:#090807;
  --bg-soft:#100e0b;
  --panel:rgba(21,18,14,.78);
  --text:#f5f0e8;
  --muted:#c5b9a8;
  --gold:#d9b36c;
  --gold-soft:#f0d7a0;
  --line:rgba(226,194,131,.23);
  --shadow:0 24px 80px rgba(0,0,0,.52);
  --radius:28px;
  --max:1440px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-width:320px;
  background:var(--bg);
  color:var(--text);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.6;
}
body.modal-open{overflow:hidden}
a{color:inherit}
button,a{-webkit-tap-highlight-color:transparent}
button{font:inherit}
img,video{display:block;max-width:100%}

.skip-link{
  position:fixed;
  left:1rem;
  top:-5rem;
  z-index:1000;
  padding:.7rem 1rem;
  background:#fff;
  color:#000;
  border-radius:.5rem;
}
.skip-link:focus{top:1rem}

/* HERO — photograph remains visually dominant. Only a narrow left readability gradient is used. */
.hero{
  position:relative;
  min-height:100svh;
  display:grid;
  grid-template-rows:auto 1fr;
  overflow:hidden;
  background-color:#050403;
  background-image:url("assets/hero/hero-desktop.webp");
  background-position:center top;
  background-size:cover;
  background-repeat:no-repeat;
}
.hero__veil{
  position:absolute;
  inset:0 auto 0 0;
  width:min(49vw,790px);
  background:linear-gradient(90deg,
    rgba(5,4,3,.78) 0%,
    rgba(5,4,3,.58) 42%,
    rgba(5,4,3,.22) 74%,
    rgba(5,4,3,0) 100%);
  pointer-events:none;
}
.hero::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:0;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--line),transparent);
}

.topbar,
.hero__content,
.hero__scroll{position:relative;z-index:2}

.topbar{
  width:min(var(--max),calc(100% - 64px));
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:2rem;
  padding:1rem 0;
}
.brand{
  display:inline-flex;
  align-items:center;
  filter:drop-shadow(0 6px 18px rgba(0,0,0,.48));
}
.brand img{
  width:74px;
  height:74px;
  object-fit:contain;
}
.topbar__right{
  display:flex;
  align-items:center;
  gap:1rem;
}
.language-pill{
  border:1px solid var(--line);
  color:var(--gold-soft);
  background:rgba(0,0,0,.28);
  border-radius:999px;
  padding:.45rem .72rem;
  font-size:.76rem;
  letter-spacing:.12em;
  font-weight:700;
}
.socials{
  display:flex;
  align-items:center;
  gap:.55rem;
}
.socials a{
  text-decoration:none;
  color:#eee4d7;
  font-size:.8rem;
  letter-spacing:.04em;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.30);
  padding:.48rem .72rem;
  border-radius:999px;
  transition:.2s ease;
}
.socials a:hover,
.socials a:focus-visible{
  border-color:var(--gold);
  color:var(--gold-soft);
  transform:translateY(-1px);
}

.hero__content{
  width:min(var(--max),calc(100% - 64px));
  margin:0 auto;
  align-self:center;
  padding:2.5rem 0 6rem;
}
.hero__content > *{max-width:520px}
.eyebrow{
  margin:0 0 .75rem;
  color:var(--gold-soft);
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.17em;
  text-transform:uppercase;
}
h1,h2{
  font-family:Georgia,"Times New Roman",serif;
  font-weight:500;
  letter-spacing:-.025em;
}
h1{
  margin:0;
  max-width:570px!important;
  font-size:clamp(3rem,4.2vw,4.45rem);
  line-height:.99;
  text-wrap:balance;
  text-shadow:0 3px 22px rgba(0,0,0,.7);
}
.hero__lead{
  margin:1rem 0 0;
  color:var(--gold-soft);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(1.25rem,1.55vw,1.65rem);
  line-height:1.25;
}
.hero__copy{
  margin:.8rem 0 0;
  color:#eee5d9;
  font-size:clamp(.93rem,.98vw,1rem);
  line-height:1.55;
  max-width:490px;
  text-shadow:0 2px 12px rgba(0,0,0,.72);
}
.hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  margin-top:1.35rem;
}
.btn{
  min-height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.65rem;
  border-radius:999px;
  padding:.76rem 1.2rem;
  text-decoration:none;
  cursor:pointer;
  border:1px solid transparent;
  font-weight:750;
  letter-spacing:.01em;
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease,background .2s ease;
}
.btn strong{font-weight:850}
.btn:hover,
.btn:focus-visible{transform:translateY(-2px)}
.btn--gold{
  color:#15100a;
  background:linear-gradient(135deg,#f1d59c 0%,#c79545 42%,#efcf8f 75%,#b88338 100%);
  border-color:rgba(255,240,203,.55);
  box-shadow:0 12px 34px rgba(187,132,53,.26),inset 0 1px 0 rgba(255,255,255,.46);
}
.btn--gold:hover,
.btn--gold:focus-visible{
  box-shadow:0 16px 42px rgba(209,158,81,.34),inset 0 1px 0 rgba(255,255,255,.55);
}
.btn--glass{
  color:var(--text);
  border-color:rgba(230,199,139,.36);
  background:rgba(16,13,9,.52);
  backdrop-filter:blur(8px);
}
.btn--glass:hover,
.btn--glass:focus-visible{
  border-color:var(--gold);
  background:rgba(29,23,15,.67);
}
.btn--full{width:100%}
.btn:disabled{opacity:.45;cursor:not-allowed;transform:none!important;box-shadow:none}


.hero-social-proof{
  margin-top:1.15rem;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:.72rem 1rem;
}
.hero-social-proof__label{
  color:#b8aa96;
  font-size:.78rem;
  letter-spacing:.035em;
}
.hero-social-proof__links{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
}
.social-cta{
  min-height:38px;
  display:inline-flex;
  align-items:center;
  gap:.48rem;
  padding:.42rem .72rem .42rem .48rem;
  border:1px solid rgba(230,193,124,.32);
  border-radius:999px;
  background:linear-gradient(180deg,rgba(20,16,11,.72),rgba(8,7,5,.64));
  color:#eee3d3;
  text-decoration:none;
  font-size:.76rem;
  font-weight:750;
  box-shadow:0 7px 22px rgba(0,0,0,.18);
  backdrop-filter:blur(7px);
  -webkit-backdrop-filter:blur(7px);
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease,background .2s ease;
}
.social-cta__mark{
  width:25px;
  height:25px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:#171006;
  background:linear-gradient(135deg,#f1d59c,#bd873c);
  font-size:.63rem;
  font-weight:900;
  letter-spacing:.02em;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.42);
}
.social-cta:hover,
.social-cta:focus-visible{
  transform:translateY(-2px);
  border-color:rgba(242,213,156,.72);
  background:linear-gradient(180deg,rgba(38,29,18,.85),rgba(12,9,6,.78));
  box-shadow:0 10px 28px rgba(184,126,52,.18);
}

.hero__micro{
  margin-top:.8rem;
  color:#cabfaf;
  font-size:.8rem;
  text-shadow:0 2px 10px #000;
}
.hero__scroll{
  position:absolute;
  left:50%;
  bottom:1.2rem;
  width:28px;
  height:45px;
  border:1px solid rgba(255,255,255,.3);
  border-radius:999px;
  transform:translateX(-50%);
}
.hero__scroll span{
  position:absolute;
  left:50%;top:8px;
  width:4px;height:7px;
  border-radius:9px;
  background:var(--gold);
  transform:translateX(-50%);
  animation:scrollDot 1.7s infinite ease-in-out;
}
@keyframes scrollDot{
  0%{opacity:0;transform:translate(-50%,0)}
  30%{opacity:1}
  100%{opacity:0;transform:translate(-50%,18px)}
}

.preview{
  padding:clamp(4rem,6.5vw,6.5rem) 0;
  background:linear-gradient(180deg,#0b0907,#070605);
}
.section-shell{
  width:min(var(--max),calc(100% - 64px));
  margin:0 auto;
}
.section-heading{
  text-align:center;
  max-width:680px;
  margin:0 auto 1.8rem;
}
.section-heading h2,
.gate-card h2,
.modal__dialog h2{
  margin:.2rem 0 0;
  font-size:clamp(2rem,3.2vw,3.25rem);
  line-height:1.05;
}

/* Intro source is 1080x1350 = true 4:5 portrait. It is shown uncropped. */
.video-frame{
  position:relative;
  width:min(100%,540px);
  margin:0 auto;
  padding:1px;
  border-radius:26px;
  background:linear-gradient(135deg,rgba(241,213,156,.62),rgba(82,60,30,.12),rgba(218,171,93,.42));
  box-shadow:0 22px 70px rgba(0,0,0,.5);
}
.video-frame::before{
  content:"";
  position:absolute;
  inset:12% 8%;
  z-index:-1;
  background:rgba(198,143,62,.12);
  filter:blur(55px);
}
.video-frame video{
  width:100%;
  height:auto;
  aspect-ratio:4/5;
  object-fit:contain;
  border-radius:25px;
  background:#000;
}
.gate-card{
  max-width:920px;
  margin:2.2rem auto 0;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:1.4rem;
  padding:1.25rem;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:linear-gradient(180deg,rgba(28,23,17,.82),rgba(12,10,8,.9));
  box-shadow:0 18px 60px rgba(0,0,0,.35);
}
.gate-card__mark{
  width:74px;height:74px;
  display:grid;place-items:center;
  border-radius:20px;
  color:var(--gold-soft);
  border:1px solid rgba(231,194,126,.34);
  background:rgba(0,0,0,.28);
  font-family:Georgia,"Times New Roman",serif;
  font-size:2.3rem;
  text-shadow:0 0 24px rgba(226,177,91,.34);
}
.gate-card h2{font-size:clamp(1.8rem,2.6vw,2.6rem)}
.gate-card p:not(.eyebrow){margin:.65rem 0 0;color:var(--muted)}

.public-footer{border-top:1px solid rgba(255,255,255,.06);background:#060504}
.public-footer__inner{
  width:min(var(--max),calc(100% - 64px));
  margin:0 auto;
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:.8rem;
  color:#8f8578;
  font-size:.78rem;
}
.public-footer__dot{color:#554a3e}
.footer-login,.text-button{
  padding:0;border:0;background:none;color:var(--gold-soft);cursor:pointer;
  text-decoration:underline;text-decoration-color:rgba(219,179,104,.35);text-underline-offset:4px;
}

.modal{position:fixed;inset:0;z-index:100;display:none}
.modal.is-open{display:grid;place-items:center}
.modal__backdrop{position:absolute;inset:0;background:rgba(3,3,3,.78);backdrop-filter:blur(12px)}
.modal__dialog{
  position:relative;z-index:1;width:min(520px,calc(100% - 32px));
  border:1px solid rgba(230,193,124,.3);border-radius:30px;padding:2rem;
  background:radial-gradient(circle at 90% 0%,rgba(205,151,66,.13),transparent 16rem),#0f0c09;
  box-shadow:0 30px 110px rgba(0,0,0,.72);
}
.modal__dialog h2{font-size:clamp(2rem,5vw,3.5rem)}
.modal__close{
  position:absolute;right:1rem;top:1rem;width:40px;height:40px;display:grid;place-items:center;
  border-radius:50%;border:1px solid rgba(255,255,255,.11);background:rgba(0,0,0,.24);color:#fff;
  font-size:1.7rem;cursor:pointer;
}
.price{display:flex;align-items:baseline;gap:.3rem;margin:1.35rem 0 .3rem}
.price__value{font-family:Georgia,"Times New Roman",serif;font-size:4rem;line-height:1;color:var(--gold-soft)}
.price__period{color:var(--muted)}
.modal__copy{color:var(--muted)}
.age-check{
  display:flex;gap:.75rem;align-items:flex-start;margin:1.3rem 0;padding:1rem;
  border:1px solid rgba(255,255,255,.08);border-radius:18px;background:rgba(255,255,255,.025);color:#ddd3c4;
}
.age-check input{width:20px;height:20px;margin-top:.1rem;accent-color:#c9974c}
.modal .text-button{display:block;margin:1rem auto 0}
.modal__note{min-height:1.5rem;margin:.8rem 0 0;text-align:center;color:#d9b36c;font-size:.82rem}

@media (max-width: 780px){
  .hero{
    background-image:url("assets/hero/hero-mobile.webp");
    background-position:center top;
    background-size:cover;
    background-repeat:no-repeat;
  }
  .hero__veil{
    inset:auto 0 0 0;
    width:100%;
    height:58%;
    background:linear-gradient(0deg,rgba(5,4,3,.92) 0%,rgba(5,4,3,.63) 54%,rgba(5,4,3,0) 100%);
  }
  .topbar{width:min(100% - 28px,var(--max));padding-top:.8rem}
  .brand img{width:62px;height:62px}
  .socials{display:none}
  .hero__content{
    width:min(100% - 32px,var(--max));
    align-self:end;
    padding:10rem 0 4.6rem;
  }
  .hero__content > *{max-width:100%}
  h1{max-width:100%!important;font-size:clamp(2.7rem,12vw,4.15rem);line-height:1}
  .hero__lead{font-size:1.28rem}
  .hero__copy{font-size:.93rem;max-width:100%}
  .hero__actions{display:grid}
  .hero__actions .btn{width:100%}
  .hero-social-proof{display:block}
  .hero-social-proof__links{margin-top:.6rem}
  .social-cta{flex:1;justify-content:center}
  .hero__scroll{display:none}
  .section-shell{width:min(100% - 28px,var(--max))}
  .section-heading h2{font-size:clamp(2rem,9vw,2.8rem)}
  .video-frame{width:min(100%,500px);border-radius:22px}
  .video-frame video{border-radius:21px}
  .gate-card{grid-template-columns:1fr;text-align:center;padding:1.25rem}
  .gate-card__mark{margin:0 auto}
  .gate-card .btn{width:100%}
  .public-footer__inner{width:min(100% - 28px,var(--max))}
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important}
}


.lang-menu{position:relative}
.lang-menu summary{
  list-style:none;cursor:pointer;display:grid;place-items:center;min-width:44px;height:38px;
  border:1px solid var(--line);border-radius:999px;background:rgba(0,0,0,.32);
  color:var(--gold-soft);font-size:.76rem;font-weight:800;letter-spacing:.08em
}
.lang-menu summary::-webkit-details-marker{display:none}
.lang-menu__panel{
  position:absolute;right:0;top:calc(100% + 10px);width:180px;padding:7px;
  border:1px solid rgba(230,193,124,.28);border-radius:16px;background:rgba(12,10,8,.97);
  box-shadow:0 18px 45px rgba(0,0,0,.48);backdrop-filter:blur(12px);z-index:30
}
.lang-menu__panel a{display:flex;align-items:center;gap:10px;padding:9px 10px;border-radius:10px;text-decoration:none;color:#e9dfd0;font-size:.78rem}
.lang-menu__panel a span{width:26px;color:var(--gold-soft);font-weight:900}
.lang-menu__panel a:hover,.lang-menu__panel a[aria-current="page"]{background:rgba(216,173,97,.12);color:#fff}


/* V5 — always-visible premium language CTA buttons */
.lang-switcher{
  display:flex;
  align-items:center;
  flex-wrap:nowrap;
  gap:6px;
}
.lang-switcher a{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border:1px solid rgba(229,190,117,.34);
  border-radius:999px;
  background:rgba(7,6,4,.30);
  color:#e9decd;
  text-decoration:none;
  font-size:.70rem;
  line-height:1;
  font-weight:850;
  letter-spacing:.06em;
  text-shadow:0 2px 8px rgba(0,0,0,.9);
  box-shadow:0 6px 18px rgba(0,0,0,.16);
  transition:transform .18s ease,border-color .18s ease,background .18s ease,color .18s ease,box-shadow .18s ease;
}
.lang-switcher a:hover,
.lang-switcher a:focus-visible{
  transform:translateY(-2px);
  border-color:rgba(244,216,159,.82);
  background:rgba(34,25,14,.70);
  color:#fff7e7;
  box-shadow:0 9px 24px rgba(186,128,51,.18);
}
.lang-switcher a[aria-current="page"]{
  color:#171006;
  border-color:rgba(255,233,185,.75);
  background:linear-gradient(135deg,#f2d79d 0%,#c89444 55%,#e4bd72 100%);
  text-shadow:none;
  box-shadow:0 7px 22px rgba(190,133,55,.26),inset 0 1px 0 rgba(255,255,255,.45);
}

@media (max-width:780px){
  .topbar__right{gap:.55rem}
  .lang-switcher{gap:4px}
  .lang-switcher a{width:31px;height:31px;font-size:.62rem}
}
@media (max-width:390px){
  .lang-switcher{gap:3px}
  .lang-switcher a{width:29px;height:29px;font-size:.59rem}
}

/* V7 — membership clarity, trust and legal */
.membership-benefits{margin-top:1rem;color:#d9cebf}
.membership-benefits>strong{display:block;color:var(--gold-soft);font-size:.84rem;letter-spacing:.035em}
.membership-benefits ul,.modal-benefits{margin:.65rem 0 0;padding-left:1.1rem;color:#cdbfae}
.membership-benefits li,.modal-benefits li{margin:.28rem 0}
.membership-renewal,.modal-renewal{margin:.7rem 0 0!important;color:#9f9385!important;font-size:.78rem!important;line-height:1.45}
.modal-legal-links{margin:1rem 0 0;text-align:center;color:#8f8477;font-size:.72rem;line-height:1.55}
.modal-legal-links a{color:var(--gold-soft);text-underline-offset:3px}
.modal-provider-note{display:inline-block;margin-top:.35rem;color:#82786d}
.public-legal-links{display:flex;gap:.35rem;align-items:center;justify-content:center;flex-wrap:wrap}
.public-legal-links a{color:#a99b89;text-decoration:none}
.public-legal-links a:hover{color:var(--gold-soft)}
.preview,.gate-card{content-visibility:auto}
.legal-page{background:radial-gradient(circle at 50% 0,rgba(167,115,47,.12),transparent 30rem),#080706}
.legal-top{width:min(1160px,calc(100% - 36px));margin:0 auto;min-height:96px;display:flex;align-items:center;justify-content:space-between;gap:20px}
.legal-brand img{object-fit:contain}
.legal-shell{width:min(900px,calc(100% - 36px));margin:0 auto;padding:42px 0 90px}
.legal-shell>h1{font-size:clamp(2.5rem,6vw,5rem);margin-bottom:30px}
.legal-draft{border:1px solid rgba(229,181,91,.35);background:rgba(194,132,45,.10);color:#e6c887;padding:12px 14px;border-radius:14px;margin-bottom:28px;font-size:.83rem}
.legal-section{padding:24px 0;border-top:1px solid var(--line)}
.legal-section h2{font-size:clamp(1.5rem,3vw,2.35rem)}
.legal-section p{color:#c6b9a8}
.legal-back{margin-top:25px}
@media(max-width:780px){
  .public-legal-links{width:100%}
  .membership-benefits ul,.modal-benefits{padding-left:1rem}
  .legal-top{align-items:flex-start;padding-top:14px}
}

/* FINAL FANVUE + MEMBER ACCESS */
.member-access-box{
  margin-top:1rem;
  padding:1rem;
  border:1px solid rgba(230,193,124,.22);
  border-radius:18px;
  background:rgba(255,255,255,.025);
}
.member-access-box>strong{
  display:block;
  margin-bottom:.7rem;
  color:var(--gold-soft);
  font-size:.84rem;
}
.member-access-box input{
  width:100%;
  min-height:48px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  background:#090806;
  color:#f2e9dc;
  padding:10px 13px;
  margin-bottom:.65rem;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.member-code-status{
  min-height:1.25rem;
  margin:.6rem 0 0;
  color:#d8b36b;
  text-align:center;
  font-size:.78rem;
}
.member-code-status.is-error{color:#e5a0a0}
.member-code-status.is-success{color:#b9d99b}





/* V6 — membership modal: returning members can always reach the access field */
.modal.is-open{
  display:grid;
  place-items:center;
  padding:16px 0;
  overflow-y:auto;
  overscroll-behavior:contain;
}
.modal__dialog{
  max-height:calc(100svh - 32px);
  overflow-y:auto;
  overscroll-behavior:contain;
  scrollbar-width:thin;
  scrollbar-color:rgba(224,181,102,.55) rgba(255,255,255,.04);
}
.modal__dialog::-webkit-scrollbar{width:8px}
.modal__dialog::-webkit-scrollbar-track{background:rgba(255,255,255,.035);border-radius:999px}
.modal__dialog::-webkit-scrollbar-thumb{background:rgba(224,181,102,.48);border-radius:999px}
.modal__close{
  position:sticky;
  float:right;
  right:0;
  top:0;
  margin:-.75rem -.75rem 0 0;
  z-index:3;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
.member-access-box{
  margin:.85rem 0 1rem;
}
@media(max-height:820px) and (min-width:781px){
  .modal__dialog{padding:1.35rem 1.6rem}
  .modal__dialog h2{font-size:clamp(2rem,3vw,2.75rem)}
  .price{margin:.55rem 0}
  .price__value{font-size:3.8rem}
  .modal__copy{margin:.45rem 0}
  .member-access-box{margin:.65rem 0 .8rem;padding:.8rem}
  .modal-benefits{margin:.5rem 0 0}
  .modal-benefits li{margin:.18rem 0}
  .modal-renewal{margin:.5rem 0 0!important}
  .age-check{margin-top:.75rem}
  .modal-legal-links{margin:.7rem 0 0}
}
