/* ============================================================
   M7 CALIFORNIA ELITE CAMP — Landing Page
   ============================================================ */

/* ---------- FONTS ---------- */
@font-face {
  font-family: "Bebas Neue";
  src: url("fonts/BebasNeue-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("fonts/BricolageGrotesque-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("fonts/BricolageGrotesque-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("fonts/BricolageGrotesque-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("fonts/BricolageGrotesque-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("fonts/BricolageGrotesque-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

/* ---------- TOKENS ---------- */
:root {
  --navy-950: #050E2A;
  --navy-900: #0A1628;     /* brief primary */
  --navy-800: #0F1F3D;
  --navy-700: #14306B;
  --navy-line: rgba(255,255,255,0.08);
  --gold: #C9A84C;         /* brief gold */
  --gold-warm: #D9B96A;
  --gold-deep: #A88838;
  --gold-wash: rgba(201,168,76,0.12);
  --white: #FFFFFF;
  --cream: #F6E9C9;
  --black: #0D0D0D;
  --ink-soft: rgba(255,255,255,0.72);
  --ink-mute: rgba(255,255,255,0.52);
  --ink-faint: rgba(255,255,255,0.32);

  --font-display: "Bebas Neue", "Bricolage Grotesque", sans-serif;
  --font-text: "Bricolage Grotesque", system-ui, sans-serif;

  --maxw: 1280px;
}

/* ---------- RESET ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-text);
  background: var(--navy-900);
  color: var(--white);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ---------- TYPOGRAPHY ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.left::after { display: none; }
.eyebrow.left::before { width: 36px; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0;
}
.h-mega { font-size: clamp(56px, 13vw, 168px); letter-spacing: -0.005em; }
.h-display { font-size: clamp(44px, 8vw, 96px); }
.h-section { font-size: clamp(36px, 6.4vw, 72px); line-height: 0.95; }
.h-sub { font-size: clamp(22px, 3.6vw, 36px); line-height: 1; }

.text-lead {
  font-size: clamp(17px, 1.9vw, 22px);
  font-weight: 300;
  line-height: 1.45;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
}
.text-body { font-size: 16px; color: var(--ink-soft); line-height: 1.6; }
.text-small { font-size: 14px; color: var(--ink-mute); }

.gold { color: var(--gold); }
.white { color: var(--white); }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1200px) { .container { padding: 0 64px; } }

section { position: relative; }
.section-pad { padding: 88px 0; }
@media (min-width: 768px) { .section-pad { padding: 128px 0; } }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(10, 22, 40, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--navy-line);
  transition: padding 0.3s ease;
}
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo img { height: 56px; width: auto; }
.nav__brand {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--white);
  line-height: 1;
  display: none;
}
@media (min-width: 640px) { .nav__brand { display: block; } }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.12em;
  border-radius: 4px;
  transition: background 0.18s ease, transform 0.18s ease;
}
.nav__cta:hover { background: var(--gold-warm); transform: translateY(-1px); }
.nav__cta svg { width: 16px; height: 16px; }

/* primary nav links */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__menu a {
  position: relative;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  padding: 4px 0;
  transition: color 0.18s ease;
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--gold-warm);
  transition: right 0.22s ease;
}
.nav__menu a:hover { color: var(--gold-warm); }
.nav__menu a:hover::after { right: 0; }

/* mobile hamburger toggle */
.nav__toggle {
  display: none;
  position: relative;
  z-index: 90;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

@media (min-width: 768px) { .nav { padding: 18px 40px; } .nav__logo img { height: 68px; } }
@media (min-width: 1100px) { .nav__menu { gap: 52px; } }

/* mobile: hide inline links, show hamburger */
@media (max-width: 880px) {
  .nav__toggle { display: flex; }
  .nav__menu { display: none; }
}

/* ---------- MOBILE DRAWER (body-level overlay, free of nav backdrop-filter) ---------- */
.mnav {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}
.mnav.is-open {
  visibility: visible;
  pointer-events: auto;
}
.mnav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 14, 42, 0.6);
  opacity: 0;
  transition: opacity 0.32s ease;
}
.mnav.is-open .mnav__backdrop { opacity: 1; }
.mnav__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100svh;
  width: min(82vw, 340px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  padding: 0 40px;
  background: var(--navy-950);
  border-left: 1px solid var(--navy-line);
  box-shadow: -24px 0 60px rgba(5, 14, 42, 0.5);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.4, .0, .2, 1);
}
.mnav.is-open .mnav__panel { transform: translateX(0); }
.mnav__links {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.mnav__links a {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  transition: color 0.18s ease;
}
.mnav__links a:active,
.mnav__links a:hover { color: var(--gold-warm); }
.mnav__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
}
.mnav__close span {
  position: absolute;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: background 0.18s ease;
}
.mnav__close span:nth-child(1) { transform: rotate(45deg); }
.mnav__close span:nth-child(2) { transform: rotate(-45deg); }
.mnav__close:active span { background: var(--gold-warm); }

/* prevent background scroll while the drawer is open */
body.nav-locked { overflow: hidden; }

/* drawer never participates on desktop */
@media (min-width: 881px) {
  .mnav { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 120px 0 60px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-900);
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 75% 15%, rgba(201,168,76,0.18) 0%, transparent 60%),
    radial-gradient(80% 60% at 10% 100%, rgba(20,48,107,0.6) 0%, transparent 70%),
    linear-gradient(180deg, #050E2A 0%, #0A1628 40%, #050912 100%);
  z-index: -2;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
          mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  z-index: -1;
  opacity: 0.6;
}
.hero__court {
  position: absolute;
  right: -6%;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 64vmin;
  height: auto;
  max-height: 116%;
  z-index: -1;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(120% 100% at 70% 40%, black 35%, transparent 88%);
          mask-image: radial-gradient(120% 100% at 70% 40%, black 35%, transparent 88%);
}
.hero__inner { width: 100%; }
.hero__kicker { margin-bottom: 32px; }
.hero__title {
  margin-bottom: 28px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.hero__title .line { display: block; }
.hero__title .line--gold { color: var(--gold); }
.hero__title .line--outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--white);
  font-style: italic;
}
.hero__sub {
  max-width: 620px;
  margin-bottom: 44px;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  margin-bottom: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--navy-line);
}
.meta-item__label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 6px;
}
.meta-item__value {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1;
  color: var(--white);
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy-900);
  box-shadow: inset 0 0 0 1px var(--gold-warm), 0 10px 30px -10px rgba(201,168,76,0.5);
}
.btn--primary:hover { background: var(--gold-warm); transform: translateY(-2px); box-shadow: 0 14px 40px -10px rgba(201,168,76,0.6); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn svg { width: 18px; height: 18px; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--ink-mute);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* ---------- SECTION HEADER ---------- */
.sec-head { margin-bottom: 56px; max-width: 880px; }
.sec-head .eyebrow { margin-bottom: 20px; }
.sec-head__title { margin-bottom: 20px; }
.sec-head__sub { color: var(--ink-soft); font-size: clamp(17px, 1.8vw, 20px); font-weight: 300; line-height: 1.5; max-width: 720px; }
@media (min-width: 768px) { .sec-head { margin-bottom: 80px; } }

/* ---------- ABOUT ---------- */
.about {
  background:
    linear-gradient(180deg, rgba(10,22,40,0.82) 0%, rgba(6,14,30,0.92) 100%),
    url('assets/about-bg-venice.jpg') center / cover no-repeat;
  border-top: 1px solid var(--navy-line);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .about__grid { grid-template-columns: 1.1fr 1fr; gap: 96px; align-items: center; }
}
.about__pull {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  color: var(--white);
}
.about__pull em { color: var(--gold); font-style: normal; }
.about__cta { display: flex; width: fit-content; margin-top: 32px; }
.about__copy p { margin: 0 0 22px; }
.about__copy p:last-child { margin-bottom: 0; }

/* ---------- INCLUDES ---------- */
.includes { background: var(--navy-900); border-top: 1px solid var(--navy-line); }
.includes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) { .includes__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .includes__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.inc-cta { display: flex; justify-content: center; margin-top: 56px; }

.inc-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--navy-line);
  padding: 28px 24px 30px;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
}
.inc-card:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-3px); }
.inc-card__num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.inc-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  color: var(--white);
  text-transform: uppercase;
}
.inc-card__desc { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; flex: 1; }
.inc-card__icon {
  position: absolute;
  top: 26px;
  right: 22px;
  color: rgba(201,168,76,0.6);
}
.inc-card__icon svg { width: 22px; height: 22px; }

/* Featured photo cards */
.inc-card--photo {
  grid-column: span 1;
  padding: 0;
  background: var(--navy-800);
}
@media (min-width: 1080px) {
  .inc-card--photo.feature { grid-column: span 1; }
}
.photo-ph {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 50% 40%, rgba(201,168,76,0.06) 0%, transparent 60%),
    linear-gradient(135deg, #0D1F3F 0%, #050E2A 60%, #03081A 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--navy-line);
  transition: border-color 0.25s ease;
}
.inc-card--photo:hover .photo-ph { border-color: rgba(201,168,76,0.35); }
.photo-ph::before {
  /* hatching pattern to suggest a placeholder */
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 14px
  );
  pointer-events: none;
}
.photo-ph__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -62%);
  width: 68px;
  height: 68px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.photo-ph__icon svg { width: 28px; height: 28px; }
.photo-ph__corner {
  display: none;
}
.photo-ph__meta {
  position: relative;
  z-index: 1;
}
.photo-ph__label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: 8px;
}
.photo-ph__title {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
}
.photo-ph__title small {
  display: block;
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-mute);
  margin-top: 10px;
  max-width: 100%;
}

/* Filled photo variant — real image replacing the placeholder */
.photo-ph--filled { background: #000; }
.photo-ph--filled::before { display: none; }
.photo-ph__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.photo-ph--filled .photo-ph__icon { display: none; }
.photo-ph--filled::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 45%, rgba(5,14,42,0.7) 75%, rgba(5,14,42,0.95) 100%);
  z-index: 1;
}
.photo-ph--filled .photo-ph__corner,
.photo-ph--filled .photo-ph__meta { z-index: 2; }
.photo-ph--filled .photo-ph__title small { color: rgba(255,255,255,0.78); }

/* ---------- AGENDA ---------- */
.agenda {
  background: linear-gradient(180deg, #060E1E 0%, #03081A 100%);
  border-top: 1px solid var(--navy-line);
}
.agenda__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.day {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--navy-line);
  align-items: start;
  transition: padding-left 0.25s ease;
}
.day:hover { padding-left: 12px; }
.day:hover .day__tag { color: var(--gold-warm); }
@media (min-width: 700px) {
  .day { grid-template-columns: 120px 1fr 1fr; gap: 32px; align-items: center; }
}
.day__tag {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold);
  transition: color 0.25s ease;
}
.day__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1;
  color: var(--white);
  text-transform: uppercase;
}
.day__desc { color: var(--ink-soft); font-size: 15px; line-height: 1.5; }
@media (max-width: 699px) {
  .day__desc { grid-column: 1 / -1; padding-left: 88px; margin-top: -4px; }
}

/* ---------- TEAM CAROUSEL ---------- */
.team { background: var(--navy-900); border-top: 1px solid var(--navy-line); overflow: hidden; }
.team__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.team__head { max-width: 720px; }
.carousel-nav { display: flex; gap: 10px; }
.carousel-nav__btn {
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: var(--white);
}
.carousel-nav__btn:hover:not(:disabled) {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy-900);
}
.carousel-nav__btn:disabled { opacity: 0.3; cursor: not-allowed; }
.carousel-nav__btn svg { width: 18px; height: 18px; }

.carousel {
  position: relative;
  overflow: visible;
}
@media (hover: hover) and (pointer: fine) {
  .carousel { cursor: ew-resize; }
}
/* While hover-scrubbing we drive scrollLeft manually, so kill native
   snap + smooth-scroll to avoid the two fighting each other. */
.carousel.is-scrubbing .carousel__track {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.carousel__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0 32px;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
}
.carousel__track::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
  .carousel__track { margin: 0 -40px; padding-left: 40px; padding-right: 40px; gap: 24px; }
}
@media (min-width: 1200px) {
  .carousel__track { margin: 0 -64px; padding-left: 64px; padding-right: 64px; }
}

.member {
  flex: 0 0 78%;
  scroll-snap-align: start;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--navy-line);
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.member:hover { border-color: rgba(201,168,76,0.4); }
@media (min-width: 640px) { .member { flex: 0 0 360px; } }
@media (min-width: 1080px) { .member { flex: 0 0 380px; } }

.member__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 50% 40%, rgba(201,168,76,0.08) 0%, transparent 55%),
    linear-gradient(160deg, #14306B 0%, #0A1628 60%, #050E2A 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--navy-line);
}
.member__photo::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 12px);
}
.member__photo-glyph {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -56%);
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.member__photo-glyph svg { width: 36px; height: 36px; }
.member__photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 1;
}
.member__photo:has(.member__photo-img)::before { display: none; }
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
.team-grid .member { flex: none; width: 100%; scroll-snap-align: none; }

.inc-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--navy-800, #0a1f4d);
  border: 1px solid var(--navy-line);
  border-radius: 4px;
  overflow: hidden;
}
@media (min-width: 860px) { .inc-feature { grid-template-columns: 1.1fr 1fr; } }
.inc-feature__media { position: relative; min-height: 240px; }
@media (min-width: 860px) { .inc-feature__media { min-height: 100%; } }
.inc-feature__img { position: absolute; inset: 0; width: 100%; height: 100%; }
.inc-feature__body { padding: 32px 28px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
@media (min-width: 860px) { .inc-feature__body { padding: 40px 44px; } }
.inc-feature__label { font-family: var(--font-display); letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-size: 14px; }
.inc-feature__title { font-family: var(--font-display); font-size: 30px; letter-spacing: -0.01em; color: var(--white); line-height: 1.1; margin: 0; }
@media (min-width: 860px) { .inc-feature__title { font-size: 36px; } }
.inc-feature__text { color: var(--ink-mute); font-size: 16px; line-height: 1.5; margin: 0; }

.member__photo:has(.member__photo-img)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 45%, rgba(5,14,42,0.55) 78%, rgba(5,14,42,0.92) 100%);
}
.member__photo-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  z-index: 3;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--gold);
}
.member__photo-corner {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--ink-mute);
}
.member__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.member__role {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.member__name {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  color: var(--white);
  text-transform: uppercase;
}
.member__bio { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }
.member__rule {
  margin-top: 8px;
  width: 32px; height: 2px; background: var(--gold);
}

.carousel__dots {
  display: none;
}
.carousel__dot {
  width: 28px; height: 2px;
  background: rgba(255,255,255,0.18);
  transition: background 0.2s ease;
}
.carousel__dot.is-active { background: var(--gold); }

/* ---------- AUTHORITY ---------- */
.authority {
  background: linear-gradient(180deg, #03081A 0%, var(--navy-900) 100%);
  border-top: 1px solid var(--navy-line);
}
.auth__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) { .auth__grid { grid-template-columns: 0.85fr 1.15fr; gap: 80px; } }
.auth__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.auth__videoframe {
  position: relative;
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 330px;
  background:
    radial-gradient(circle at 50% 35%, rgba(201,168,76,0.1) 0%, transparent 60%),
    linear-gradient(160deg, #14306B 0%, #0A1628 70%, #050E2A 100%);
  border: 1px solid var(--navy-line);
  overflow: hidden;
}
.auth__visual-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.auth__videoframe--facade {
  display: block;
  padding: 0;
  cursor: pointer;
  background-color: #0A1628;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.auth__videoframe--facade::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,14,42,0.12) 0%, rgba(5,14,42,0.05) 45%, rgba(5,14,42,0.35) 100%);
  transition: background 0.2s var(--ease-out, ease);
}
.auth__videoframe--facade:hover::after {
  background: linear-gradient(180deg, rgba(5,14,42,0.05) 0%, rgba(5,14,42,0) 45%, rgba(5,14,42,0.3) 100%);
}
.auth__playbtn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px; height: 66px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy-900);
  box-shadow: 0 10px 30px rgba(5,14,42,0.45);
  transition: transform 0.18s var(--ease-out, ease), background 0.18s var(--ease-out, ease);
}
.auth__videoframe--facade:hover .auth__playbtn { transform: translate(-50%, -50%) scale(1.06); }
.auth__videoframe--facade:active .auth__playbtn { transform: translate(-50%, -50%) scale(0.97); }
.auth__playbtn svg { width: 30px; height: 30px; margin-left: 3px; }
.auth__visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 14px);
}
.auth__visual-glyph {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.auth__visual-glyph svg { width: 42px; height: 42px; }
.auth__visual-tag {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--gold);
}
.auth__visual-corner {
  position: absolute;
  top: 18px; right: 18px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--ink-mute);
}
.auth__quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 32px;
}
.auth__quote em { color: var(--gold); font-style: normal; }
.auth__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--navy-line);
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 52px);
  line-height: 1;
  color: var(--gold);
}
.stat__label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  margin-top: 8px;
}

/* ---------- INVESTMENT ---------- */
.invest { background: var(--navy-950); border-top: 1px solid var(--navy-line); }
.invest__card {
  position: relative;
  background: linear-gradient(180deg, #0A1F4D 0%, #050E2A 100%);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 48px 28px;
  overflow: hidden;
}
@media (min-width: 768px) { .invest__card { padding: 72px 64px; } }
.invest__card::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse at right top, black, transparent 70%);
          mask-image: radial-gradient(ellipse at right top, black, transparent 70%);
  pointer-events: none;
}
.invest__inner { position: relative; display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
@media (min-width: 900px) { .invest__inner { grid-template-columns: 1.15fr 0.85fr; gap: 56px; } }
.invest__label {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: 14px;
}
.invest__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--font-display);
  line-height: 0.9;
  margin-bottom: 10px;
}
.invest__currency {
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--ink-mute);
}
.invest__amount {
  font-size: clamp(64px, 10vw, 128px);
  color: var(--white);
  letter-spacing: -0.01em;
}
.invest__install {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.invest__install-tag {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.invest__install strong {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--white);
  letter-spacing: 0.02em;
}
.invest__sub { color: var(--ink-soft); font-size: 16px; max-width: 460px; line-height: 1.55; }

.invest__value {
  list-style: none;
  margin: 28px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--navy-line);
  display: grid;
  gap: 14px;
  max-width: 480px;
}
.invest__value li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.35;
}
.invest__value svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.invest__exclude {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.14);
  max-width: 480px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.invest__exclude span {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  margin-bottom: 6px;
}

.invest__side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.invest__pay { display: flex; flex-direction: column; gap: 12px; }
.invest__pay-head {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  margin-bottom: 2px;
}
.invest__pay-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--navy-line);
  background: rgba(255,255,255,0.02);
}
.invest__pay-item svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.invest__pay-text { font-size: 14.5px; line-height: 1.4; }
.invest__pay-text strong { color: var(--gold); font-weight: 600; display: block; margin-bottom: 2px; font-family: var(--font-display); letter-spacing: 0.12em; font-size: 14px; }
.invest__pay-text span { color: var(--ink-mute); font-size: 13px; }

.spots {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
}
.spots__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.2);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201,168,76,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(201,168,76,0.05); }
}
.spots__text {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--white);
  text-transform: uppercase;
}
.spots__text span { color: var(--gold); }

.invest__cta-btn { width: 100%; justify-content: center; }

/* ---------- RESERVE FORM ---------- */
.reserve-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--navy-line);
  border-radius: 6px;
}
.reserve-form__head {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--gold);
}
.rf-field { display: flex; flex-direction: column; gap: 7px; }
.rf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rf-field--city { grid-column: auto; }
.rf-row:has(.rf-field--uf) { grid-template-columns: 1fr 90px; }
.rf-field label,
.rf-legend {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.reserve-form input[type="text"],
.reserve-form input[type="email"],
.reserve-form input[type="tel"],
.reserve-form input[type="date"],
.reserve-form select {
  width: 100%;
  font-family: var(--font-text);
  font-size: 15px;
  color: var(--white);
  background: rgba(5,14,42,0.55);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 4px;
  padding: 11px 13px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  -webkit-appearance: none;
  appearance: none;
}
.reserve-form input::placeholder { color: rgba(255,255,255,0.34); }
.reserve-form input:focus,
.reserve-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.22);
}
.reserve-form input[type="date"] { color-scheme: dark; }
.rf-field--uf select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}
.reserve-form select { color: var(--white); }
.reserve-form select:invalid { color: rgba(255,255,255,0.34); }
.rf-choice { display: flex; gap: 10px; }
.rf-choice label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 4px;
  background: rgba(5,14,42,0.55);
  font-family: var(--font-text);
  font-size: 15px;
  color: var(--ink-soft);
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}
.rf-choice input { position: absolute; opacity: 0; pointer-events: none; }
.rf-choice label:has(input:checked) {
  border-color: var(--gold);
  background: rgba(201,168,76,0.12);
  color: var(--gold);
}
.rf-choice label:has(input:focus-visible) { box-shadow: 0 0 0 2px rgba(201,168,76,0.22); }
.reserve-form + .invest__cta-btn { margin-top: 18px; }
.invest__reassure {
  margin: 0;
  text-align: center;
  font-size: 13px;
  color: var(--ink-mute);
}

/* ---------- FAQ ---------- */
.faq { background: var(--navy-900); border-top: 1px solid var(--navy-line); }
.faq__list {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--navy-line);
}
.faq__item {
  border-bottom: 1px solid var(--navy-line);
}
.faq__q {
  list-style: none;
  cursor: pointer;
  position: relative;
  display: block;
  padding: 26px 48px 26px 8px;
  font-family: var(--font-display-2, var(--font-text));
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--gold-warm); }
.faq__icon {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform 0.28s cubic-bezier(0.22,1,0.36,1), opacity 0.28s ease;
}
.faq__icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq__icon::after { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.faq__item[open] .faq__icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq__item[open] .faq__q { color: var(--gold); }
.faq__a {
  padding: 0 56px 28px 8px;
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
}
.faq__a a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.faq__a a:hover { color: var(--gold-warm); }
.faq__item[open] .faq__a { animation: faqReveal 0.32s var(--ease-out, ease) both; }
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- FINAL CTA ---------- */
.final {
  background: var(--black);
  background:
    radial-gradient(60% 50% at 50% 30%, rgba(201,168,76,0.18) 0%, transparent 60%),
    linear-gradient(180deg, #050E2A 0%, #03081A 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
          mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.final .container { position: relative; }
.final__eyebrow { margin-bottom: 28px; justify-content: center; }
.final__title {
  font-size: clamp(48px, 10vw, 128px);
  margin-bottom: 24px;
}
.final__title .line--outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  font-style: italic;
}
.final__sub { color: var(--ink-soft); font-size: clamp(17px, 1.9vw, 22px); font-weight: 300; max-width: 620px; margin: 0 auto 44px; line-height: 1.5; }
.final__cta {
  font-size: 17px;
  padding: 22px 36px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-950);
  padding: 56px 0 32px;
  border-top: 1px solid var(--navy-line);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--navy-line);
}
@media (min-width: 700px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; } }
.footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer__logo img { height: 48px; }
.footer__brand { font-family: var(--font-display); font-size: 15px; letter-spacing: 0.18em; }
.footer__about { color: var(--ink-mute); font-size: 14px; line-height: 1.6; max-width: 380px; }
.footer__col-title {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__list a, .footer__list span { color: var(--ink-soft); font-size: 14px; transition: color 0.2s ease; }
.footer__list a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}

/* ---------- FLOATING WHATSAPP ---------- */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: #25D366;
  color: #053812;
  border-radius: 999px;
  box-shadow: 0 10px 28px -4px rgba(37,211,102,0.5), 0 4px 12px rgba(0,0,0,0.3);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.14em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 14px 36px -4px rgba(37,211,102,0.6); }
.wa-float__icon {
  width: 32px; height: 32px; background: #053812; color: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.wa-float__icon svg { width: 18px; height: 18px; }
.wa-float__text { display: none; }
@media (min-width: 480px) { .wa-float__text { display: inline; } .wa-float { padding: 14px 20px 14px 14px; } }
@media (min-width: 768px) {
  .wa-float { bottom: 28px; right: 28px; padding: 16px 24px 16px 16px; font-size: 15px; }
  .wa-float__icon { width: 38px; height: 38px; }
}

/* ---------- ANIMATIONS / REVEALS ----------
   Transform-only (no opacity gate) so content is always visible
   even if the transition fails to tick in some iframe environments.
   We use a short translateY that lands at zero on .is-in. */
.reveal { transform: translateY(14px); transition: transform 0.7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-in { transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }

/* prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { transform: none; transition: none; }
  .hero__scroll::after { animation: none; }
  .spots__dot { animation: none; }
}
