:root {
  --navy: #0b1a24;
  --navy-2: #0f2534;
  --navy-3: #14304350;
  --gold: #cda653;
  --gold-light: #e8cf94;
  --text: #eef3f6;
  --text-muted: #a9b8c2;
  --border: #ffffff1a;
  --radius: 14px;
  --container: 1120px;
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--navy);
  color: var(--text);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { margin: 0 0 .5em; font-weight: 700; }

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

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-group > * { transition-delay: calc(var(--reveal-i, 0) * 90ms); }

/* SPOTLIGHT CARD EFFECT */
.spotlight { position: relative; isolation: isolate; }
.spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(240px circle at var(--x, 50%) var(--y, 50%), #cda65326, transparent 65%);
  transition: opacity .3s ease;
}
.spotlight:hover::before { opacity: 1; }

/* SCROLL PROGRESS */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  box-shadow: 0 0 8px 1px #cda65388;
  z-index: 100;
  transition: width .1s linear;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 26, 36, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease, background .3s ease;
}
.header--scrolled {
  background: rgba(11, 26, 36, 0.96);
  box-shadow: 0 8px 24px -12px #00000080;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .95rem;
}

.nav a { position: relative; color: var(--text-muted); transition: color .2s; }
.nav a:hover { color: var(--text); }
.nav a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .25s ease, left .25s ease;
}
.nav a:not(.nav__cta):hover::after { width: 100%; left: 0; }

.nav__cta {
  padding: 9px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-light) !important;
}
.nav__cta:hover { background: var(--gold); color: var(--navy) !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  display: block;
}

/* HERO */
.hero {
  position: relative;
  padding: 120px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(1200px 500px at 80% -10%, #cda65322, transparent),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background-image:
    linear-gradient(#cda65314 1px, transparent 1px),
    linear-gradient(90deg, #cda65314 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(700px 500px at 78% 20%, #000 0%, transparent 72%);
          mask-image: radial-gradient(700px 500px at 78% 20%, #000 0%, transparent 72%);
  animation: gridDrift 26s linear infinite;
  pointer-events: none;
}

@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 92px 46px, 92px 46px; }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__photo {
  position: relative;
}

.hero__photo-glow {
  position: absolute;
  inset: -12%;
  z-index: -1;
  background: radial-gradient(closest-side, #cda65340, transparent 70%);
  filter: blur(20px);
  animation: floatGlow 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(0, -14px) scale(1.06); }
}

.hero__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  animation: photoFloat 7s ease-in-out infinite;
}

@keyframes photoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero__badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(11, 26, 36, 0.75);
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
  animation: photoFloat 7s ease-in-out infinite;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5fd68a;
  box-shadow: 0 0 0 0 #5fd68a80;
  animation: pulseDot 2s ease-out infinite;
}

@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 #5fd68a66; }
  70%  { box-shadow: 0 0 0 8px #5fd68a00; }
  100% { box-shadow: 0 0 0 0 #5fd68a00; }
}

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

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 14px;
  animation: heroIn .7s ease both;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 20px;
  background: linear-gradient(100deg, var(--text) 40%, var(--gold-light) 60%, var(--text) 80%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroIn .7s ease .1s both, sheen 6s linear 1.5s infinite;
}

@keyframes sheen {
  from { background-position: 200% 0; }
  to   { background-position: -40% 0; }
}

.hero__lead {
  max-width: 640px;
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  animation: heroIn .7s ease .2s both;
}

.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; animation: heroIn .7s ease .3s both; }

.btn {
  position: relative;
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  overflow: hidden;
  transition: transform .2s, background .2s, color .2s, box-shadow .3s;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, transparent, #ffffff55, transparent);
  transform: skewX(-20deg);
  transition: left .55s ease;
}
.btn:hover::after { left: 130%; }
.btn--primary {
  background: var(--gold);
  color: var(--navy);
  animation: ctaPulse 3.2s ease-in-out 2s infinite;
}
.btn--primary:hover {
  transform: translateY(-2px);
  background: var(--gold-light);
  animation-play-state: paused;
  box-shadow: 0 6px 20px -4px #cda65380;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 #cda65300; }
  50% { box-shadow: 0 0 0 8px #cda65322; }
}
.btn--ghost { border: 1px solid var(--border); color: var(--text); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 780px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
  animation: heroIn .7s ease .4s both;
}
.stat__num {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
}
.stat__label {
  display: block;
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* SECTIONS */
.section { padding: 90px 0; }
.section--alt { background: var(--navy-2); }

.section__title {
  position: relative;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-align: center;
  padding-bottom: 18px;
}
.section__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%) scaleX(0);
  transition: transform .6s ease .15s;
}
.section__title.is-visible::after { transform: translateX(-50%) scaleX(1); }
.club__title.section__title { text-align: left; padding-bottom: 14px; }
.club__title.section__title::after { left: 0; transform: translateX(0) scaleX(0); }
.club__title.section__title.is-visible::after { transform: translateX(0) scaleX(1); }
.section__subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 50px;
}
.section > .container > .section__title { margin-bottom: 8px; }

/* ABOUT */
.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  margin-top: 50px;
  align-items: start;
}
.about__text p { color: var(--text-muted); margin-bottom: 18px; }
.about__text strong { color: var(--text); }

.about__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mini-card {
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: transform .25s ease, border-color .25s ease;
}
.mini-card:hover { transform: translateY(-4px); border-color: #cda65360; }
.mini-card h3 {
  font-size: .95rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.mini-card p {
  font-size: .88rem;
  color: var(--text-muted);
  margin: 0;
}

/* STEPS (offer / process) */
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.step-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform .25s ease, border-color .25s ease;
}
.step-card:hover { transform: translateY(-4px); border-color: #cda65360; }
.step-card__num {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.step-card__meta {
  display: inline-block;
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.step-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.step-card p { color: var(--text-muted); margin: 0; }

/* CLOSED CLUB */
.club__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.club__title { text-align: left; }
.club__text p { color: var(--text-muted); margin-bottom: 18px; }
.club__proof img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: block;
}
.club__caption {
  display: block;
  margin-top: 12px;
  font-size: .82rem;
  color: var(--text-muted);
  text-align: center;
}

/* TESTIMONIALS */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.testimonial {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0;
  transition: transform .25s ease, border-color .25s ease;
}
.testimonial:hover { transform: translateY(-4px); border-color: #cda65360; }
.testimonial p {
  color: var(--text);
  font-size: 1rem;
  margin: 0 0 16px;
}
.testimonial cite {
  color: var(--gold-light);
  font-style: normal;
  font-size: .85rem;
}
.testimonial--placeholder { opacity: .85; }

/* FAQ */
.faq {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: border-color .25s ease, transform .25s ease;
}
.faq-item:hover { border-color: #cda65360; }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform .3s ease;
}
.faq-item[open] summary::after { transform: rotate(135deg); }
.faq-item p {
  color: var(--text-muted);
  margin: 14px 0 0;
  animation: heroIn .35s ease both;
}

/* HOBBIES */
.hobbies__text {
  text-align: center;
  color: var(--text-muted);
  max-width: 620px;
  margin: 30px auto 40px;
  font-size: 1.05rem;
}
.hobbies__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto 40px;
}
.hobbies__photos img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--navy-2);
  display: block;
  transition: transform .5s ease;
}
.hobbies__photos img:hover { transform: scale(1.04); }
.hobbies__photos { overflow: hidden; }
.hobbies__photos > img,
.hobbies__photos > .hobbies__video { border-radius: var(--radius); overflow: hidden; }
.hobbies__video {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--navy-2);
  overflow: hidden;
}
.hobbies__video iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.hobbies__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.hobbies__tags span {
  background: var(--navy);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: .9rem;
}

/* CONTACTS */
.contacts {
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
}
.contacts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.contact-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.contact-card__label {
  display: block;
  color: var(--text-muted);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.contact-card__value {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
}

/* FOOTER */
.footer { padding: 30px 0; border-top: 1px solid var(--border); }
.footer__inner {
  color: var(--text-muted);
  font-size: .85rem;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .about__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .club__grid { grid-template-columns: 1fr; gap: 32px; }
  .club__title { text-align: center; }
  .club__title.section__title::after { left: 50%; transform: translateX(-50%) scaleX(0); }
  .club__title.section__title.is-visible::after { transform: translateX(-50%) scaleX(1); }
  .testimonials { grid-template-columns: 1fr; }
  .contacts__grid { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr; gap: 16px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__photo { max-width: 320px; margin: 0 auto; }
}

@media (max-width: 720px) {
  .nav { position: fixed; top: 72px; left: 0; right: 0; background: var(--navy-2);
    flex-direction: column; align-items: stretch; padding: 20px 24px; gap: 16px;
    border-bottom: 1px solid var(--border); transform: translateY(-130%);
    transition: transform .25s; }
  .nav.is-open { transform: translateY(0); }
  .nav__cta { text-align: center; }
  .burger { display: flex; }
  .about__cards { grid-template-columns: 1fr; }
  .hobbies__photos { grid-template-columns: 1fr; max-width: 320px; }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
