/* ============ RESET & BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0a0c;
  --bg-alt: #101013;
  --bg-card: #141417;
  --border: rgba(255,255,255,0.08);
  --text: #f2f0eb;
  --text-muted: #a3a1a0;
  --gold: #c9a45c;
  --gold-light: #e0c288;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; line-height: 1.15; }
em { font-style: italic; color: var(--gold-light); }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.section { padding: 120px 0; }

.section-heading { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-heading .eyebrow { display: block; }
.section-heading h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 16px 34px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: #0a0a0c;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-full { width: 100%; border: none; }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,12,0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}
.logo span { color: var(--gold); font-style: italic; }

.logo-img { height: 34px; width: auto; object-fit: contain; }
.logo-img-footer { height: 30px; }
.logo-img[src=""], .logo-img:not([src]) { display: none; }

.main-nav { display: flex; gap: 36px; }
.main-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s;
}
.main-nav a:hover { color: var(--gold); }
.nav-quiz-link { color: var(--gold) !important; }

.header-actions { display: flex; align-items: center; gap: 20px; }

.lang-switch { position: relative; }

.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  padding: 6px 4px;
}
.lang-current:hover { color: var(--gold); }
.lang-current svg { transition: transform 0.2s; }
.lang-switch.open .lang-current svg { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 140px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.lang-menu li {
  list-style: none;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.lang-menu li:hover { background: rgba(255,255,255,0.05); color: var(--text); }
.lang-menu li.active { color: var(--gold); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span { width: 24px; height: 1px; background: var(--text); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(10,10,12,0.55) 0%, rgba(10,10,12,0.85) 70%, var(--bg) 100%),
    radial-gradient(circle at 30% 20%, #1c1c20 0%, #08080a 70%);
  padding-top: 84px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 60px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 780px;
  padding-top: 60px;
  padding-bottom: 100px;
}

.hero-content .eyebrow { justify-content: center; display: block; }

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  margin-bottom: 24px;
}

.hero-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-buttons { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.hero-quiz-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--gold-light);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}
.hero-quiz-link:hover { border-color: var(--gold-light); }

.stats-bar {
  position: relative;
  border-top: 1px solid var(--border);
  padding: 40px 0;
  background: rgba(255,255,255,0.02);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat { display: flex; flex-direction: column; gap: 6px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }

.stat-number { font-family: var(--font-serif); font-size: 1.9rem; color: var(--gold-light); }
.stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 24px; }
.about-text p { color: var(--text-muted); margin-bottom: 18px; }

.about-image .image-frame {
  aspect-ratio: 4/5;
  border-radius: 4px;
  background: linear-gradient(160deg, #1a1a1e, #0a0a0c 70%);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.about-image .image-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(201,164,92,0.15) 100%);
}

/* ============ SERVICES ============ */
.services { background: var(--bg-alt); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--bg-alt);
  padding: 48px 36px;
  transition: background 0.3s;
}
.service-card:hover { background: var(--bg-card); }

.card-icon { color: var(--gold); font-size: 1.1rem; margin-bottom: 20px; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 0.92rem; }

/* ============ WDW CLUB ============ */
.wdw-club {
  padding: 130px 0;
  text-align: center;
  background:
    linear-gradient(160deg, rgba(201,164,92,0.08), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.club-inner { max-width: 680px; margin: 0 auto; }
.wdw-club h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 22px; }
.club-text { color: var(--text-muted); margin-bottom: 34px; }
.club-note { color: var(--text-muted); font-size: 0.8rem; margin-top: 18px; }

/* ============ DIFFERENTIALS ============ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}

.diff-card { border-top: 1px solid var(--gold); padding-top: 22px; }
.diff-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.diff-card p { color: var(--text-muted); font-size: 0.92rem; }

/* ============ PHILOSOPHY ============ */
.philosophy { background: var(--bg-alt); }

.philosophy-list { max-width: 780px; margin: 0 auto; }

.philosophy-item {
  display: flex;
  gap: 32px;
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}
.philosophy-item:last-child { border-bottom: none; }

.ph-number {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  min-width: 50px;
}

.philosophy-item h3 { font-size: 1.15rem; margin-bottom: 8px; }
.philosophy-item p { color: var(--text-muted); font-size: 0.94rem; }

/* ============ CTA BANNER ============ */
.cta-banner {
  padding: 110px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg), #050506);
  border-top: 1px solid var(--border);
}
.cta-inner { max-width: 620px; margin: 0 auto; }
.cta-banner h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 18px; }
.cta-banner p { color: var(--text-muted); margin-bottom: 34px; }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 20px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 32px; }

.contact-details a {
  display: block;
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.contact-details p { color: var(--text-muted); font-size: 0.92rem; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 4px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.25s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold); }

.contact-form textarea { resize: vertical; }

.form-note { font-size: 0.82rem; color: var(--gold-light); min-height: 1.2em; }

/* ============ FOOTER ============ */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 80px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin: 16px 0 20px; max-width: 300px; }

.socials { display: flex; gap: 20px; }
.socials a { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.socials a:hover { color: var(--gold); }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col a { display: block; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 12px; transition: color 0.25s; }
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ============ REVEAL ANIMATION ============ */
.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) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .stat:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .section { padding: 80px 0; }
  .services-grid, .diff-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .philosophy-item { flex-direction: column; gap: 10px; }
  .header-actions .btn-gold { display: none; }
}
