/* --- Variables --- */
:root {
  --bg: #F5F0E8;
  --bg-alt: #EDE8DC;
  --fg: #1A1A18;
  --fg-muted: #5C5749;
  --accent: #C9A84C;
  --accent-dark: #A88B35;
  --green: #1B3D2F;
  --green-light: #2D5A42;
  --green-pale: #E8EDE5;
  --white: #FFFFFF;
  --border: rgba(27, 61, 47, 0.12);
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(245, 240, 232, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.01em;
}

.navbar-tagline {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  padding: 8px 20px;
  border: 1.5px solid var(--green);
  border-radius: 4px;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}

.navbar-cta:hover {
  background: var(--green);
  color: var(--bg);
}

@media (max-width: 480px) {
  .navbar-cta {
    font-size: 0.75rem;
    padding: 7px 14px;
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-bg-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.hero-bg-orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(27,61,47,0.06) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
}

.hero-leaves {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  overflow: hidden;
}

.leaf {
  position: absolute;
  transform-origin: bottom center;
}

.leaf-1 {
  width: 120px;
  top: 5%;
  right: 5%;
  transform: rotate(15deg);
  animation: leaf-sway 8s ease-in-out infinite alternate;
}

.leaf-2 {
  width: 90px;
  top: 25%;
  right: 20%;
  transform: rotate(-10deg);
  animation: leaf-sway 6s ease-in-out infinite alternate-reverse;
}

.leaf-3 {
  width: 70px;
  bottom: 20%;
  right: 8%;
  transform: rotate(25deg);
  animation: leaf-sway 10s ease-in-out infinite alternate;
}

@keyframes leaf-sway {
  from { transform: rotate(var(--leaf-base, 15deg)); }
  to { transform: rotate(calc(var(--leaf-base, 15deg) + 6deg)); }
}

.leaf-1 { --leaf-base: 15deg; }
.leaf-2 { --leaf-base: -10deg; }
.leaf-3 { --leaf-base: 25deg; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-kicker {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-kicker::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-headline em {
  font-style: italic;
  color: var(--green);
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-offerings {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-bottom: 48px;
}

.hero-offering {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
}

.hero-offering-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-prices {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.hero-price-from {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-price-amount {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--green);
}

.hero-price-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-price-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* --- Philosophy --- */
.philosophy {
  background: var(--green);
  padding: 100px 48px;
  color: #F5F0E8;
}

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

.philosophy-ornament {
  margin-bottom: 28px;
}

.philosophy-heading {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #F5F0E8;
  margin-bottom: 24px;
}

.philosophy-body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(245,240,232,0.75);
  max-width: 680px;
  margin-bottom: 64px;
}

.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.philosophy-pillar-icon {
  margin-bottom: 20px;
}

.philosophy-pillar-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 500;
  color: #F5F0E8;
  margin-bottom: 12px;
}

.philosophy-pillar-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(245,240,232,0.65);
}

/* --- Rituals --- */
.rituals {
  padding: 100px 48px;
  background: var(--bg);
}

.rituals-header {
  text-align: center;
  margin-bottom: 72px;
}

.rituals-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 12px;
}

.rituals-subtitle {
  font-size: 1rem;
  color: var(--fg-muted);
}

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

.ritual-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 32px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ritual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(27,61,47,0.1);
}

.ritual-card-featured {
  border-color: var(--accent);
  border-width: 1.5px;
}

.ritual-card-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 0 0 4px 4px;
}

.ritual-card-icon {
  margin-bottom: 24px;
}

.ritual-card-name {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 14px;
}

.ritual-card-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.ritual-card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}

.ritual-card-from {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ritual-card-amount {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 600;
  color: var(--green);
}

.ritual-card-per {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

.ritual-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ritual-card-features li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding-left: 18px;
  position: relative;
}

.ritual-card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

/* --- Community --- */
.community {
  background: var(--green-pale);
  padding: 100px 48px;
}

.community-inner {
  max-width: 900px;
  margin: 0 auto;
}

.community-quote-block {
  margin-bottom: 56px;
}

.community-quote {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--green);
  line-height: 1.4;
  margin-bottom: 28px;
  padding-left: 28px;
  border-left: 3px solid var(--accent);
}

.community-body {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--fg-muted);
  max-width: 680px;
}

.community-for {
  margin-bottom: 56px;
}

.community-for-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 20px;
}

.community-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.community-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.02em;
}

.community-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.community-stat {
  flex: 1;
  min-width: 180px;
  padding: 24px 0;
}

.community-stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 6px;
}

.community-stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.community-stat-sep {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* --- Closing --- */
.closing {
  background: var(--bg);
  padding: 100px 48px 120px;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.closing-ornament {
  margin-bottom: 40px;
}

.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.25;
  margin-bottom: 24px;
}

.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto 48px;
}

.closing-cta-text {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--green);
}

/* --- Footer --- */
.footer {
  background: var(--green);
  padding: 48px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.footer-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: #F5F0E8;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(245,240,232,0.4);
}

.footer-separator {
  color: var(--accent);
  opacity: 0.5;
}

.footer-disclaimer {
  max-width: 480px;
  line-height: 1.5;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.35);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .navbar {
    padding: 14px 24px;
  }

  .navbar-tagline {
    display: none;
  }

  .hero {
    padding: 100px 24px 64px;
    min-height: auto;
  }

  .hero-leaves {
    width: 50%;
  }

  .leaf-1, .leaf-2, .leaf-3 {
    opacity: 0.6;
  }

  .philosophy,
  .rituals,
  .community,
  .closing {
    padding: 72px 24px;
  }

  .community-stats {
    flex-direction: column;
    gap: 0;
  }

  .community-stat-sep {
    width: 40px;
    height: 1px;
    margin: 0;
  }

  .footer {
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.2rem;
  }

  .hero-prices {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-price-sep {
    display: none;
  }

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