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

:root {
  --gold: #C9A84C;
  --gold-light: #e2c270;
  --gold-dim: rgba(201,168,76,0.15);
  --bg: #0a0a0f;
  --bg2: #0f0f18;
  --bg3: #13131e;
  --text: #f0ede8;
  --muted: #8a8898;
  --border: rgba(201,168,76,0.2);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color 0.2s; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
  padding: 0 2rem;
}
.nav.scrolled {
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
}
.logo-text { color: var(--text); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 0.45rem 1.2rem;
  font-size: 0.75rem !important;
  letter-spacing: 0.12em;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: #0a0a0f !important;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 0;
  background: rgba(10,10,15,0.98);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.3rem 0;
}
.mobile-menu a:hover { color: var(--text); }
.nav-cta-mobile {
  color: var(--gold) !important;
  font-weight: 600;
}

/* === BUTTONS === */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #0a0a0f;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  transition: background 0.2s, transform 0.2s;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  color: #0a0a0f;
}
.btn-ghost {
  display: inline-block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: 1px solid rgba(255,255,255,0.15);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.4);
}
.btn-full { width: 100%; text-align: center; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(30,20,80,0.4) 0%, transparent 60%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 60px,
    rgba(201,168,76,0.02) 60px,
    rgba(201,168,76,0.02) 61px
  ),
  repeating-linear-gradient(
    90deg,
    transparent,
    transparent 60px,
    rgba(201,168,76,0.02) 60px,
    rgba(201,168,76,0.02) 61px
  );
}
.hero-content { position: relative; z-index: 1; max-width: 900px; }
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-badge {
  position: relative;
  z-index: 1;
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.5rem 1.2rem;
}
.hero-badge .dot { color: var(--gold); }
.hero-br { display: none; }

/* === STATS BAR === */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 3rem;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat-divider {
  width: 1px;
  height: 3rem;
  background: var(--border);
}

/* === SECTION COMMON === */
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 3.5rem;
}

/* === SERVICES === */
.services {
  padding: 7rem 0;
  background: var(--bg);
}
.services .container { text-align: center; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  text-align: left;
  position: relative;
  transition: background 0.3s;
}
.service-card:hover { background: var(--bg3); }
.service-icon {
  width: 44px; height: 44px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.service-icon svg { width: 100%; height: 100%; }
.service-num {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.6;
  display: block;
  margin-bottom: 0.5rem;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
}

/* === HOW IT WORKS === */
.how-it-works {
  padding: 7rem 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}
.step {
  position: relative;
  text-align: center;
  padding: 2rem;
}
.step-number {
  width: 60px; height: 60px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.step h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
}
.step-connector {
  position: absolute;
  top: 2rem;
  right: calc(-1rem - 0.5px);
  width: 2rem;
  height: 1px;
  background: var(--border);
}

/* === ABOUT === */
.about {
  padding: 7rem 0;
  background: var(--bg);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.9;
  margin-top: 1rem;
}
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pillar {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--bg2);
  transition: border-color 0.2s;
}
.pillar:hover { border-color: var(--gold); }
.pillar-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-top: 0.1rem;
}
.pillar h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}
.pillar p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* === CTA / BOOKING === */
.cta-section {
  padding: 7rem 0;
  position: relative;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 680px; }
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.cta-sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.booking-form input::placeholder,
.booking-form textarea::placeholder { color: var(--muted); }
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus { border-color: var(--gold); }
.booking-form select option { background: var(--bg); color: var(--text); }
.booking-form textarea { resize: vertical; }
.cta-note {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.cta-note a { color: var(--gold); }
.cta-note a:hover { color: var(--gold-light); }

/* === FOOTER === */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 5rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 260px;
  margin-top: 0.75rem;
}
.footer-links h4,
.footer-contact h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.82rem;
  color: var(--muted);
}
.footer-links a:hover { color: var(--text); }
.footer-contact p {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.footer-contact a { color: var(--muted); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .mobile-menu { display: none; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stat-divider { display: none; }
  .stat { padding: 1rem 1.5rem; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 2.5rem; }
  .hero-br { display: inline; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-badge { flex-direction: column; gap: 0.25rem; text-align: center; }
  .hero-badge .dot { display: none; }
}
