/* ── VARIABLES ── */
:root {
  --dark:       #0F0F0F;
  --dark2:      #161616;
  --dark3:      #1E1E1E;
  --gold:       #C9A84C;
  --gold-light: #E8C87A;
  --gold-dim:   rgba(201,168,76,0.12);
  --text:       #F0EDE8;
  --muted:      #7A7268;
  --radius:     12px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
h1, h2, h3, .logo, .sec-label, .footer-logo, .hero-tagline, .testi-q {
  font-family: 'Playfair Display', serif;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease;
  display: none;
  mix-blend-mode: difference;
}
.cursor.big { width: 34px; height: 34px; opacity: 0.45; }
@media (pointer: fine) {
  .cursor { display: block; }
  body, a, button { cursor: none; }
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15,15,15,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}
.logo span { color: var(--gold); }

.lang-switch { display: flex; align-items: center; gap: 6px; }
.lang-sep { color: var(--muted); font-size: 14px; }
.lang-btn {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s;
}
.lang-btn.active { color: var(--gold); background: var(--gold-dim); }
.lang-btn:hover:not(.active) { color: var(--text); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
}

/* Glowing orbs */
.orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.orb { position: absolute; border-radius: 50%; filter: blur(100px); animation: orb-drift ease-in-out infinite alternate; }
.orb-1 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(201,168,76,0.32) 0%, transparent 70%);
  top: -200px; left: -180px;
  opacity: 0.7;
  animation-duration: 14s;
}
.orb-2 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(100,50,200,0.28) 0%, transparent 70%);
  bottom: -120px; right: -120px;
  opacity: 0.55;
  animation-duration: 18s;
  animation-delay: -7s;
}
.orb-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, transparent 70%);
  top: 45%; left: 42%;
  opacity: 0.4;
  animation-duration: 24s;
  animation-delay: -12s;
}
@keyframes orb-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(55px, 45px) scale(1.14); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 28px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero-text { display: flex; flex-direction: column; }
.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-name {
  font-size: clamp(50px, 7.5vw, 84px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.hero-tagline {
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 24px;
  min-height: 1.6em;
  letter-spacing: 0.01em;
}
.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Photo */
.hero-photo { position: relative; }
.photo-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.14) 0%, transparent 55%);
  z-index: 1;
  pointer-events: none;
}
.photo-frame::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(201,168,76,0.55), transparent 50%, rgba(100,50,200,0.3));
  z-index: -1;
}
.photo-frame img { width: 100%; display: block; border-radius: 20px; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s;
  border: none;
  letter-spacing: 0.02em;
  line-height: 1;
}
.btn-gold {
  background: var(--gold);
  color: #0F0F0F;
  box-shadow: 0 4px 22px rgba(201,168,76,0.38);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.55); }
.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.14);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }
.btn-ghost-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid rgba(201,168,76,0.38);
  display: block;
  text-align: center;
  width: 100%;
}
.btn-ghost-gold:hover { background: var(--gold-dim); border-color: var(--gold); }

/* ── SECTIONS ── */
.section { padding: 100px 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.sec-head { margin-bottom: 56px; }
.sec-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.sec-head h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
}
.sec-sub {
  margin-top: 14px;
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.8;
}

/* ── ABOUT ── */
.about-section { background: var(--dark2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text .sec-label { margin-bottom: 14px; }
.about-text h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 28px;
}
.about-text p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 16px; }
.about-stats {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.astat-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.astat-num span { font-size: 24px; }
.astat-lbl { font-size: 12px; color: var(--muted); line-height: 1.4; }
.about-img { position: relative; }
.about-img img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  filter: grayscale(15%);
}
.about-badge {
  position: absolute;
  bottom: 24px; left: -16px;
  background: var(--gold);
  color: #0F0F0F;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(201,168,76,0.45);
}

/* ── PROGRAMS ── */
.programs-section { background: var(--dark); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.prog-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.prog-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-7px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.prog-card.featured {
  border-color: rgba(201,168,76,0.45);
  background: linear-gradient(155deg, rgba(201,168,76,0.08) 0%, var(--dark2) 60%);
}
.prog-badge {
  position: absolute;
  top: -12px; left: 28px;
  background: var(--gold);
  color: #0F0F0F;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.prog-num {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  font-weight: 700;
  color: rgba(201,168,76,0.13);
  line-height: 1;
  margin-bottom: 6px;
}
.prog-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.prog-price {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}
.prog-price span { font-size: 14px; color: var(--muted); font-weight: 400; }
.prog-card > p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.prog-card ul { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.prog-card li { font-size: 14px; color: var(--muted); padding-left: 18px; position: relative; }
.prog-card li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-size: 12px; }

/* ── TESTIMONIALS ── */
.testi-section { background: var(--dark2); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s;
}
.testi-card:hover { border-color: rgba(201,168,76,0.22); transform: translateY(-4px); }
.testi-q {
  font-size: 72px;
  color: var(--gold);
  opacity: 0.25;
  line-height: 0.6;
  margin-bottom: 20px;
}
.testi-card > p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testi-name { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700; color: var(--text); }
.testi-role { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* ── FORM ── */
.booking-section { background: var(--dark); }
.form-box {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 48px;
  max-width: 680px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.field.full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  background: var(--dark3);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(201,168,76,0.5); }
.field select option { background: var(--dark3); }
.btn-submit { width: 100%; padding: 16px; font-size: 16px; letter-spacing: 0.04em; }
.form-ok {
  display: none;
  margin-top: 16px;
  padding: 16px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-align: center;
}
.form-ok.show { display: block; }

/* ── FOOTER ── */
.footer { background: var(--dark2); border-top: 1px solid rgba(255,255,255,0.05); padding: 44px 0; }
.footer-in { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-size: 18px; font-weight: 700; color: var(--text); }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 14px; font-style: italic; color: var(--muted); }
.footer-cr { font-size: 12px; color: rgba(255,255,255,0.22); }

/* ── WIDGET ── */
.widget { position: fixed; bottom: 24px; right: 24px; z-index: 1000; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.w-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  font-size: 22px;
  color: #0F0F0F;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 22px rgba(201,168,76,0.5);
  transition: transform 0.3s;
  animation: w-pulse 3s ease-in-out infinite;
}
@keyframes w-pulse {
  0%, 100% { box-shadow: 0 4px 22px rgba(201,168,76,0.5); }
  50%       { box-shadow: 0 4px 40px rgba(201,168,76,0.85); }
}
.w-btn:hover { transform: scale(1.1); }
.w-panel {
  width: 330px;
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  box-shadow: 0 14px 56px rgba(0,0,0,0.55);
  display: none;
  flex-direction: column;
  overflow: hidden;
  max-height: 480px;
}
.w-panel.open { display: flex; }
.w-head {
  background: linear-gradient(135deg, rgba(201,168,76,0.18), rgba(201,168,76,0.04));
  border-bottom: 1px solid rgba(201,168,76,0.14);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
}
.w-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: #0F0F0F;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 800;
  flex-shrink: 0;
}
.w-info { flex: 1; min-width: 0; }
.w-name { font-size: 14px; font-weight: 600; color: var(--text); }
.w-status { font-size: 11px; color: var(--muted); }
.w-close { background: none; border: none; color: var(--muted); font-size: 16px; padding: 4px; transition: color 0.2s; }
.w-close:hover { color: var(--text); }
.w-msgs { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px; min-height: 180px; }
.w-msg { max-width: 86%; padding: 10px 14px; border-radius: 12px; font-size: 14px; line-height: 1.55; }
.w-msg.bot { background: var(--dark3); color: var(--text); border: 1px solid rgba(255,255,255,0.06); align-self: flex-start; border-radius: 4px 12px 12px 12px; }
.w-msg.user { background: var(--gold); color: #0F0F0F; align-self: flex-end; border-radius: 12px 4px 12px 12px; font-weight: 500; }
.w-msg.typing { font-style: italic; color: var(--muted); font-size: 13px; }
.w-bottom { padding: 10px 12px; display: flex; gap: 8px; border-top: 1px solid rgba(255,255,255,0.06); }
.w-input { flex: 1; padding: 10px 14px; border: 1px solid rgba(255,255,255,0.09); border-radius: 8px; background: var(--dark3); font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text); outline: none; transition: border-color 0.2s; }
.w-input:focus { border-color: rgba(201,168,76,0.4); }
.w-send { width: 40px; height: 40px; border-radius: 8px; background: var(--gold); border: none; color: #0F0F0F; font-size: 18px; font-weight: 700; transition: background 0.2s; flex-shrink: 0; }
.w-send:hover { background: var(--gold-light); }
.w-note { text-align: center; font-size: 11px; color: var(--muted); padding: 6px 12px 8px; }

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

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-photo { max-width: 420px; order: -1; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { left: 0; }
  .programs-grid { grid-template-columns: 1fr; max-width: 440px; }
  .testi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .form-box { padding: 28px 20px; }
  .about-stats { gap: 20px; flex-wrap: wrap; }
  .footer-in { flex-direction: column; align-items: flex-start; }
  .w-panel { width: calc(100vw - 48px); }
}
@media (max-width: 600px) {
  .hero-btns { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  .orb { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .w-btn { animation: none; }
}
