:root {
  --gold: #B8973A;
  --gold-light: #D4AF6A;
  --gold-pale: #F5EDD6;
  --black: #0A0A0A;
  --dark: #111111;
  --charcoal: #1C1C1C;
  --mid: #555555;
  --light: #AAAAAA;
  --cream: #FAF8F4;
}

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

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(184,151,58,0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  text-decoration: none;
}
.nav-links { display: flex; gap: 40px; }
.nav-links a {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 120px 40px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(184,151,58,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(184,151,58,0.04) 0%, transparent 50%),
    var(--black);
}
.hero-line {
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 0 auto 48px;
  animation: fadeDown 1.5s ease forwards;
  opacity: 0;
}
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fadeUp 1s ease 0.3s forwards;
  opacity: 0;
  position: relative; z-index: 1;
}
.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 9vw, 110px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0.05em;
  color: var(--cream);
  margin-bottom: 16px;
  animation: fadeUp 1s ease 0.5s forwards;
  opacity: 0;
  position: relative; z-index: 1;
}
.hero-name em { font-style: italic; color: var(--gold-light); }
.hero-title {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 56px;
  animation: fadeUp 1s ease 0.7s forwards;
  opacity: 0;
  position: relative; z-index: 1;
}
.hero-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  animation: fadeUp 1s ease 0.9s forwards;
  opacity: 0;
  position: relative; z-index: 1;
}
.hero-divider span { width: 60px; height: 1px; background: var(--gold); opacity: 0.5; }
.hero-divider p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--light);
  letter-spacing: 0.05em;
}
.hero-cta {
  animation: fadeUp 1s ease 1.1s forwards;
  opacity: 0;
  position: relative; z-index: 1;
}

/* ── BUTTON ── */
.btn-gold {
  display: inline-block;
  padding: 14px 48px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: -1;
}
.btn-gold:hover { color: var(--black); }
.btn-gold:hover::before { transform: translateX(0); }

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s ease 1.5s forwards;
  opacity: 0;
}
.scroll-indicator span {
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--mid);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ── SECTIONS ── */
section { position: relative; }
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 60px;
}
.section-label {
  font-size: 9px;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 48px;
}
.section-title em { font-style: italic; color: var(--gold-light); }

/* ── ABOUT ── */
.about { background: var(--dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--light);
  margin-bottom: 24px;
}
.about-text p strong { color: var(--cream); font-weight: 400; }
.about-right { display: flex; flex-direction: column; gap: 32px; }
.about-stat {
  border-left: 1px solid var(--gold);
  padding-left: 24px;
}
.about-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.about-stat .label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ── EXPERIENCE ── */
.experience { background: var(--black); }
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}
.exp-card {
  background: var(--charcoal);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}
.exp-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.exp-card:hover { background: #1A1A1A; }
.exp-card:hover::before { transform: scaleX(1); }
.exp-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 300;
  color: rgba(184,151,58,0.12);
  line-height: 1;
  margin-bottom: 16px;
}
.exp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}
.exp-desc { font-size: 13px; line-height: 1.8; color: var(--mid); }

/* ── SERVICES ── */
.services { background: var(--charcoal); }
.services-list { margin-top: 64px; }
.service-row {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}
.service-row:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.service-row:hover { padding-left: 12px; }
.service-tier {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 4px;
}
.service-detail { font-size: 12px; color: var(--mid); letter-spacing: 0.05em; }
.service-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  white-space: nowrap;
  text-align: right;
}
.services-note {
  margin-top: 32px;
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.8;
}

/* ── DISCRETION BANNER ── */
.discretion {
  background: var(--gold);
  padding: 60px;
  text-align: center;
}
.discretion p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 300;
  font-style: italic;
  color: var(--black);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── CONTACT ── */
.contact { background: var(--dark); }
.contact-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 120px 60px;
  text-align: center;
}
.contact-inner .section-title { margin-bottom: 20px; }
.contact-sub {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 56px;
}
.contact-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 64px;
}
.contact-line {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--light);
}
.contact-line::before, .contact-line::after {
  content: '';
  width: 30px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}
footer .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 0.2em;
}
footer .copy, footer .location {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--mid);
  text-transform: uppercase;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 24px 28px; }
  .nav-links { display: none; }
  .section-inner { padding: 80px 28px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .experience-grid { grid-template-columns: 1fr; gap: 2px; }
  .service-row { grid-template-columns: 1fr; gap: 8px; }
  .service-price { text-align: left; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
  .discretion { padding: 40px 28px; }
  .contact-inner { padding: 80px 28px; }
}
