:root {
  --bg: #1a1412;
  --bg-warm: #211916;
  --fg: #f4ede6;
  --fg-muted: #b8a99a;
  --accent: #d4956a;
  --accent-soft: #c4785a;
  --gold: #c9a96e;
  --rose: #b87d7d;
  --divider: rgba(244, 237, 230, 0.08);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 4rem 2rem;
  background: radial-gradient(ellipse at 30% 50%, rgba(212, 149, 106, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(184, 125, 125, 0.04) 0%, transparent 50%),
              var(--bg);
}

.hero-inner {
  text-align: center;
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

/* ===== HERO CTA ===== */
.hero-cta {
  margin-top: 0;
}

.btn-hero {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 1px;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn-hero:hover {
  background: var(--accent);
  color: var(--bg);
}

.hero-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 149, 106, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: 8rem 2rem;
  border-top: 1px solid var(--divider);
}

.philosophy-inner {
  max-width: 720px;
  margin: 0 auto;
}

.philosophy-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
}

.philosophy-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.25;
  color: var(--fg);
  margin-bottom: 2rem;
}

.philosophy-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 1.2rem;
  max-width: 600px;
}

/* ===== OFFERINGS ===== */
.offerings {
  padding: 8rem 2rem;
  background: var(--bg-warm);
}

.offerings-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.offerings-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.offering-card {
  padding: 2.5rem;
  border: 1px solid var(--divider);
  border-radius: 2px;
  transition: border-color 0.3s ease;
}

.offering-card:hover {
  border-color: rgba(212, 149, 106, 0.25);
}

.offering-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--accent-soft);
  display: block;
  margin-bottom: 1rem;
}

.offering-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--fg);
  margin-bottom: 0.8rem;
}

.offering-card p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ===== MUSE HOUSE ===== */
.muse-house {
  padding: 8rem 2rem;
  border-top: 1px solid var(--divider);
}

.muse-house-inner {
  max-width: 900px;
  margin: 0 auto;
}

.muse-quote {
  margin-bottom: 4rem;
  padding-left: 2rem;
  border-left: 2px solid var(--accent-soft);
}

.muse-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 0.8rem;
}

.muse-attribution {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
}

.muse-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.muse-detail h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.muse-detail p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ===== CLOSING ===== */
.closing {
  padding: 8rem 2rem;
  background: var(--bg-warm);
  text-align: center;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.25;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}

.closing-body em {
  color: var(--accent);
  font-style: italic;
}

.closing-cta {
  margin-top: 2.5rem;
}

.btn-closing {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  background: var(--accent);
  color: var(--bg);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 1px;
  transition: background 0.25s ease;
}

.btn-closing:hover {
  background: var(--accent-soft);
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 4rem 2rem;
  border-top: 1px solid var(--divider);
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--fg);
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.footer-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .offerings-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: 80vh;
  }

  .philosophy,
  .offerings,
  .muse-house,
  .closing {
    padding: 5rem 1.5rem;
  }
}