/* --- Base --- */
:root {
  --bg: #faf8f3;
  --fg: #1a1a1a;
  --accent: #1a3d2e;
  --accent-warm: #c8874a;
  --accent-warm-light: #e8c49a;
  --muted: #8a7e6e;
  --surface: #f0ebe0;
  --border: #e2d9c8;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
}

/* --- Navigation --- */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* --- Hero --- */
.hero {
  padding: 80px 40px 100px;
  overflow: hidden;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-warm);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 28px;
  line-height: 1.05;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent-warm);
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-pillars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--accent);
  font-weight: 400;
}
.pillar::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent-warm);
  flex-shrink: 0;
}

/* Hero visual — botanical rings */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
}
.botanical-ring {
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--accent-warm-light);
}
.ring-1 { width: 420px; height: 420px; opacity: 0.35; }
.ring-2 { width: 320px; height: 320px; opacity: 0.25; border-style: dashed; }
.ring-3 { width: 220px; height: 220px; opacity: 0.18; }

.leaf-cluster {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: slow-spin 30s linear infinite;
}
@keyframes slow-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.leaf {
  position: absolute;
  width: 14px;
  height: 40px;
  background: var(--accent);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0.6;
}
.leaf-1 { top: 0; left: 50%; transform: translateX(-50%) rotate(0deg); }
.leaf-2 { top: 12%; right: 12%; transform: rotate(60deg); }
.leaf-3 { bottom: 12%; right: 12%; transform: rotate(120deg); }
.leaf-4 { bottom: 0; left: 50%; transform: translateX(-50%) rotate(180deg); }
.leaf-5 { bottom: 12%; left: 12%; transform: rotate(240deg); }
.leaf-6 { top: 12%; left: 12%; transform: rotate(300deg); }

.cup-silhouette {
  width: 80px;
  height: 100px;
  background: var(--accent-warm);
  border-radius: 8px 8px 40px 40px;
  position: relative;
  z-index: 2;
  opacity: 0.85;
}
.cup-silhouette::after {
  content: '';
  position: absolute;
  right: -22px;
  top: 22px;
  width: 18px;
  height: 30px;
  border: 3px solid var(--accent-warm);
  border-left: none;
  border-radius: 0 20px 20px 0;
}

/* --- Philosophy --- */
.philosophy {
  background: var(--accent);
  padding: 100px 40px;
}
.philosophy-inner {
  max-width: 760px;
  margin: 0 auto;
}
.philosophy-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-warm-light);
  font-weight: 500;
  margin-bottom: 28px;
}
.philosophy-headline {
  font-size: clamp(32px, 4vw, 52px);
  color: #faf8f3;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.2;
}
.philosophy-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.philosophy-body p {
  font-size: 17px;
  color: rgba(250,248,243,0.72);
  line-height: 1.8;
}

/* --- Ritual --- */
.ritual {
  padding: 100px 40px;
  background: var(--bg);
}
.ritual-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}
.ritual-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-warm);
  font-weight: 500;
  margin-bottom: 16px;
}
.ritual-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--accent);
  font-weight: 300;
}
.ritual-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.ritual-step {
  padding: 0 32px;
}
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: var(--accent-warm-light);
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1;
}
.step-title {
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 400;
}
.step-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}
.ritual-divider {
  width: 1px;
  height: 120px;
  background: var(--border);
  margin-top: 20px;
}

/* --- Ingredients --- */
.ingredients {
  padding: 100px 40px;
  background: var(--surface);
}
.ingredients-inner { max-width: 1200px; margin: 0 auto; }
.ingredients-header { margin-bottom: 56px; }
.ingredients-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-warm);
  font-weight: 500;
  margin-bottom: 14px;
}
.ingredients-headline {
  font-size: clamp(26px, 3vw, 38px);
  color: var(--accent);
  font-weight: 300;
  max-width: 540px;
  line-height: 1.25;
}
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
}
.ingredient-card {
  background: var(--surface);
  padding: 48px 40px;
  transition: background 0.2s;
}
.ingredient-card:hover { background: var(--bg); }
.ingredient-icon { margin-bottom: 20px; }
.ingredient-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 500;
}
.ingredient-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* --- Closing --- */
.closing {
  padding: 120px 40px;
  background: var(--accent);
  text-align: center;
}
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing-ornament { margin-bottom: 40px; }
.closing-headline {
  font-size: clamp(40px, 5vw, 64px);
  color: #faf8f3;
  font-weight: 300;
  margin-bottom: 24px;
  font-style: italic;
}
.closing-body {
  font-size: 17px;
  color: rgba(250,248,243,0.65);
  line-height: 1.8;
}

/* --- Footer --- */
.footer {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-sep { color: var(--border); }
.footer-copy { font-size: 12px; color: var(--border); }

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 60px 24px 80px; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 300px; }
  .botanical-ring { width: 280px; height: 280px; }
  .ring-1 { width: 280px; height: 280px; }
  .ring-2 { width: 200px; height: 200px; }
  .ring-3 { width: 130px; height: 130px; }
  .philosophy { padding: 72px 24px; }
  .ritual { padding: 72px 24px; }
  .ritual-steps { grid-template-columns: 1fr; gap: 40px; }
  .ritual-divider { display: none; }
  .ritual-step { padding: 0; }
  .ingredients { padding: 72px 24px; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px; }
  .footer { padding: 40px 24px; }
}