@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Raleway:wght@200;300;400;500&display=swap');

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

:root {
  --ink: #080706;
  --bone: #f2ece4;
  --cream: #e4dbd0;
  --gold: #b8966a;
  --gold-lt: #d4b48a;
  --gold-dim: rgba(184,150,106,0.15);
  --gold-line: rgba(184,150,106,0.18);
  --smoke: #161210;
  --char: #1e1a17;
  --ash: #6b6058;
  --mist: rgba(184,150,106,0.06);
}

html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--bone);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  line-height: 1.85;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 4rem;
  background: rgba(8,7,6,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 0.5px solid rgba(184,150,106,0.12);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 0.7rem 1.6rem;
  text-decoration: none;
  transition: background 0.3s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-lt); }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 0.5px;
  background: var(--gold);
  transition: all 0.3s;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  font-size: 0.67rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 1.1rem 3rem;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  font-size: 0.67rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 0.5px solid var(--gold);
  padding: 1.1rem 3rem;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  background: transparent;
}
.btn-outline:hover { background: var(--gold-dim); }

/* ── LAYOUT ── */
section { padding: 8rem 2rem; }
.container { max-width: 1120px; margin: 0 auto; }
.container-narrow { max-width: 760px; margin: 0 auto; }
.container-mid { max-width: 940px; margin: 0 auto; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }

/* ── TYPOGRAPHY ── */
.label {
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.4rem;
}
.h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(4rem, 9vw, 7.5rem);
  line-height: 1;
  color: var(--bone);
}
.h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
  color: var(--bone);
}
.h2-sm {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.12;
  color: var(--bone);
}
.h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.2;
  color: var(--bone);
}
em.gold { font-style: italic; color: var(--gold-lt); }
.rule { width: 48px; height: 0.5px; background: var(--gold); margin: 2rem 0; }
.rule.c { margin: 2rem auto; }
.body-lg { font-size: 1.05rem; color: var(--cream); line-height: 1.9; }
.body-sm { font-size: 0.9rem; color: var(--ash); line-height: 1.85; }
.body-lg + .body-lg,
.body-lg + .body-sm,
.body-sm + .body-sm { margin-top: 1.2rem; }

.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-lt);
  border-left: 1px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
  line-height: 1.6;
}

/* ── GOLD BAND ── */
.band {
  background: var(--gold);
  padding: 2rem 4rem;
  text-align: center;
}
.band p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--ink);
  letter-spacing: 0.04em;
}

/* ── PAGE HERO ── */
.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding: 12rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}
.page-hero-aura {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 40% 60%, rgba(140,106,74,0.08) 0%, transparent 70%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.page-hero-content { position: relative; z-index: 2; }

/* ── CARDS ── */
.cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 4rem;
}
.card {
  background: var(--smoke);
  padding: 3rem 2rem;
  position: relative;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.card-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  color: rgba(184,150,106,0.12);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold-lt);
  margin-bottom: 0.9rem;
  font-weight: 400;
}

/* ── PILLAR ITEMS ── */
.pillar-item {
  padding: 2.2rem 0;
  border-top: 0.5px solid var(--gold-line);
}
.pillar-item:last-child { border-bottom: 0.5px solid var(--gold-line); }
.pillar-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: rgba(184,150,106,0.18);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.pillar-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-lt);
  margin-bottom: 0.5rem;
}

/* ── OFFERING CARDS ── */
.offering {
  border: 0.5px solid var(--gold-line);
  padding: 4rem;
  margin-bottom: 2px;
  position: relative;
  transition: border-color 0.3s;
}
.offering:hover { border-color: rgba(184,150,106,0.5); }
.offering.featured {
  border-color: rgba(184,150,106,0.38);
  background: rgba(184,150,106,0.03);
}
.offer-tag {
  position: absolute;
  top: 2rem; right: 2.5rem;
  font-size: 0.57rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.offer-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.8rem;
  gap: 2rem;
}
.offer-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--bone);
  line-height: 1.15;
}
.offer-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 300;
  white-space: nowrap;
}
.offer-type {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ash);
  display: block;
  margin-bottom: 1rem;
}
.offer-body {
  font-size: 0.96rem;
  color: var(--cream);
  line-height: 1.95;
  max-width: 700px;
  margin-bottom: 2rem;
}
.offer-meta {
  display: flex;
  gap: 2.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ash);
  flex-wrap: wrap;
}
.offer-meta strong { color: var(--gold-lt); font-weight: 400; }

/* ── CREDENTIALS ── */
.creds { list-style: none; margin-top: 2rem; }
.creds li {
  font-size: 0.82rem;
  color: var(--ash);
  padding: 0.7rem 0 0.7rem 1.2rem;
  border-bottom: 0.5px solid rgba(184,150,106,0.1);
  position: relative;
  line-height: 1.55;
}
.creds li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 0.75rem;
}
.creds li em { color: var(--cream); font-style: normal; }

/* ── CTA SECTION ── */
.cta-section {
  text-align: center;
  padding: 10rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-section::before, .cta-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.cta-section::before { top: 0; }
.cta-section::after { bottom: 0; }
.cta-aura {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 65% at 50% 50%, rgba(140,106,74,0.08) 0%, transparent 70%);
}
.cta-section .h2 { position: relative; z-index: 2; max-width: 750px; margin: 0 auto 2.2rem; }
.cta-deck {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ash);
  max-width: 480px;
  margin: 0 auto 3.5rem;
  position: relative;
  z-index: 2;
}
.cta-btns { position: relative; z-index: 2; }

/* ── NEWSLETTER ── */
.nl-section {
  background: var(--smoke);
  padding: 5rem 2rem;
  text-align: center;
  border-top: 0.5px solid rgba(184,150,106,0.12);
}
.nl-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--bone);
  margin-bottom: 0.8rem;
}
.nl-section p { font-size: 0.85rem; color: var(--ash); margin-bottom: 2rem; }
.nl-link {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 0.5px solid var(--gold);
  padding-bottom: 0.2rem;
  text-decoration: none;
  transition: color 0.3s;
}
.nl-link:hover { color: var(--gold-lt); }

/* ── FOOTER ── */
footer {
  padding: 3rem 4rem;
  border-top: 0.5px solid rgba(184,150,106,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-decoration: none;
}
.footer-nav { display: flex; gap: 2rem; list-style: none; }
.footer-nav a {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-copy { font-size: 0.65rem; letter-spacing: 0.1em; color: rgba(107,96,88,0.6); }
.footer-tagline { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash); }

/* ── GHOST TEXT ── */
.ghost-word {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 12vw, 11rem);
  font-weight: 300;
  color: rgba(184,150,106,0.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.1em;
  user-select: none;
}

/* ── DARK SECTION ── */
.section-dark {
  background: var(--char);
  border-top: 0.5px solid rgba(184,150,106,0.12);
  border-bottom: 0.5px solid rgba(184,150,106,0.12);
}
.section-smoke {
  background: var(--smoke);
  border-top: 0.5px solid rgba(184,150,106,0.12);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 1.2rem 2rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(8,7,6,0.97);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 0.5px solid var(--gold-line);
  }
  .nav-links.open + .nav-cta { display: block; }
  .split { grid-template-columns: 1fr; gap: 3.5rem; }
  .cards3 { grid-template-columns: 1fr; }
  .offering { padding: 2.5rem 1.5rem; }
  .offer-head { flex-direction: column; gap: 0.4rem; }
  .band { padding: 2rem 1.5rem; }
  section { padding: 5rem 1.5rem; }
  footer { flex-direction: column; text-align: center; padding: 2.5rem 1.5rem; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
  .page-hero { padding: 10rem 1.5rem 4rem; }
}
@media (max-width: 600px) {
  .h1 { font-size: clamp(3rem, 14vw, 5rem); }
  .btn-gold, .btn-outline { padding: 1rem 2rem; }
  .offer-tag { position: static; display: block; margin-bottom: 1rem; }
}
