*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0a0806;
  --bg2: #120e09;
  --bg3: #1a140d;
  --cream: #f3e6c8;
  --muted: #9b8868;
  --rose: #d4af6f;
  --rose-dim: #b8945a;
  --border: rgba(212,175,111,0.18);
  --on-gold: #1a1208;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: rgba(10,8,6,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.nav-book {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-gold);
  background: var(--rose);
  padding: 0.55rem 1.4rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-book:hover {
  background: transparent;
  color: var(--rose);
  box-shadow: inset 0 0 0 1px var(--rose);
}

/* ─── DIAMOND ACCENT ─── */
.diamond {
  color: var(--rose);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(212,175,111,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 20% 20%, rgba(232,201,137,0.12) 0%, transparent 60%),
    var(--bg);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--on-gold);
  background: var(--rose);
  padding: 1rem 2.5rem;
  border: 1px solid var(--rose);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.btn-primary:hover {
  background: transparent;
  border-color: var(--rose);
  color: var(--rose);
}

/* Floating sparkles */
.hero-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sp {
  position: absolute;
  color: var(--rose);
  animation: float 6s ease-in-out infinite;
  opacity: 0.4;
}

.sp1 { top: 20%; left: 10%; font-size: 1rem; animation-delay: 0s; }
.sp2 { top: 15%; right: 12%; font-size: 0.7rem; animation-delay: 1.5s; }
.sp3 { bottom: 30%; left: 8%; font-size: 0.6rem; animation-delay: 3s; }
.sp4 { bottom: 25%; right: 9%; font-size: 1.1rem; animation-delay: 4.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-10px); opacity: 0.7; }
}

/* ─── SECTION SHARED ─── */
section {
  padding: 6rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.section-sub {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── SERVICES ─── */
.services {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 860px;
  margin: 0 auto;
}

.service-col h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--rose-dim);
}

.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.price-list li:last-child {
  border-bottom: none;
}

.price-list li em {
  display: block;
  font-style: italic;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.price-list li span:last-child {
  white-space: nowrap;
  color: var(--rose);
  font-weight: 400;
  font-size: 0.85rem;
}

.book-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ─── POLICY ─── */
.policy {
  background: var(--bg);
}

.policy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--muted);
  border-radius: 50%;
  font-size: 0.9rem;
  color: var(--muted);
  font-family: 'Jost', sans-serif;
  vertical-align: middle;
  margin-left: 0.5rem;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.policy-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 2rem;
}

.policy-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  color: var(--cream);
}

.policy-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

.policy-card strong {
  color: var(--cream);
  font-weight: 500;
}

/* ─── FOOTER ─── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  transition: color 0.2s;
}

.footer-ig:hover {
  color: var(--rose);
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 640px) {
  nav {
    padding: 1rem 1.25rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .policy-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 4rem 1.25rem;
  }
}
