/* ===========================================================
   GLOBAL EXPLORERS CLUB — Cinematic Design System
   =========================================================== */

:root{
  /* Palette */
  --midnight:      #0a1230;   /* midnight blue */
  --midnight-deep: #060a1c;   /* deepest sky */
  --charcoal:      #14161d;   /* deep charcoal */
  --ink:           #04060f;   /* near-black base */
  --gold:          #d6a24a;   /* warm gold */
  --gold-bright:   #ecc572;   /* lit gold */
  --amber:         #f0b35e;   /* candlelight amber */
  --amber-soft:    #f6cf8e;
  --silver:        #c8d2e4;   /* moonlight silver */
  --silver-dim:    #8c97ac;
  --silver-faint:  #5a6478;

  /* Semantic */
  --bg:            var(--ink);
  --text:          #e9eef7;
  --text-dim:      #aab3c6;
  --text-faint:    #717c92;
  --line:          rgba(200,210,228,0.12);
  --line-gold:     rgba(214,162,74,0.28);

  /* Type */
  --serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --sans:  "Hanken Grotesk", "Inter", system-ui, sans-serif;

  /* Glow */
  --glow-gold: 0 0 40px rgba(214,162,74,0.35);
  --glow-amber-soft: 0 0 60px rgba(240,179,94,0.18);

  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body{
  background:var(--bg);
  color:var(--text);
  font-family:var(--sans);
  font-size:17px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  font-feature-settings:"liga" 1, "kern" 1;
}

::selection{ background:rgba(214,162,74,0.32); color:#fff; }

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

/* ---- Typography primitives ---- */
.eyebrow{
  font-family:var(--sans);
  font-size:0.74rem;
  font-weight:600;
  letter-spacing:0.34em;
  text-transform:uppercase;
  color:var(--gold);
  display:inline-flex;
  align-items:center;
  gap:0.85em;
  white-space:nowrap;
  max-width:100%;
}
.eyebrow::before{
  content:"";
  width:34px; height:1px;
  background:linear-gradient(90deg, transparent, var(--gold));
  display:inline-block;
}
.eyebrow.centered::after{
  content:"";
  width:34px; height:1px;
  background:linear-gradient(90deg, var(--gold), transparent);
  display:inline-block;
}

h1,h2,h3{
  font-family:var(--serif);
  font-weight:500;
  line-height:1.04;
  letter-spacing:-0.01em;
  text-wrap:balance;
  overflow-wrap:break-word;
}

.display{
  font-size:clamp(3rem, 8.5vw, 7.4rem);
  font-weight:500;
  letter-spacing:-0.02em;
}
.h-section{
  font-size:clamp(2.4rem, 5.4vw, 4.6rem);
  font-weight:500;
}
.lead{
  font-size:clamp(1.05rem, 1.5vw, 1.32rem);
  line-height:1.7;
  color:var(--text-dim);
  font-weight:380;
  max-width:60ch;
  text-wrap:pretty;
}

.gold-text{ color:var(--gold-bright); }
.italic-accent{ font-style:italic; color:var(--amber-soft); }

/* ---- Layout ---- */
.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 clamp(16px,4vw,32px); }
section{ position:relative; }
.section-pad{ padding:clamp(96px, 14vh, 200px) 0; }

/* ---- Buttons ---- */
.btn{
  font-family:var(--sans);
  font-size:0.95rem;
  font-weight:600;
  letter-spacing:0.02em;
  border:none;
  cursor:pointer;
  padding:1.05em 2.1em;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:0.7em;
  text-decoration:none;
  transition:transform .45s var(--ease), box-shadow .45s var(--ease), background .4s, color .4s, border-color .4s;
  position:relative;
  white-space:nowrap;
}
.btn-primary{
  background:linear-gradient(180deg, var(--gold-bright), var(--gold));
  color:#000;
  box-shadow:0 8px 30px -8px rgba(214,162,74,0.6), inset 0 1px 0 rgba(255,255,255,0.45);
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 44px -8px rgba(214,162,74,0.78), inset 0 1px 0 rgba(255,255,255,0.55);
}
.btn-ghost{
  background:rgba(255,255,255,0.03);
  color:var(--text);
  border:1px solid rgba(200,210,228,0.28);
  backdrop-filter:blur(6px);
}
.btn-ghost:hover{
  border-color:var(--gold);
  color:var(--gold-bright);
  transform:translateY(-2px);
}
.btn .arrow{ transition:transform .4s var(--ease); }
.btn:hover .arrow{ transform:translateX(4px); }

/* ---- Reveal animation ---- */
.reveal{
  opacity:0;
  transform:translateY(34px);
  transition:opacity 1.1s var(--ease), transform 1.1s var(--ease);
  will-change:opacity, transform;
}
.reveal.in{ opacity:1; transform:none; }
.reveal.d1{ transition-delay:.12s; }
.reveal.d2{ transition-delay:.24s; }
.reveal.d3{ transition-delay:.36s; }
.reveal.d4{ transition-delay:.48s; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
}

/* ---- Embers / particles ---- */
.embers{ position:absolute; inset:0; overflow:hidden; pointer-events:none; z-index:2; }
.ember{
  position:absolute;
  bottom:-12px;
  width:3px; height:3px;
  border-radius:50%;
  background:var(--amber);
  box-shadow:0 0 8px 2px rgba(240,179,94,0.55);
  opacity:0;
  animation:rise linear infinite;
}
@keyframes rise{
  0%{ transform:translateY(0) translateX(0); opacity:0; }
  10%{ opacity:0.9; }
  80%{ opacity:0.7; }
  100%{ transform:translateY(-94vh) translateX(var(--drift,20px)); opacity:0; }
}
@media (prefers-reduced-motion: reduce){ .ember{ display:none; } }

/* film grain + vignette helpers */
.vignette::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(120% 80% at 50% 40%, transparent 40%, rgba(4,6,15,0.55) 100%);
  z-index:3;
}

/* ===========================================================
   NAV
   =========================================================== */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding:22px clamp(20px,4vw,52px);
  transition:background .5s, backdrop-filter .5s, padding .5s, border-color .5s;
  border-bottom:1px solid transparent;
  background:rgba(4,6,15,0.45);
  backdrop-filter:blur(6px);
}
.nav.scrolled{
  background:rgba(6,10,22,0.72);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
  padding:14px clamp(20px,4vw,52px);
}
.brand{ display:flex; align-items:center; gap:12px; text-decoration:none; color:var(--text); }
.brand .mark{
  width:34px; height:34px; flex:none;
  display:grid; place-items:center;
}
.brand .mark svg{ width:100%; height:100%; }
.brand .name{
  font-family:var(--serif); font-size:1.32rem; font-weight:600; letter-spacing:0.01em; line-height:1;
}
.brand .name small{ display:block; font-family:var(--sans); font-size:0.56rem; letter-spacing:0.4em; text-transform:uppercase; color:var(--gold); font-weight:600; margin-top:3px; }
.nav-links{ display:flex; align-items:center; gap:34px; }
.nav-links a{
  color:var(--text-dim); text-decoration:none; font-size:0.9rem; font-weight:500;
  letter-spacing:0.02em; transition:color .3s; position:relative;
}
.nav-links a:not(.btn):hover{ color:var(--gold-bright); }
.nav-links a:not(.btn)::after{
  content:""; position:absolute; left:0; bottom:-5px; height:1px; width:0; background:var(--gold);
  transition:width .4s var(--ease);
}
.nav-links a:not(.btn):hover::after{ width:100%; }
.nav .btn{ padding:0.7em 1.5em; font-size:0.85rem; }
.nav-links a.btn-primary{ color:#000; } /* beat .nav-links a grey color */
.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:space-between;
  width:28px; height:19px;
  background:none; border:none;
  cursor:pointer; padding:0;
  flex-shrink:0; z-index:101;
}
.nav-toggle span{
  display:block; height:1.5px;
  background:var(--text); border-radius:2px;
  transition:transform .4s var(--ease), opacity .3s, background .3s;
  transform-origin:center;
}
.nav-toggle.open span:nth-child(1){ transform:translateY(8.75px) rotate(45deg); background:var(--gold-bright); }
.nav-toggle.open span:nth-child(2){ opacity:0; transform:scaleX(0); }
.nav-toggle.open span:nth-child(3){ transform:translateY(-8.75px) rotate(-45deg); background:var(--gold-bright); }
@media (max-width:860px){
  .nav-toggle{ display:flex; }
  .nav-links .nav-link-text{ display:none; }
}
@media (max-width:430px){
  .brand .name{ display:none; }
  .nav .btn{ padding:0.6em 1.1em; font-size:0.82rem; }
  .eyebrow{ white-space:normal; flex-wrap:wrap; }
  .eyebrow::before{ display:none; }
  .eyebrow.centered::after{ display:none; }
  .eyebrow.centered{ justify-content:center; }
}

/* ===========================================================
   MOBILE MENU
   =========================================================== */
.mobile-menu{
  position:fixed; inset:0; z-index:99;
  background:rgba(4,6,15,0.97); backdrop-filter:blur(24px);
  display:flex; flex-direction:column; justify-content:center;
  padding:clamp(96px,17vh,160px) clamp(32px,7vw,64px) clamp(56px,9vh,90px);
  opacity:0; pointer-events:none;
  transition:opacity .45s var(--ease);
  overflow-y:auto;
}
.mobile-menu.open{ opacity:1; pointer-events:all; }
.mobile-menu-inner{ display:flex; flex-direction:column; }
.mobile-nav{ border-top:1px solid var(--line); margin-bottom:clamp(28px,5vh,44px); }
.mobile-nav a{
  font-family:var(--serif);
  font-size:clamp(1.9rem,6vw,2.8rem);
  font-weight:500; color:var(--text-dim);
  text-decoration:none;
  padding:18px 0; border-bottom:1px solid var(--line);
  display:flex; align-items:center;
  letter-spacing:-0.01em;
  transition:color .3s, padding-left .4s var(--ease);
}
.mobile-nav a:hover,.mobile-nav a:focus{ color:var(--gold-bright); padding-left:10px; }
.mobile-menu-cta{ width:100%; font-size:1rem; padding:1.15em 2em; }
.mobile-menu-foot{
  margin-top:22px; font-size:0.72rem;
  letter-spacing:0.2em; text-transform:uppercase;
  color:var(--text-faint);
}
@media (min-width:861px){ .mobile-menu{ display:none !important; } }

/* ===========================================================
   HERO
   =========================================================== */
.hero{
  position:relative;
  min-height:100svh;
  display:flex;
  align-items:center;
  overflow:hidden;
  /* reserve room at the bottom so centered content clears the scroll cue */
  padding-bottom:clamp(96px, 13vh, 160px);
}
.hero-bg{
  position:absolute; inset:-8% -4% -4% -4%;
  background-image:url('assets/hero-bg.jpg');
  background-size:cover;
  background-position:58% 42%;
  z-index:0;
  will-change:transform;
}
.hero-scrim{
  position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(180deg, rgba(4,6,15,0.75) 0%, transparent 16%),
    linear-gradient(105deg, rgba(4,6,15,0.92) 0%, rgba(4,6,15,0.72) 34%, rgba(4,6,15,0.30) 58%, rgba(4,6,15,0.12) 78%),
    linear-gradient(0deg, var(--ink) 2%, transparent 30%),
    radial-gradient(80% 60% at 22% 46%, rgba(10,18,48,0.5), transparent 70%);
}
.hero-owl{
  position:absolute;
  right:clamp(-60px, -2vw, 0px);
  bottom:0;
  height:min(96vh, 1080px);
  z-index:2;
  pointer-events:none;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 22%),
    linear-gradient(0deg, transparent 0%, #000 16%);
  -webkit-mask-composite:source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 22%),
    linear-gradient(0deg, transparent 0%, #000 16%);
  mask-composite:intersect;
  filter:drop-shadow(0 0 60px rgba(240,179,94,0.12));
  will-change:transform;
}
.hero-owl img{ height:100%; width:auto; }
.hero-glow{
  position:absolute; z-index:1;
  right:14%; top:30%;
  width:42vmin; height:42vmin;
  border-radius:50%;
  background:radial-gradient(circle, rgba(240,179,94,0.22), rgba(240,179,94,0) 65%);
  filter:blur(8px);
  animation:breathe 7s ease-in-out infinite;
}
@keyframes breathe{ 0%,100%{ opacity:.7; transform:scale(1);} 50%{ opacity:1; transform:scale(1.06);} }

.hero-content{ position:relative; z-index:4; max-width:680px; padding-top:60px; }
.hero h1{ margin:22px 0 0; }
.hero h1 .line{ display:block; overflow:hidden; padding-bottom:0.04em; }
.hero h1 .line > span{ display:block; }
/* Entrance is a pure enhancement: resting state above is fully visible. */
@media (prefers-reduced-motion: no-preference){
  .hero h1 .line > span{ animation:lineUp 1.2s var(--ease) both; }
  .hero h1 .line:nth-child(1) > span{ animation-delay:.2s; }
  .hero h1 .line:nth-child(2) > span{ animation-delay:.4s; }
}
@keyframes lineUp{
  from{ transform:translateY(108%); opacity:0; }
  60%{ opacity:1; }
  to{ transform:translateY(0); opacity:1; }
}
.hero .lead{ margin:30px 0 0; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:16px; margin-top:40px; }
.hero-assure{ display:flex; flex-wrap:wrap; gap:14px 26px; margin-top:34px; }
@media (prefers-reduced-motion: no-preference){
  .hero .lead{ animation:fadeUp 1s var(--ease) .9s both; }
  .hero-cta{ animation:fadeUp 1s var(--ease) 1.1s both; }
  .hero-assure{ animation:fadeUp 1s var(--ease) 1.3s both; }
}
.hero-assure span{ display:inline-flex; align-items:center; gap:9px; font-size:0.88rem; color:var(--text-dim); letter-spacing:0.01em; }
.hero-assure .tick{ color:var(--gold); flex:none; }
@keyframes fadeUp{ from{ opacity:0; transform:translateY(20px);} to{ opacity:1; transform:none;} }

.scroll-cue{
  position:absolute; left:50%; bottom:30px; transform:translateX(-50%);
  z-index:5; display:flex; flex-direction:column; align-items:center; gap:10px;
  color:var(--text-faint); font-size:0.66rem; letter-spacing:0.32em; text-transform:uppercase;
}
/* On shorter screens the hero content fills the viewport — hide the
   decorative cue so it doesn't crowd the CTA / assurances row. */
@media (max-height: 900px){ .scroll-cue{ display:none; } }
@media (prefers-reduced-motion: no-preference){
  .scroll-cue{ animation:fadeUp 1s ease 1.6s both; }
}
.scroll-cue .mouse{
  width:22px; height:36px; border:1px solid rgba(200,210,228,0.4); border-radius:12px; position:relative;
}
.scroll-cue .mouse::after{
  content:""; position:absolute; left:50%; top:7px; transform:translateX(-50%);
  width:3px; height:7px; border-radius:2px; background:var(--gold);
  animation:wheel 1.8s ease-in-out infinite;
}
@keyframes wheel{ 0%{ opacity:0; top:7px;} 30%{opacity:1;} 70%{ opacity:1; top:18px;} 100%{ opacity:0; top:18px;} }

@media (max-width:860px){
  .hero-owl{ height:65vh; opacity:0.4; right:-20px; }
}
@media (max-width:760px){
  .hero{ align-items:flex-start; padding-bottom:0; }
  .hero-content{
    padding-top:clamp(88px,17vh,120px);
    padding-bottom:clamp(72px,12vh,100px);
    max-width:100%;
  }
  .hero-owl{ opacity:0.2; height:100%; right:-40px; }
  .hero-scrim{
    background:
      linear-gradient(180deg, rgba(4,6,15,0.92) 0%, rgba(4,6,15,0.52) 32%, rgba(4,6,15,0.72) 72%, var(--ink) 96%),
      linear-gradient(100deg, rgba(4,6,15,0.88) 0%, rgba(4,6,15,0.5) 52%, transparent 82%);
  }
}
@media (max-width:520px){
  .hero-cta{ flex-direction:column; }
  .hero-cta .btn{ width:100%; }
}
@media (max-width:390px){
  .display{ font-size:clamp(2.5rem,8vw,3rem); }
  .hero-assure{ flex-direction:column; gap:10px; }
}

/* ===========================================================
   STORY (Section 2)
   =========================================================== */
.story{ background:linear-gradient(180deg, var(--ink), var(--midnight-deep) 60%, var(--ink)); }
.story-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:clamp(40px,7vw,110px); align-items:center;
}
.story-grid > *{ min-width:0; }
.story-copy h2{ margin:18px 0 26px; }
.story-copy .reveal + .reveal .lead{ margin-top:20px; }
.story-points{ margin-top:38px; display:flex; flex-direction:column; gap:2px; }
.story-point{
  display:grid; grid-template-columns:auto 1fr; gap:20px; padding:22px 4px;
  border-top:1px solid var(--line);
}
.story-point:last-child{ border-bottom:1px solid var(--line); }
.story-point .num{ font-family:var(--serif); font-size:1.4rem; color:var(--gold); font-style:italic; line-height:1; padding-top:2px; }
.story-point h4{ font-family:var(--sans); font-size:1.02rem; font-weight:600; color:var(--text); margin-bottom:5px; }
.story-point p{ font-size:0.95rem; color:var(--text-faint); line-height:1.6; }

.story-visual{ position:relative; }
.story-portrait{
  position:relative; border-radius:8px; overflow:hidden; aspect-ratio:4/5;
  box-shadow:0 40px 90px -40px rgba(0,0,0,0.8);
}
.story-portrait::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 40%, rgba(6,10,28,0.6));
  mix-blend-mode:multiply;
}
.story-portrait img{ width:100%; height:100%; object-fit:cover; }
.story-frame-line{
  position:absolute; inset:18px; border:1px solid var(--line-gold); border-radius:4px; z-index:3; pointer-events:none;
}
.story-quote{
  position:absolute; right:-24px; bottom:26px; z-index:4;
  background:rgba(8,12,28,0.82); backdrop-filter:blur(10px);
  border:1px solid var(--line-gold); border-radius:6px;
  padding:22px 26px; max-width:270px;
  box-shadow:0 30px 60px -30px rgba(0,0,0,0.9);
}
.story-quote p{ font-family:var(--serif); font-style:italic; font-size:1.18rem; line-height:1.4; color:var(--amber-soft); }
@media (max-width:880px){
  .story-grid{ grid-template-columns:1fr; }
  .story-quote{ right:6%; bottom:-18px; }
}
@media (max-width:520px){
  .story-quote{ right:0; bottom:-10px; max-width:calc(100% - 16px); }
}

/* ===========================================================
   CHAPTERS (Section 3)
   =========================================================== */
.chapters{ background:var(--ink); }
.section-head{ text-align:center; max-width:720px; margin:0 auto clamp(54px,7vw,90px); display:flex; flex-direction:column; align-items:center; gap:18px; }
.section-head .lead{ margin:4px auto 0; }
.chapter-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.chapter{
  position:relative; border-radius:10px; overflow:hidden; min-height:560px;
  display:flex; flex-direction:column; justify-content:flex-end;
  border:1px solid var(--line); cursor:pointer;
  transition:transform .6s var(--ease), border-color .6s, box-shadow .6s;
}
.chapter:hover{ transform:translateY(-8px); border-color:var(--line-gold); box-shadow:0 40px 80px -40px rgba(0,0,0,0.9), var(--glow-amber-soft); }
.chapter-img{ position:absolute; inset:0; z-index:0; }
.chapter-img img{ width:100%; height:100%; object-fit:cover; transition:transform 1.2s var(--ease), filter .6s; filter:brightness(0.78) saturate(1.05); }
.chapter:hover .chapter-img img{ transform:scale(1.07); filter:brightness(0.92) saturate(1.12); }
.chapter-img::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(4,6,15,0.15) 0%, rgba(4,6,15,0.35) 45%, rgba(4,6,15,0.94) 100%);
}
.chapter-body{ position:relative; z-index:2; padding:34px 30px 36px; }
.chapter-num{ font-family:var(--sans); font-size:0.7rem; letter-spacing:0.34em; text-transform:uppercase; color:var(--gold); margin-bottom:14px; }
.chapter h3{ font-size:clamp(1.55rem,1.7vw,1.8rem); margin-bottom:12px; }
.chapter-tagline{
  font-family:var(--serif); font-style:italic;
  font-size:0.9rem; color:var(--amber-soft); line-height:1.4;
  max-width:34ch; margin-top:10px; opacity:0.82;
}
.chapter-desc{
  font-size:0.88rem; color:var(--text-dim); line-height:1.65; max-width:34ch;
  max-height:0; opacity:0; overflow:hidden;
  transition:max-height .7s var(--ease), opacity .5s, margin .6s;
}
.chapter:hover .chapter-desc{ max-height:220px; opacity:1; margin-top:12px; }
.chapter .read{ margin-top:18px; display:inline-flex; align-items:center; gap:8px; font-size:0.82rem; font-weight:600; letter-spacing:0.04em; color:var(--gold-bright); text-transform:uppercase; }
.chapter .read .arrow{ transition:transform .4s var(--ease); }
.chapter:hover .read .arrow{ transform:translateX(5px); }
@media (max-width:880px){
  .chapter-cards{ grid-template-columns:1fr; }
  .chapter{ min-height:440px; }
  .chapter-desc{ max-height:400px; opacity:1; margin-top:12px; }
  .chapter-body{ padding:26px 22px 28px; }
}

/* ===========================================================
   JOURNEY (Section 4) — Drumul eroului
   =========================================================== */
.journey{ background:linear-gradient(180deg, var(--ink), var(--midnight-deep)); position:relative; overflow:hidden; }
.journey .wrap{ position:relative; z-index:2; }
.journey-track{ position:relative; margin-top:clamp(50px,7vw,90px); }
.journey-line{
  position:absolute; left:50%; top:0; bottom:0; width:2px; transform:translateX(-50%);
  background:rgba(200,210,228,0.1); z-index:0;
}
.journey-line .fill{
  position:absolute; left:0; top:0; width:100%; height:0;
  background:linear-gradient(180deg, var(--gold-bright), var(--amber));
  box-shadow:0 0 18px 2px rgba(240,179,94,0.6);
  transition:height .2s linear;
}
.journey-step{
  position:relative; z-index:2;
  display:grid; grid-template-columns:1fr 90px 1fr; align-items:center;
  margin-bottom:clamp(44px,7vw,86px);
}
.journey-step:last-child{ margin-bottom:0; }
.journey-card{
  background:rgba(10,14,30,0.6); border:1px solid var(--line); border-radius:10px;
  padding:30px 32px; backdrop-filter:blur(6px);
  transition:border-color .6s, box-shadow .6s, transform .6s var(--ease);
}
.journey-step.active .journey-card{ border-color:var(--line-gold); box-shadow:0 30px 70px -40px rgba(0,0,0,0.8), var(--glow-amber-soft); }
.journey-step:nth-child(odd) .journey-card{ grid-column:1; text-align:right; }
.journey-step:nth-child(odd) .journey-side{ grid-column:3; }
.journey-step:nth-child(even) .journey-card{ grid-column:3; text-align:left; }
.journey-step:nth-child(even) .journey-side{ grid-column:1; }
.journey-card .step-kicker{ font-family:var(--sans); font-size:0.68rem; letter-spacing:0.32em; text-transform:uppercase; color:var(--gold); margin-bottom:10px; }
.journey-card h3{ font-size:1.85rem; margin-bottom:10px; }
.journey-card p{ font-size:0.94rem; color:var(--text-dim); line-height:1.6; }
.journey-step:nth-child(odd) .journey-card p{ margin-left:auto; max-width:42ch; }

.journey-node{
  grid-column:2; justify-self:center;
  width:64px; height:64px; border-radius:50%;
  display:grid; place-items:center; position:relative;
  background:radial-gradient(circle at 50% 40%, #11182f, #070b1a);
  border:1px solid var(--line); color:var(--silver-dim);
  transition:border-color .6s, color .6s, box-shadow .6s, transform .6s var(--ease);
}
.journey-node .roman{ font-family:var(--serif); font-style:italic; font-size:1.5rem; }
.journey-step.active .journey-node{
  border-color:var(--gold); color:var(--gold-bright); transform:scale(1.08);
  box-shadow:0 0 0 6px rgba(214,162,74,0.1), 0 0 30px 4px rgba(240,179,94,0.5);
}
.journey-node::before{
  content:""; position:absolute; inset:-14px; border-radius:50%; border:1px solid transparent;
}
.journey-step.active .journey-node::before{ border-color:rgba(214,162,74,0.25); animation:pulse 2.4s ease-out infinite; }
@keyframes pulse{ 0%{ transform:scale(1); opacity:.8;} 100%{ transform:scale(1.5); opacity:0;} }

@media (max-width:860px){
  .journey-line{ left:31px; }
  .journey-step{ grid-template-columns:62px 1fr; gap:8px; margin-bottom:38px; }
  .journey-node{ grid-column:1 !important; width:54px; height:54px; }
  .journey-card{ grid-column:2 !important; text-align:left !important; padding:22px 22px; }
  .journey-step:nth-child(odd) .journey-card p,.journey-card p{ margin-left:0 !important; max-width:none; }
  .journey-side{ display:none; }
}

/* ===========================================================
   CLUB (Section 5) — stats
   =========================================================== */
.club{ background:var(--ink); position:relative; overflow:hidden; }
.club-inner{ position:relative; z-index:2; text-align:center; }
.stats{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:clamp(50px,7vw,84px); }
.stat{
  border:1px solid var(--line); border-radius:12px; padding:48px 28px;
  background:linear-gradient(180deg, rgba(14,20,42,0.5), rgba(8,11,24,0.3));
  position:relative; overflow:hidden;
  transition:border-color .6s, transform .6s var(--ease), box-shadow .6s;
}
.stat:hover{ transform:translateY(-6px); border-color:var(--line-gold); box-shadow:var(--glow-amber-soft); }
.stat::before{
  content:""; position:absolute; top:-40%; left:50%; transform:translateX(-50%);
  width:140%; height:80%;
  background:radial-gradient(50% 60% at 50% 50%, rgba(240,179,94,0.12), transparent 70%);
  opacity:0; transition:opacity .6s;
}
.stat:hover::before{ opacity:1; }
.stat .num{ font-family:var(--serif); font-size:clamp(3.2rem,6vw,5rem); font-weight:500; line-height:1; color:var(--gold-bright); letter-spacing:-0.02em; }
.stat .num .suffix{ font-size:0.5em; color:var(--gold); }
.stat .label{ margin-top:16px; font-size:0.8rem; letter-spacing:0.22em; text-transform:uppercase; color:var(--text-dim); }
.stat .sub{ margin-top:6px; font-size:0.86rem; color:var(--text-faint); font-style:italic; font-family:var(--serif); }
.club-note{ margin-top:40px; font-size:0.86rem; color:var(--text-faint); letter-spacing:0.04em; }
@media (min-width:761px) and (max-width:880px){
  .stats{ gap:16px; }
  .stat{ padding:34px 18px; }
}
@media (max-width:760px){ .stats{ grid-template-columns:1fr; } }
@media (max-width:520px){ .stat{ padding:34px 22px; } }

/* ===========================================================
   FINAL CTA (Section 6)
   =========================================================== */
.finale{ position:relative; overflow:hidden; background:var(--midnight-deep); }
.finale-bg{
  position:absolute; inset:0; z-index:0;
  background-image:url('assets/hero-bg.jpg'); background-size:cover; background-position:50% 60%;
  opacity:0.5;
}
.finale-bg::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, var(--ink) 0%, rgba(4,6,15,0.6) 30%, rgba(4,6,15,0.78) 70%, var(--ink) 100%);
}
.finale .wrap{ position:relative; z-index:3; }
.finale-grid{ display:grid; grid-template-columns:1.05fr 0.95fr; gap:clamp(40px,6vw,80px); align-items:center; }
.finale-grid > *{ min-width:0; }
.finale-copy h2{ margin:20px 0 22px; font-size:clamp(2.2rem, 3.6vw, 3.5rem); }
.finale-copy .lead{ margin-bottom:30px; }
.finale-trust{ display:flex; flex-direction:column; gap:20px; margin-top:30px; }
.finale-trust .item{ display:flex; gap:14px; align-items:flex-start; }
.finale-trust .tick{ color:var(--gold); flex:none; margin-top:3px; }
.finale-trust .item strong{ font-weight:600; color:var(--text); font-size:0.96rem; }
.finale-trust .item span{ display:block; color:var(--text-faint); font-size:0.88rem; }

/* form card */
.form-card{
  background:rgba(8,12,26,0.78); backdrop-filter:blur(16px);
  border:1px solid var(--line-gold); border-radius:16px;
  padding:clamp(30px,3.4vw,46px);
  box-shadow:0 50px 120px -50px rgba(0,0,0,0.95), inset 0 1px 0 rgba(255,255,255,0.05);
}
.form-card .form-title{ font-family:var(--serif); font-size:1.7rem; font-weight:500; margin-bottom:6px; }
.form-card .form-sub{ font-size:0.92rem; color:var(--text-faint); margin-bottom:26px; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:0.78rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--text-dim); margin-bottom:8px; font-weight:600; }
.field label .opt{ color:var(--text-faint); text-transform:none; letter-spacing:0; font-weight:400; font-style:italic; }
.field input, .field textarea{
  width:100%; background:rgba(255,255,255,0.04); border:1px solid var(--line);
  border-radius:10px; padding:14px 16px; color:var(--text); font-family:var(--sans); font-size:1rem;
  transition:border-color .3s, background .3s, box-shadow .3s; resize:none;
}
.field input::placeholder,.field textarea::placeholder{ color:var(--text-faint); }
.field input:focus,.field textarea:focus{
  outline:none; border-color:var(--gold); background:rgba(255,255,255,0.06);
  box-shadow:0 0 0 4px rgba(214,162,74,0.12);
}
.field.invalid input{ border-color:#c96a5a; box-shadow:0 0 0 4px rgba(201,106,90,0.12); }
.field .err{ color:#e08a7c; font-size:0.8rem; margin-top:7px; display:none; }
.field.invalid .err{ display:block; }
.form-card .btn-primary{ width:100%; margin-top:8px; }
.form-card .btn-primary:disabled{ opacity:0.65; cursor:progress; transform:none; box-shadow:0 8px 30px -8px rgba(214,162,74,0.45); }
.form-error{ margin-top:14px; text-align:center; font-size:0.84rem; color:#e08a7c; }
.form-foot{ margin-top:18px; text-align:center; font-size:0.78rem; color:var(--text-faint); }
.form-foot .tick{ color:var(--gold); }

/* success state */
.form-success{ text-align:center; padding:14px 6px; }
.form-success .seal{
  width:84px; height:84px; margin:0 auto 22px; border-radius:50%;
  display:grid; place-items:center; color:var(--gold-bright);
  background:radial-gradient(circle at 50% 40%, rgba(240,179,94,0.18), rgba(8,12,26,0.4));
  border:1px solid var(--line-gold); box-shadow:var(--glow-gold);
  animation:sealPop .7s var(--ease) both;
}
@keyframes sealPop{ 0%{ transform:scale(0.6); opacity:0;} 60%{ transform:scale(1.08);} 100%{ transform:scale(1); opacity:1;} }
.form-success h3{ font-size:1.9rem; margin-bottom:12px; }
.form-success p{ color:var(--text-dim); font-size:0.96rem; max-width:38ch; margin:0 auto; }
.form-success .next{ margin-top:26px; text-align:left; display:grid; gap:15px; }
.form-success .next .row{ display:flex; gap:12px; align-items:flex-start; font-size:0.9rem; color:var(--text-dim); line-height:1.45; }
.form-success .next .row .tick{ color:var(--gold); flex:none; }
@media (max-width:880px){ .finale-grid{ grid-template-columns:1fr; } }
@media (max-width:480px){
  .form-card{ padding:24px 20px; }
  .form-card .btn-primary{ white-space:normal; line-height:1.3; }
  .finale-copy h2{ font-size:clamp(1.9rem,6vw,2.4rem); }
}

/* ===========================================================
   FOOTER
   =========================================================== */
.footer{ background:var(--ink); border-top:1px solid var(--line); padding:70px 0 40px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; }
.footer .brand{ margin-bottom:18px; }
.footer-about{ color:var(--text-faint); font-size:0.9rem; max-width:34ch; line-height:1.6; }
.footer-col h5{ font-family:var(--sans); font-size:0.74rem; letter-spacing:0.22em; text-transform:uppercase; color:var(--gold); margin-bottom:18px; font-weight:600; }
.footer-col a{ display:block; color:var(--text-dim); text-decoration:none; font-size:0.92rem; margin-bottom:12px; transition:color .3s; }
.footer-col a:hover{ color:var(--gold-bright); }
.footer-bottom{ margin-top:54px; padding-top:26px; border-top:1px solid var(--line); display:flex; justify-content:space-between; flex-wrap:wrap; gap:16px; align-items:center; }
.footer-bottom p{ color:var(--text-faint); font-size:0.84rem; }
.footer-social{ display:flex; gap:14px; }
.footer-social a{ width:38px; height:38px; border:1px solid var(--line); border-radius:50%; display:grid; place-items:center; color:var(--text-dim); transition:all .3s; }
.footer-social a:hover{ border-color:var(--gold); color:var(--gold-bright); transform:translateY(-2px); }
/* ===========================================================
   CONTACT MODAL
   =========================================================== */
.contact-overlay{
  position:fixed; inset:0; z-index:200;
  background:rgba(4,6,15,0.78); backdrop-filter:blur(10px);
  display:flex; align-items:center; justify-content:center;
  padding:20px;
  animation:fadeUp .3s var(--ease);
}
.contact-modal{
  background:rgba(8,12,26,0.96); backdrop-filter:blur(20px);
  border:1px solid var(--line-gold); border-radius:16px;
  padding:clamp(32px,5vw,52px);
  max-width:440px; width:100%; position:relative;
  box-shadow:0 50px 120px -40px rgba(0,0,0,0.95), inset 0 1px 0 rgba(255,255,255,0.05);
  animation:sealPop .4s var(--ease);
}
.contact-close{
  position:absolute; top:16px; right:16px;
  width:34px; height:34px;
  background:rgba(255,255,255,0.04); border:1px solid var(--line);
  border-radius:50%; cursor:pointer;
  display:grid; place-items:center;
  color:var(--text-dim); transition:border-color .3s, color .3s;
}
.contact-close:hover{ border-color:var(--gold); color:var(--gold-bright); }
.contact-modal-title{ font-size:1.9rem; margin:14px 0 26px; }
.contact-links{ display:flex; flex-direction:column; gap:10px; }
.contact-link{
  display:flex; align-items:center; gap:16px;
  padding:15px 18px;
  border:1px solid var(--line); border-radius:10px;
  color:var(--text-dim); text-decoration:none;
  font-size:0.92rem; font-weight:500;
  transition:border-color .3s, color .3s, transform .35s var(--ease);
}
.contact-link:hover{ border-color:var(--line-gold); color:var(--gold-bright); transform:translateX(5px); }
.contact-link svg{ flex:none; color:var(--gold); }

@media (max-width:880px){ .footer-grid{ grid-template-columns:1fr 1fr; gap:30px; } }
@media (max-width:520px){ .footer-grid{ grid-template-columns:1fr; gap:24px; } }
@media (max-width:430px){
  .footer{ padding:50px 0 30px; }
  .footer-bottom{ margin-top:36px; flex-direction:column; align-items:flex-start; gap:12px; }
}
