/* ══════════════════════════════════════════
   FACE READING LP — style.css
   OM Sri Divines · Dark Celestial Aesthetic
   ══════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --gold:        #d4af37;
  --gold-light:  #f0d060;
  --gold-dim:    #a07c20;
  --gold-faint:  rgba(212,175,55,0.12);
  --gold-border: rgba(212,175,55,0.25);
  --bg-deep:     #0a0806;
  --bg-mid:      #110e08;
  --bg-card:     #161008;
  --bg-card2:    #1c1508;
  --text-main:   #f2e8cc;
  --text-muted:  #a89060;
  --text-dim:    #6e5a35;
  --white:       #fff;
  --wa-green:    #25d366;
  --ff-display:  'Cinzel Decorative', serif;
  --ff-heading:  'Cinzel', serif;
  --ff-body:     'EB Garamond', Georgia, serif;
  --max-w:       1100px;
  --section-gap: 6rem;
  --radius:      12px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--ff-body);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; display: block; }

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

/* ── CONTAINER ── */
.container {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── SECTION COMMON ── */
.section-label {
  font-family: var(--ff-heading);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-sub {
  font-family: var(--ff-body);
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #c9a227, #e8c84a, #a07c20);
  color: #1a1000;
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn-primary:hover  { opacity: 0.88; transform: translateY(-1px); color: #1a1000; }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-family: var(--ff-heading);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 0.85rem 2rem;
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-ghost:hover { background: var(--gold-faint); color: var(--gold-light); }

.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--wa-green);
  color: white;
  font-family: var(--ff-heading);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-wa:hover { opacity: 0.88; color: white; }

.btn-wa-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--wa-green);
  color: white;
  font-family: var(--ff-heading);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  width: 100%;
  transition: opacity 0.2s;
}
.btn-wa-large:hover { opacity: 0.88; color: white; }

/* ── FLOATING CLUSTER ── */
.float-cluster {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.float-quickbook {
  background: linear-gradient(135deg, #c9a227, #e8c84a);
  color: #1a1000;
  font-family: var(--ff-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.55rem 1.1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-quickbook:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,175,55,0.5); }

.wa-float {
  width: 52px;
  height: 52px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.55); }

/* ── MODAL ── */
#modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 500;
  backdrop-filter: blur(4px);
}
#modal-backdrop.show { display: block; }

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  z-index: 600;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  width: min(520px, 94vw);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  overflow-y: auto;
  max-height: 90vh;
}
.modal.show {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.modal__close:hover { color: var(--gold-light); }

.modal__logo-wrap { text-align: center; margin-bottom: 1.2rem; }
.modal__logo {
  width: 60px; height: 60px;
  border-radius: 50%;
  margin: 0 auto;
  border: 1px solid var(--gold-border);
  object-fit: cover;
}

.modal__title {
  font-family: var(--ff-display);
  color: var(--gold-light);
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 0.4rem;
}

.modal__sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal__success { display: none; text-align: center; padding: 2rem 0; }
.modal__success.show { display: block; }
.modal__s-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 0.75rem; }
.modal__success h4 { font-family: var(--ff-display); color: var(--gold-light); margin-bottom: 0.5rem; }
.modal__success p  { color: var(--text-muted); }

/* ── FORM ELEMENTS ── */
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-family: var(--ff-heading);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.form-group input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  color: var(--text-main);
  font-family: var(--ff-body);
  font-size: 1rem;
  padding: 0.7rem 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus { border-color: var(--gold); }
.form-group input::placeholder { color: var(--text-dim); }

.form-or {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.2rem 0;
}
.form-or span:first-child,
.form-or span:last-child {
  flex: 1; height: 1px;
  background: var(--gold-border);
  display: block;
}
.form-or span:nth-child(2) {
  font-family: var(--ff-heading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

/* ── HERO ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.hero__halo {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__mandala {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border: 1px solid rgba(212,175,55,0.04);
  border-radius: 50%;
  pointer-events: none;
}
.hero__mandala::before, .hero__mandala::after {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.04);
}
.hero__mandala::after { inset: 80px; }

.hero__logo-link {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  z-index: 2;
}
.hero__logo {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  object-fit: cover;
}

.hero__badge {
  font-family: var(--ff-heading);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  background: var(--gold-faint);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  padding: 0.35rem 1.2rem;
  margin-bottom: 2rem;
  display: inline-block;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
  50%       { box-shadow: 0 0 18px 4px rgba(212,175,55,0.15); }
}

.hero__title {
  font-family: var(--ff-display);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero__title-eyebrow {
  display: block;
  font-size: clamp(0.75rem, 2vw, 1rem);
  color: var(--text-muted);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  font-family: var(--ff-heading);
  font-weight: 400;
}
.hero__title-main {
  display: block;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  color: var(--gold-light);
  text-shadow: 0 0 60px rgba(212,175,55,0.2);
}

.hero__desc {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-style: italic;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Hero face.png */
.hero__face-wrap {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(180px, 22vw, 300px);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}
.hero__face-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 0 30px rgba(212,175,55,0.2));
}

/* ── LEARN SECTION ── */
.learn {
  position: relative;
  z-index: 1;
  padding: var(--section-gap) 0;
}

.learn__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.learn-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.learn-card:hover { border-color: var(--gold-dim); transform: translateY(-4px); }

.learn-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(212,175,55,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.learn-card__num {
  font-family: var(--ff-heading);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}

.learn-card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.learn-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}

.learn-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── FACE MAP / FEATURE CARDS ── */
.map-section {
  position: relative;
  z-index: 1;
  padding: var(--section-gap) 0;
  background: linear-gradient(180deg, transparent 0%, rgba(212,175,55,0.025) 50%, transparent 100%);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(212,175,55,0.12);
}

.feature-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.feature-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: sepia(15%) saturate(90%);
}
.feature-card:hover .feature-card__img {
  transform: scale(1.06);
  filter: sepia(5%) saturate(105%);
}

.feature-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,8,6,0) 40%, rgba(10,8,6,0.65) 100%);
  pointer-events: none;
}

.feature-card__body {
  padding: 1.1rem 1.2rem 1.4rem;
  text-align: center;
}

.feature-card__num {
  display: block;
  font-family: var(--ff-heading);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
}

.feature-card__title {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.feature-card__reveals {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--gold-dim);
  margin-bottom: 0.2rem;
}

.feature-card__insight {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* ── HOST SECTION ── */
.host {
  position: relative;
  z-index: 1;
  padding: var(--section-gap) 0;
}

.host__wrap {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: center;
}

.host__photo-wrap {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 auto;
}

.host__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
}
.host__ring--outer { inset: -20px; }
.host__ring--inner { inset: -8px; }

.host__photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-dim);
  position: relative;
  z-index: 1;
}

.host__name {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.host__roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.host__roles span {
  font-family: var(--ff-heading);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  background: var(--gold-faint);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  padding: 0.25rem 0.75rem;
  text-transform: uppercase;
}

.host__brand {
  font-family: var(--ff-heading);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.host__quote {
  border-left: 2px solid var(--gold-dim);
  padding-left: 1.2rem;
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── COMMUNITY SECTION ── */
.community {
  position: relative;
  z-index: 1;
  padding: var(--section-gap) 0;
}

.community__pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.community-pillar {
  background: var(--bg-card2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.community-pillar:hover { border-color: var(--gold-dim); transform: translateY(-3px); }

.community-pillar__icon { font-size: 2.2rem; margin-bottom: 0.75rem; }

.community-pillar h4 {
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}

.community-pillar p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── REGISTER SECTION ── */
.register {
  position: relative;
  z-index: 1;
  padding: var(--section-gap) 0 calc(var(--section-gap) * 1.5);
  overflow: hidden;
}

.register__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.register__wrap { max-width: 560px; margin: 0 auto; }

.register__fields { display: flex; flex-direction: column; gap: 0.2rem; }

.register__success { display: none; text-align: center; padding: 3rem 0; }
.register__success.show { display: block; }
.register__s-icon { font-size: 3rem; color: var(--gold); margin-bottom: 1rem; }
.register__success h3 { font-family: var(--ff-display); color: var(--gold-light); margin-bottom: 0.5rem; }
.register__success p  { color: var(--text-muted); }

.register__contact {
  margin-top: 2rem;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.register__contact p {
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.register__contact a { color: var(--gold); }
.register__contact a:hover { color: var(--gold-light); }

/* ── FOOTER ── */
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid var(--gold-border);
  background: var(--bg-mid);
}

.footer__birds { font-size: 1.2rem; letter-spacing: 1rem; margin-bottom: 1rem; opacity: 0.5; }

.footer__text {
  font-family: var(--ff-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.footer__sub {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.footer__contact {
  font-family: var(--ff-heading);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .host__wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .host__photo-wrap { margin: 0 auto 2rem; }
  .host__roles { justify-content: center; }
  .host__quote { text-align: left; }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  :root { --section-gap: 4rem; }
  .hero { padding: 5rem 1.5rem 3rem; }
  .hero__face-wrap { display: none; }
  .hero__actions { flex-direction: column; align-items: center; }
  .container { padding: 0 1.25rem; }
  .register__contact { flex-direction: column; gap: 0.5rem; }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
