/* ============================================================
   METATRON LANDING PAGE — style.css
   Palette: Midnight Void · Celestial Gold · Nebula Violet
   ============================================================ */

/* ── TOKENS ── */
:root {
  --void:        #04020f;
  --deep:        #0b0722;
  --mid:         #120d35;
  --surface:     #1a1245;
  --rim:         #2a1f6a;

  --gold-bright: #f0c040;
  --gold:        #c9a227;
  --gold-dim:    #7a5c10;
  --gold-ghost:  rgba(201,162,39,0.12);

  --violet:      #7b4fd4;
  --violet-soft: #a37ee8;
  --violet-dim:  rgba(123,79,212,0.18);

  --text-hi:     #f2eaff;
  --text-mid:    #b8a9d9;
  --text-lo:     #6e5f99;

  --glow-gold:   0 0 18px rgba(240,192,64,0.45), 0 0 60px rgba(201,162,39,0.20);
  --glow-violet: 0 0 24px rgba(123,79,212,0.45);

  --font-display: 'Cinzel Decorative', serif;
  --font-serif:   'Cinzel', serif;
  --font-body:    'EB Garamond', Georgia, serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--void);
  color: var(--text-mid);
  font-family: var(--font-body);
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.75;
  overflow-x: hidden;
}

/* ── STARFIELD ── */
#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── CONTAINERS ── */
.container {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ── GLOBAL SECTION ── */
.section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  z-index: 1;
}
.section__label {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.85;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--text-hi);
  line-height: 1.15;
  margin-bottom: 2.5rem;
  text-shadow: var(--glow-gold);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__halo {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: min(900px, 130vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(123,79,212,0.22) 0%,
    rgba(201,162,39,0.10) 35%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
  animation: haloPulse 7s ease-in-out infinite alternate;
}
@keyframes haloPulse {
  from { opacity: 0.7; transform: scale(0.96); }
  to   { opacity: 1;   transform: scale(1.04); }
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 660px;
  padding: 0 20px;
}

.eyebrow {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 700;
  color: var(--text-hi);
  line-height: 1;
  letter-spacing: 0.04em;
  text-shadow:
    0 0 30px rgba(240,192,64,0.7),
    0 0 80px rgba(201,162,39,0.35),
    0 0 140px rgba(123,79,212,0.25);
  animation: titleShimmer 4s ease-in-out infinite alternate;
  margin-bottom: 0.4rem;
}
@keyframes titleShimmer {
  from { text-shadow: 0 0 30px rgba(240,192,64,0.6), 0 0 80px rgba(201,162,39,0.25), 0 0 140px rgba(123,79,212,0.2); }
  to   { text-shadow: 0 0 40px rgba(240,192,64,0.9), 0 0 100px rgba(201,162,39,0.5), 0 0 180px rgba(123,79,212,0.35); }
}

.hero__sub {
  font-family: var(--font-serif);
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero__trinity {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.2rem;
  margin-bottom: 2.5rem;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text-mid);
}
.hero__trinity li { opacity: 0.85; }
.hero__trinity li + li::before {
  content: "·";
  margin-right: 1.2rem;
  color: var(--gold-dim);
}

.btn-primary {
  display: inline-block;
  padding: 0.85em 2.2em;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-family: var(--font-serif);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), color 0.35s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-ghost);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.btn-primary:hover { box-shadow: var(--glow-gold); color: var(--text-hi); }
.btn-primary:hover::before { transform: scaleX(1); }

/* Hero cube */
.hero__cube-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.metatron-cube {
  width: min(680px, 95vmin);
  height: min(680px, 95vmin);
  opacity: 0.12;
  animation: cubeRotate 90s linear infinite;
}
@keyframes cubeRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  translate: -50% 0;
  z-index: 4;
}
.hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0; transform: translateY(-10px); }
  50%       { opacity: 1; transform: translateY(10px); }
}

/* ── WHO ── */
.section--who { background: linear-gradient(180deg, transparent, rgba(26,18,69,0.6) 30%, rgba(26,18,69,0.6) 70%, transparent); }
.who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 720px) { .who__grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.who__text p {
  margin-bottom: 1.2em;
  color: var(--text-mid);
  font-size: 1.05rem;
}
.who__text em { color: var(--gold); font-style: italic; }

.who__attributes { display: flex; flex-direction: column; gap: 1.8rem; }
.attribute {
  padding: 1.5rem;
  border: 1px solid var(--rim);
  background: var(--gold-ghost);
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.attribute:hover { border-color: var(--gold-dim); box-shadow: var(--glow-gold); }
.attribute__icon {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  display: block;
}
.attribute h3 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--text-hi);
  margin-bottom: 0.4rem;
}
.attribute p { font-size: 0.9rem; line-height: 1.6; }

/* ── AKASHIC ── */
.section--akashic { overflow: hidden; }
.akashic__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(123,79,212,0.15) 0%, transparent 70%),
    linear-gradient(180deg, transparent, rgba(11,7,34,0.9) 20%, rgba(11,7,34,0.9) 80%, transparent);
  z-index: 1;
}

.akashic__quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--text-hi);
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0.9;
  padding: 0 10%;
  position: relative;
}
.akashic__quote::before, .akashic__quote::after {
  content: '"';
  color: var(--gold);
  font-size: 4rem;
  line-height: 0;
  vertical-align: -0.5em;
  font-style: normal;
  opacity: 0.5;
}

.akashic__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.acard {
  padding: 2rem 1.5rem;
  border: 1px solid var(--rim);
  background: rgba(26,18,69,0.5);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  cursor: default;
}
.acard::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  translate: -50% 0;
  width: 40%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}
.acard:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5), var(--glow-violet); }
.acard:hover::after { transform: scaleX(1); }
.acard__glyph { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; line-height: 1; }
.acard h3 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--text-hi);
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.acard p { font-size: 0.9rem; line-height: 1.6; }

/* ── ROLES TABLE ── */
.section--roles {}
.roles__table { border: 1px solid var(--rim); }
.role-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  border-bottom: 1px solid var(--rim);
  padding: 1.4rem 2rem;
  transition: background 0.3s;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideIn 0.6s var(--ease-out) forwards;
}
.role-row--head {
  background: var(--gold-ghost);
  font-family: var(--font-serif);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 1;
  transform: none;
  animation: none;
}
.role-row:not(.role-row--head):hover { background: rgba(201,162,39,0.07); }
.role-row:last-child { border-bottom: none; }
@keyframes slideIn {
  to { opacity: 1; transform: translateX(0); }
}
.role-row[data-delay="0"] { animation-delay: 0.1s; }
.role-row[data-delay="1"] { animation-delay: 0.25s; }
.role-row[data-delay="2"] { animation-delay: 0.4s; }
.role-row[data-delay="3"] { animation-delay: 0.55s; }
.role-row__name {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.role-icon { font-size: 1.1rem; }
.role-row__desc { font-size: 0.92rem; color: var(--text-mid); }

@media (max-width: 600px) {
  .role-row { grid-template-columns: 1fr; gap: 0.4rem; }
  .role-row--head span:last-child { display: none; }
}

/* ── RECORDED WHEEL ── */
.section--recorded {
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(42,31,106,0.3) 0%, transparent 70%);
}
.recorded__wheel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--rim);
}
@media (max-width: 600px) { .recorded__wheel { grid-template-columns: repeat(2, 1fr); } }

.recorded__item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--rim);
  border-bottom: 1px solid var(--rim);
  transition: background 0.3s;
}
.recorded__item:hover { background: var(--gold-ghost); }
.recorded__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 auto 1rem;
  box-shadow: 0 0 12px var(--gold);
  animation: dotPulse 3s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.5s);
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 8px var(--gold); }
  50%       { box-shadow: 0 0 20px var(--gold), 0 0 40px rgba(240,192,64,0.4); }
}
.recorded__item h3 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--text-hi);
  margin-bottom: 0.3rem;
}
.recorded__item p { font-size: 0.85rem; color: var(--text-lo); font-style: italic; }

/* ── AFFIRMATION ── */
.section--affirmation {
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.affirmation__beam {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 100% at 50% 50%, rgba(123,79,212,0.25) 0%, transparent 70%);
  pointer-events: none;
  animation: beamSway 8s ease-in-out infinite alternate;
}
@keyframes beamSway {
  from { opacity: 0.6; transform: scaleY(0.9); }
  to   { opacity: 1;   transform: scaleY(1.1); }
}

.affirmation__lines { text-align: center; margin-bottom: 1.5rem; }
.affirmation__line {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.8rem);
  color: var(--text-hi);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.affirmation__line.visible {
  opacity: 1;
  transform: translateY(0);
  text-shadow: 0 0 30px rgba(240,192,64,0.35);
}
.affirmation__attr {
  text-align: center;
  font-style: italic;
  color: var(--gold);
  font-size: 0.95rem;
  opacity: 0.8;
}

/* ── SYMBOLS ── */
.symbols__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.symbol-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid var(--rim);
  background: rgba(18,13,53,0.6);
  transition: box-shadow 0.4s, transform 0.4s var(--ease-out);
}
.symbol-card:hover { box-shadow: var(--glow-gold); transform: translateY(-4px); }
.symbol-card__art {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.symbol-card__art--rod { height: 160px; }
.symbol-card__art--book { width: 140px; }
.symbol-svg { width: 100%; height: 100%; }
.symbol-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--gold-bright);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}
.symbol-card p { font-size: 0.9rem; line-height: 1.65; }

/* ── CONNECT ── */
.section--connect {
  background: linear-gradient(180deg, transparent, rgba(11,7,34,0.7) 20%, rgba(11,7,34,0.7) 80%, transparent);
}
.connect__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  border: 1px solid var(--rim);
}
.connect__step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--rim);
  position: relative;
  transition: background 0.3s;
}
.connect__step:last-child { border-right: none; }
.connect__step:hover { background: var(--gold-ghost); }
.step__num {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.connect__step h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--text-hi);
  margin-bottom: 0.7rem;
}
.connect__step p { font-size: 0.9rem; line-height: 1.65; }
@media (max-width: 700px) { .connect__step { border-right: none; border-bottom: 1px solid var(--rim); } }

/* ── CALL UPON ── */
.section--call {
  text-align: center;
}
.call__list {
  display: inline-flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}
.call__item {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid transparent;
  transition: border-color 0.3s, color 0.3s, padding-left 0.3s;
}
.call__item:hover { border-color: var(--rim); color: var(--text-hi); padding-left: 1.8rem; }
.call__star { color: var(--gold); font-size: 0.8rem; flex-shrink: 0; }

/* ── CLOSING ── */
.section--closing {
  text-align: center;
  padding-bottom: clamp(80px, 12vw, 160px);
}
.closing__quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3.5vw, 2rem);
  color: var(--text-hi);
  font-style: normal;
  line-height: 1.55;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.closing__quote--2 {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--text-mid);
  opacity: 0.75;
}
.closing__divider {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.5em;
  margin: 2rem 0;
  opacity: 0.5;
}

/* ── FOOTER ── */
.footer {
  position: relative;
  text-align: center;
  padding: 3rem 20px 4rem;
  border-top: 1px solid var(--rim);
}
.footer__cube {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  opacity: 0.5;
  animation: cubeRotate 60s linear infinite;
}
.footer__text {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.footer__sub {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-lo);
}

/* ── SCROLL FADE-IN ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================================
   FORM, POPUP & CONTACT ADDITIONS
   ============================================================ */

/* ── POPUP BACKDROP ── */
#fp-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4,2,15,0.82);
  backdrop-filter: blur(6px);
  z-index: 900;
}
#fp-backdrop.show { display: block; }

/* ── POPUP CARD ── */
.fp-card {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 1000;
  width: min(420px, 94vw);
  background: var(--deep);
  border: 1px solid var(--gold-dim);
  padding: 2.2rem 2rem;
  box-shadow: 0 0 60px rgba(201,162,39,0.2), 0 30px 80px rgba(0,0,0,0.7);
  animation: cardIn 0.4s var(--ease-out);
}
.fp-card.show { display: block; }
@keyframes cardIn {
  from { opacity:0; transform: translate(-50%,-48%) scale(0.96); }
  to   { opacity:1; transform: translate(-50%,-50%) scale(1); }
}

.fp-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none;
  border: none;
  color: var(--text-lo);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.fp-close:hover { color: var(--gold); }

.fp-om {
  color: var(--gold);
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 0.6rem;
}
.fp-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-hi);
  text-align: center;
  margin-bottom: 0.4rem;
}
.fp-sub {
  font-style: italic;
  font-size: 0.82rem;
  color: var(--text-lo);
  text-align: center;
  margin-bottom: 1.4rem;
}
.fp-group {
  margin-bottom: 1rem;
}
.fp-group label {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.fp-group input {
  width: 100%;
  padding: 0.65em 0.9em;
  background: rgba(42,31,106,0.3);
  border: 1px solid var(--rim);
  color: var(--text-hi);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.25s;
}
.fp-group input:focus { border-color: var(--gold-dim); }
.fp-group input::placeholder { color: var(--text-lo); }

.fp-btn {
  width: 100%;
  padding: 0.8em;
  background: var(--gold-ghost);
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-family: var(--font-serif);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 0.3rem;
  transition: background 0.3s, box-shadow 0.3s;
}
.fp-btn:hover { background: rgba(201,162,39,0.2); box-shadow: var(--glow-gold); }
.fp-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.fp-or {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1rem 0;
}
.fp-or-line { flex: 1; height: 1px; background: var(--rim); }
.fp-or-txt { font-size: 0.72rem; color: var(--text-lo); letter-spacing: 0.1em; }

.fp-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.75em;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.35);
  color: #25d366;
  font-family: var(--font-serif);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s;
}
.fp-wa:hover { background: rgba(37,211,102,0.18); box-shadow: 0 0 20px rgba(37,211,102,0.25); }

.fp-success {
  display: none;
  text-align: center;
  padding: 2rem 0 1rem;
}
.fp-success.show { display: block; }
.fp-s-icon { color: var(--gold); font-size: 2rem; margin-bottom: 0.6rem; }
.fp-success h4 {
  font-family: var(--font-display);
  color: var(--text-hi);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.fp-success p { color: var(--text-mid); font-style: italic; }

/* ── FLOATING ACTION CLUSTER ── */
.float-cluster {
  position: fixed;
  bottom: 28px;
  right: 22px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.float-quickbook {
  background: var(--gold-ghost);
  border: 1px solid var(--gold-dim);
  color: var(--gold-bright);
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 0.6em 1.2em;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}
.float-quickbook:hover { background: rgba(201,162,39,0.2); box-shadow: var(--glow-gold); }

.wa-float {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }

/* ── JOIN / CONTACT SECTION ── */
.section--join { text-align: center; }
.section--join .section__title { margin-bottom: 0; }

.join__wrap {
  max-width: 620px;
  margin: 0 auto;
}
.join__form {
  text-align: left;
}
.join__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 560px) { .join__row { grid-template-columns: 1fr; } }

.join__group {
  margin-bottom: 1.2rem;
}
.join__group label {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.join__group input {
  width: 100%;
  padding: 0.75em 1em;
  background: rgba(26,18,69,0.5);
  border: 1px solid var(--rim);
  color: var(--text-hi);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.join__group input:focus { border-color: var(--gold-dim); box-shadow: 0 0 14px rgba(201,162,39,0.15); }
.join__group input::placeholder { color: var(--text-lo); }

.join__submit {
  width: 100%;
  padding: 0.9em;
  background: var(--gold-ghost);
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
  margin-bottom: 0.8rem;
}
.join__submit:hover { background: rgba(201,162,39,0.2); box-shadow: var(--glow-gold); }
.join__submit:disabled { opacity: 0.5; cursor: not-allowed; }

.join__note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-lo);
  font-style: italic;
  margin-bottom: 0;
}

.join__success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--gold-dim);
  background: var(--gold-ghost);
}
.join__success.show { display: block; }
.join__s-icon { color: var(--gold); font-size: 2.5rem; margin-bottom: 0.8rem; }
.join__success h3 {
  font-family: var(--font-display);
  color: var(--text-hi);
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}
.join__success p { color: var(--text-mid); font-style: italic; }

.join__or {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.8rem 0;
}
.join__or-line { flex: 1; height: 1px; background: var(--rim); }
.join__or-txt { font-size: 0.75rem; color: var(--text-lo); letter-spacing: 0.15em; }

.join__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  padding: 0.9em;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.3);
  color: #25d366;
  font-family: var(--font-serif);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s;
}
.join__wa:hover { background: rgba(37,211,102,0.15); box-shadow: 0 0 24px rgba(37,211,102,0.25); }

/* ── FOOTER CONTACT LINK ── */
.footer__contact {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-lo);
}
.footer__contact a {
  color: var(--gold-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__contact a:hover { color: var(--gold); }

/* ============================================================
   LOGO, MENTOR PHOTO & MEET THE GUIDE SECTION
   ============================================================ */

/* ── HERO LOGO (top-left) ── */
.hero__logo-link {
  position: absolute;
  top: 22px;
  left: 28px;
  z-index: 10;
  display: block;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.hero__logo-link:hover { transform: scale(1.06); opacity: 0.9; }
.hero__logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold-dim);
  box-shadow: 0 0 12px rgba(201,162,39,0.3);
}

/* ── HERO MENTOR PHOTO (above title) ── */
.hero__mentor-wrap {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__mentor-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--gold);
  animation: ringPulse 3.5s ease-in-out infinite;
}
.hero__mentor-ring--outer {
  inset: -12px;
  opacity: 0.3;
  animation-delay: 0s;
}
.hero__mentor-ring--inner {
  inset: -4px;
  opacity: 0.55;
  animation-delay: 0.8s;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1);    opacity: 0.3; }
  50%       { transform: scale(1.05); opacity: 0.7; }
}
.hero__mentor-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 2px solid var(--gold-dim);
  box-shadow: 0 0 28px rgba(201,162,39,0.4), 0 0 60px rgba(123,79,212,0.25);
  position: relative;
  z-index: 2;
}

/* ── POPUP LOGO ── */
.fp-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold-dim);
  box-shadow: 0 0 10px rgba(201,162,39,0.25);
  display: block;
  margin: 0 auto;
}
.fp-om { margin-bottom: 0.8rem; }

/* ── MEET THE GUIDE SECTION ── */
.section--mentor {
  background: linear-gradient(180deg, transparent, rgba(18,13,53,0.5) 20%, rgba(18,13,53,0.5) 80%, transparent);
}
.mentor__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 760px) {
  .mentor__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
}

/* Photo column */
.mentor__photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}
.mentor__photo-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.mentor__photo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gold);
  animation: ringPulse 4s ease-in-out infinite;
}
.mentor__photo-ring--1 {
  inset: -16px;
  opacity: 0.25;
  animation-delay: 0s;
}
.mentor__photo-ring--2 {
  inset: -6px;
  opacity: 0.45;
  animation-delay: 1s;
}
.mentor__photo {
  width: 210px;
  height: 260px;
  object-fit: cover;
  object-position: top center;
  border-radius: 50% 50% 40% 40%;
  border: 2px solid var(--gold-dim);
  box-shadow:
    0 0 30px rgba(201,162,39,0.35),
    0 0 70px rgba(123,79,212,0.2),
    0 20px 60px rgba(0,0,0,0.6);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 12px rgba(201,162,39,0.25));
}
.mentor__logo-wrap {
  display: flex;
  justify-content: center;
}
.mentor__logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold-dim);
  box-shadow: 0 0 14px rgba(201,162,39,0.3);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.mentor__logo:hover { transform: scale(1.06); box-shadow: var(--glow-gold); }

/* Text column */
.mentor__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 760px) { .mentor__tags { justify-content: center; } }
.mentor__tag {
  font-family: var(--font-serif);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 0.3em 0.8em;
  background: var(--gold-ghost);
}
.mentor__quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-mid);
  border-left: 2px solid var(--gold-dim);
  padding-left: 1.2rem;
  margin: 0;
}
@media (max-width: 760px) {
  .mentor__quote { border-left: none; padding-left: 0; border-top: 1px solid var(--rim); padding-top: 1rem; }
}
