:root {
  --bg-deep: #0c0a09;
  --bg-warm: #1a1512;
  --bg-card: #231e19;
  --fg: #e8e0d8;
  --fg-muted: #a89b8c;
  --fg-dim: #6b5f53;
  --accent: #c8956c;
  --accent-glow: #d4a574;
  --accent-soft: rgba(200, 149, 108, 0.12);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  background: radial-gradient(ellipse at 50% 80%, rgba(200,149,108,0.06) 0%, transparent 60%),
              var(--bg-deep);
}

.hero-wordmark {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 900px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 520px;
  margin-top: 2.5rem;
  line-height: 1.8;
}

.hero-location {
  margin-top: 3.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  opacity: 0.4;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: 10rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

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

.philosophy p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--fg);
}

.philosophy p + p {
  margin-top: 2rem;
  color: var(--fg-muted);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

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

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

.offerings-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 5rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.offerings-header h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
}

.offerings-header p {
  color: var(--fg-muted);
  max-width: 300px;
  font-size: 0.95rem;
}

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

.offering-card {
  background: var(--bg-card);
  border: 1px solid rgba(200,149,108,0.08);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: border-color 0.4s ease;
}

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

.offering-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 1.5rem;
}

.offering-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

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

/* ===== RHYTHM ===== */
.rhythm {
  padding: 10rem 2rem;
  text-align: center;
}

.rhythm-inner {
  max-width: 700px;
  margin: 0 auto;
}

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

.rhythm h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 3rem;
}

.rhythm-tiers {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.tier {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  padding: 2rem;
  border-top: 2px solid var(--fg-dim);
  text-align: left;
}

.tier.featured {
  border-top-color: var(--accent);
}

.tier-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.tier-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== CLOSING ===== */
.closing {
  padding: 8rem 2rem 6rem;
  text-align: center;
  background: radial-gradient(ellipse at 50% 20%, rgba(200,149,108,0.05) 0%, transparent 60%),
              var(--bg-deep);
}

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

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
}

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

.closing p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(200,149,108,0.08);
}

.footer-brand {
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.footer-line {
  font-size: 0.75rem;
  color: var(--fg-dim);
  margin-top: 0.75rem;
  opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .offerings-grid {
    grid-template-columns: 1fr;
  }
  .offerings-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .rhythm-tiers {
    flex-direction: column;
    align-items: center;
  }
  .tier {
    max-width: 100%;
    width: 100%;
  }
  .philosophy {
    padding: 6rem 1.5rem;
  }
  .rhythm {
    padding: 6rem 1.5rem;
  }
}