:root {
  --bg-deep: #1a1410;
  --bg-warm: #231c15;
  --bg-card: #2a2119;
  --fg-primary: #f5ede4;
  --fg-secondary: #c4b5a3;
  --fg-muted: #8a7d6f;
  --accent-gold: #c9a96e;
  --accent-copper: #b87333;
  --accent-sage: #7a8b6f;
  --accent-cream: #e8dcc8;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  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 30% 20%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(184, 115, 51, 0.06) 0%, transparent 50%),
              var(--bg-deep);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent,
    transparent 120px,
    rgba(201, 169, 110, 0.03) 120px,
    rgba(201, 169, 110, 0.03) 121px
  );
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.1;
  color: var(--fg-primary);
  max-width: 800px;
  position: relative;
  z-index: 1;
}

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

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--fg-secondary);
  max-width: 540px;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.hero-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--accent-gold), transparent);
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

/* ── Philosophy ── */
.philosophy {
  padding: 6rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2rem 3rem;
  align-items: start;
}

.philosophy-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold);
  padding-top: 0.4rem;
  border-top: 1px solid rgba(201, 169, 110, 0.3);
}

.philosophy-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--fg-primary);
}

.philosophy-text strong {
  color: var(--accent-gold);
  font-weight: 600;
}

/* ── Features ── */
.features {
  padding: 5rem 2rem 6rem;
  background: var(--bg-warm);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--accent-gold);
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--fg-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  padding: 2.5rem 2rem;
  position: relative;
}

.feature-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 169, 110, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-cream);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  line-height: 1.7;
}

/* ── Ritual ── */
.ritual {
  padding: 6rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ritual-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-style: italic;
  color: var(--fg-primary);
  line-height: 1.5;
  position: relative;
  padding: 0 1rem;
}

.ritual-quote::before {
  content: '\201C';
  font-size: 5rem;
  color: rgba(201, 169, 110, 0.2);
  position: absolute;
  top: -2rem;
  left: -1rem;
  font-family: var(--font-display);
  line-height: 1;
}

.ritual-attr {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ritual-divider {
  width: 40px;
  height: 1px;
  background: var(--accent-copper);
  margin: 3rem auto;
}

.ritual-detail {
  font-size: 1rem;
  color: var(--fg-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Closing ── */
.closing {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(42, 33, 25, 0.6) 100%);
  text-align: center;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  color: var(--fg-primary);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.2;
}

.closing p {
  font-size: 1.05rem;
  color: var(--fg-secondary);
  max-width: 550px;
  margin: 0 auto;
}

/* ── Footer ── */
.footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.footer p {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 1rem 0;
  }

  .philosophy-label {
    border-top: none;
    padding-top: 0;
    margin-top: 1.5rem;
  }

  .philosophy-label:first-child {
    margin-top: 0;
  }

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

  .hero {
    min-height: 90vh;
    padding: 4rem 1.5rem;
  }

  .ritual-quote::before {
    left: 0;
    top: -1.5rem;
    font-size: 3.5rem;
  }
}

/* ── Command Center CTA (landing page hero) ── */
.hero-cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.6rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent-gold);
  border: 1px solid rgba(201, 169, 110, 0.35);
  position: relative;
  z-index: 1;
  transition: all 0.2s;
}

.hero-cta:hover {
  background: rgba(201, 169, 110, 0.08);
  border-color: var(--accent-gold);
  color: var(--accent-cream);
}