:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --fg: #e8e4df;
  --fg-muted: #9a9590;
  --fg-dim: #5a5550;
  --accent: #c4956a;
  --accent-glow: #d4a574;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  background: radial-gradient(ellipse at 50% 30%, rgba(196, 149, 106, 0.04) 0%, transparent 60%);
}

.hero-sigil {
  width: 120px;
  height: 120px;
  margin-bottom: 3rem;
  color: var(--accent);
  animation: slow-rotate 60s linear infinite;
}

@keyframes slow-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.alembic-mark { width: 100%; height: 100%; }

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.lede {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--accent);
  max-width: 600px;
  margin-bottom: 1.5rem;
}

.sub-lede {
  font-size: 0.95rem;
  color: var(--fg-muted);
  max-width: 550px;
  line-height: 1.8;
}

/* Philosophy */
.philosophy {
  padding: 8rem 2rem;
  background: var(--bg-elevated);
  border-top: 1px solid rgba(196, 149, 106, 0.1);
  border-bottom: 1px solid rgba(196, 149, 106, 0.1);
}

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

.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

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

.philosophy p {
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* Traditions */
.traditions {
  padding: 8rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.traditions h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 300;
  margin-bottom: 3rem;
  line-height: 1.3;
}

.tradition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.tradition-col h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
}

.tradition-col ul {
  list-style: none;
}

.tradition-col li {
  color: var(--fg-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.92rem;
}

.tradition-note {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-size: 1.1rem;
  text-align: center;
}

/* Approach */
.approach {
  padding: 8rem 2rem;
  background: var(--bg-elevated);
  border-top: 1px solid rgba(196, 149, 106, 0.1);
  border-bottom: 1px solid rgba(196, 149, 106, 0.1);
}

.approach .section-label,
.approach h2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.approach h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 300;
  margin-bottom: 3rem;
  line-height: 1.3;
}

.approach-cards {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.approach-card {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(196, 149, 106, 0.15);
  border-radius: 2px;
  background: rgba(196, 149, 106, 0.02);
}

.card-num {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

.approach-card h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

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

/* Closing */
.closing {
  padding: 8rem 2rem;
  text-align: center;
}

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

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.3;
}

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

.closing-emphasis {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--accent);
  margin-top: 2rem;
}

/* Footer */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(196, 149, 106, 0.1);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-name {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--fg);
}

.footer-status, .footer-location {
  font-size: 0.8rem;
  color: var(--fg-dim);
}

/* Mobile */
@media (max-width: 768px) {
  .tradition-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .approach-cards {
    grid-template-columns: 1fr;
  }
  
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .philosophy, .traditions, .approach, .closing {
    padding: 5rem 1.5rem;
  }
}