:root {
  --black: #0a0a0a;
  --black-light: #141414;
  --gold: #d4af37;
  --gold-light: #e8c547;
  --platinum: #a8a8a8;
  --white: #f5f5f0;
  --gray: #888;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans SC', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  min-height: 100vh;
}

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  border-bottom: 1px solid rgba(212,175,55,0.12);
  background: rgba(10,10,10,0.85); backdrop-filter: blur(16px);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo {
  text-decoration: none; color: var(--white); font-weight: 300; font-size: 1.1rem; letter-spacing: 0.05em;
}
.logo span { font-weight: 600; }
.logo em { font-style: normal; color: var(--gold); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { color: var(--platinum); text-decoration: none; font-size: 0.85rem; letter-spacing: 0.03em; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  padding: 8px 20px !important; border: 1px solid var(--gold) !important;
  color: var(--gold) !important; border-radius: 4px;
}
.nav-cta:hover { background: var(--gold); color: var(--black) !important; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; font-size: 0.9rem; font-weight: 500; letter-spacing: 0.05em;
  text-decoration: none; border: none; cursor: pointer; transition: all 0.3s;
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 0 40px rgba(212,175,55,0.25); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid rgba(212,175,55,0.4); }
.btn-outline:hover { border-color: var(--gold); background: rgba(212,175,55,0.08); }
.btn-full { width: 100%; }

.hero {
  min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  align-items: center; text-align: center; padding: 120px 24px 80px; position: relative;
}
.hero-eyebrow {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 600; line-height: 1.15;
  margin-bottom: 28px; letter-spacing: -0.02em;
}
.hero-sub { color: var(--platinum); font-size: 1rem; font-weight: 300; line-height: 1.8; margin-bottom: 48px; }
.hero-line {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 80px; background: linear-gradient(to bottom, var(--gold), transparent);
}

.section { padding: 100px 0; }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.label { display: block; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 600;
}

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: rgba(212,175,55,0.1); }
.service-card {
  background: var(--black); padding: 48px 36px; transition: background 0.3s;
}
.service-card:hover { background: var(--black-light); }
.service-icon { color: var(--gold); font-size: 1.2rem; margin-bottom: 20px; }
.service-card h3 { font-size: 1.15rem; font-weight: 500; margin-bottom: 12px; letter-spacing: 0.02em; }
.service-card p { font-size: 0.9rem; color: var(--gray); font-weight: 300; line-height: 1.8; }

.tiers-section { background: var(--black-light); }
.tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.tier-card {
  position: relative; padding: 40px 32px; border: 1px solid rgba(255,255,255,0.08);
  text-align: center; transition: border-color 0.3s;
}
.tier-card:hover { border-color: rgba(212,175,55,0.3); }
.tier-featured { border-color: var(--gold); background: rgba(212,175,55,0.04); }
.tier-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--black); font-size: 0.7rem; font-weight: 600;
  padding: 4px 16px; letter-spacing: 0.1em;
}
.tier-card h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin-bottom: 16px;
}
.tier-price { font-size: 2rem; color: var(--gold); margin-bottom: 28px; }
.tier-price span { font-size: 0.85rem; color: var(--gray); font-weight: 300; }
.tier-card ul { list-style: none; text-align: left; margin-bottom: 32px; }
.tier-card li {
  padding: 10px 0; font-size: 0.88rem; color: var(--platinum); font-weight: 300;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.tier-card li::before { content: '—'; color: var(--gold); margin-right: 10px; }
.tier-terms {
  margin-top: 32px;
  padding: 20px 24px;
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.tier-terms a { color: var(--gold); text-decoration: underline; }

.process-steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; }
.step { flex: 1; text-align: center; max-width: 200px; }
.step span { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--gold); opacity: 0.5; margin-bottom: 12px; }
.step h4 { font-size: 0.95rem; font-weight: 500; margin-bottom: 6px; }
.step p { font-size: 0.8rem; color: var(--gray); font-weight: 300; }
.step-line { width: 60px; height: 1px; background: rgba(212,175,55,0.2); margin-top: 28px; flex-shrink: 0; }

.apply-section { border-top: 1px solid rgba(212,175,55,0.12); }
.apply-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.apply-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; margin-bottom: 16px; }
.apply-text p { color: var(--gray); font-weight: 300; }
.apply-form { display: flex; flex-direction: column; gap: 14px; }
.apply-form input, .apply-form select, .apply-form textarea {
  background: var(--black-light); border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); padding: 14px 16px; font-family: inherit; font-size: 0.9rem;
  transition: border-color 0.2s;
}
.apply-form input:focus, .apply-form select:focus, .apply-form textarea:focus {
  outline: none; border-color: var(--gold);
}
.apply-form select option { background: var(--black); }

.footer { padding: 48px 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--gold); margin-bottom: 8px; }
.footer p { font-size: 0.8rem; color: var(--gray); font-weight: 300; }
.footer a { color: var(--platinum); text-decoration: none; }
.footer a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .header .nav { position: relative; }
  .services-grid, .tiers-grid, .apply-inner { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: center; gap: 24px; }
  .step-line { width: 1px; height: 40px; margin: 0; }
}
