:root {
  --bg: #FAF6F1;
  --bg-warm: #F3EAE0;
  --bg-dark: #2C1810;
  --fg: #2C1810;
  --fg-light: #6B5744;
  --fg-muted: #9B8B7A;
  --accent: #C4713B;
  --accent-light: #D4915B;
  --gold: #B8860B;
  --terracotta: #C4713B;
  --sand: #E8D5C0;
  --olive: #6B7B3A;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(170deg, #2C1810 0%, #4A2E1F 40%, #6B4330 70%, #C4713B 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(rgba(255,255,255,0.02) 0% 25%, transparent 25% 50%) 0 0 / 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-tag {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.15;
  color: #FAF6F1;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(250, 246, 241, 0.7);
  max-width: 560px;
  margin: 0 auto;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 246, 241, 0.4);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(250, 246, 241, 0.4), transparent);
}

/* ===== SECTION LABEL ===== */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

/* ===== RITUAL ===== */
.ritual {
  padding: 8rem 2rem;
  background: var(--bg);
}

.ritual-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.ritual-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.ritual-text p {
  color: var(--fg-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

.ritual-steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.step {
  padding-left: 2rem;
  border-left: 2px solid var(--sand);
  transition: border-color 0.3s;
}

.step:hover {
  border-left-color: var(--accent);
}

.step-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0.3rem 0 0.5rem;
  color: var(--fg);
}

.step p {
  color: var(--fg-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

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

.products h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 4rem;
  color: var(--fg);
}

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

.product-card {
  background: var(--bg);
  padding: 3rem 2.5rem;
  text-align: left;
  border: 1px solid rgba(44, 24, 16, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(44, 24, 16, 0.08);
}

.product-icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--fg);
}

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

/* ===== ORIGIN ===== */
.origin {
  padding: 8rem 2rem;
  background: var(--bg);
}

.origin-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.origin-pattern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  aspect-ratio: 1;
}

.pattern-tile {
  background: var(--bg-warm);
  border: 1px solid var(--sand);
  position: relative;
  overflow: hidden;
}

.pattern-tile::after {
  content: '';
  position: absolute;
  inset: 15%;
  border: 1px solid var(--accent);
  opacity: 0.3;
  transform: rotate(45deg);
}

.pattern-tile:nth-child(2)::after { transform: rotate(0deg); border-radius: 50%; }
.pattern-tile:nth-child(3)::after { transform: rotate(22.5deg); }
.pattern-tile:nth-child(4)::after { transform: rotate(67.5deg); border-radius: 50%; }

.origin-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.origin-text p {
  color: var(--fg-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.origin-stats {
  display: flex;
  gap: 3rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== CLOSING ===== */
.closing {
  padding: 8rem 2rem;
  background: linear-gradient(170deg, #2C1810 0%, #4A2E1F 60%, #3D2415 100%);
  text-align: center;
}

.closing-content {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: #FAF6F1;
  margin-bottom: 1.5rem;
}

.closing p {
  color: rgba(250, 246, 241, 0.65);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.closing-signature {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--sand);
  margin-top: 2.5rem;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 2rem;
  background: #1A0E08;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--sand);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.footer-tagline {
  color: rgba(232, 213, 192, 0.5);
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.footer-location {
  color: rgba(232, 213, 192, 0.3);
  font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .ritual-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .origin-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .origin-visual {
    order: 2;
  }
  
  .origin-stats {
    gap: 2rem;
  }
  
  .hero {
    min-height: 90vh;
    padding: 4rem 1.5rem;
  }
  
  .ritual,
  .origin,
  .closing {
    padding: 5rem 1.5rem;
  }
  
  .products {
    padding: 4rem 1.5rem 5rem;
  }
  
  .product-card {
    padding: 2rem 1.5rem;
  }

  .stat-num {
    font-size: 1.5rem;
  }
}
/* ===== HERO CTA BUTTON ===== */
.hero-cta {
  margin-top: 2.5rem;
}

.hero-btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--accent);
  color: #FAF6F1;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.2s;
}

.hero-btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

/* ===== PRODUCT CARD LINK (landing) ===== */
.product-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card--link .product-card-cta {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  padding-top: 1rem;
  border-top: 1px solid var(--sand);
}
