/* ===================================================================
   Alaka Naturals — organic luxury
   Forest green · gold · parchment cream
   =================================================================== */

:root {
  --green-900: #122e1a;
  --green-800: #1d4427;
  --green-700: #265a32;
  --green-600: #356e3f;
  --gold:      #b8893f;
  --gold-300:  #cda85c;
  --gold-100:  #e7cf95;
  --cream:     #f4eedd;
  --cream-2:   #ece2c9;
  --paper:     #faf6ec;
  --ink:       #2a2c22;
  --ink-soft:  #54584a;

  --maxw: 1200px;
  --serif: "Cormorant Garamond", "Hoefler Text", Georgia, serif;
  --sans:  "Jost", "Avenir Next", system-ui, sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.04; letter-spacing: .005em; }

/* ---------- shared atoms ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.gold { color: var(--gold-300); }
.italic { font-style: italic; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .95em 1.8em;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .4s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold));
  color: #2a1e08;
  box-shadow: 0 10px 26px -10px rgba(184,137,63,.7);
}
.btn--gold:hover { box-shadow: 0 16px 34px -12px rgba(184,137,63,.85); }

.btn--ghost {
  border-color: rgba(231,207,149,.55);
  color: var(--cream);
}
.btn--ghost:hover { border-color: var(--gold-300); background: rgba(231,207,149,.08); }

.btn--ghost-dark {
  border-color: rgba(38,90,50,.4);
  color: var(--green-700);
}
.btn--ghost-dark:hover { border-color: var(--green-700); background: rgba(38,90,50,.06); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ===================================================================
   Topbar + Nav
   =================================================================== */
.topbar {
  background: var(--green-900);
  color: var(--gold-100);
  text-align: center;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: .55rem 1rem;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem clamp(1.1rem, 4vw, 3rem);
  background: rgba(250,246,236,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background .4s var(--ease), padding .4s var(--ease);
}
.nav.scrolled { border-color: rgba(38,90,50,.14); box-shadow: 0 8px 30px -22px rgba(18,46,26,.6); }

.brand { display: flex; align-items: center; gap: .7rem; }
.brand__mark { color: var(--green-700); width: 46px; height: 46px; flex: none; }
.brand__mark svg { width: 100%; height: 100%; overflow: visible; }
.brand__mark .ring { fill: none; stroke: var(--gold); stroke-width: 2.4; }
.brand__mark .inf  { fill: none; stroke: var(--gold-300); stroke-width: 3; stroke-linecap: round; opacity: .9; }
.brand__mark .mono-a { font-family: var(--serif); font-weight: 700; font-size: 34px; fill: var(--green-700); }
.brand__mark .mono-n { font-family: var(--serif); font-weight: 600; font-size: 24px; letter-spacing: 2px; fill: var(--green-700); }

.brand__word { display: flex; flex-direction: column; line-height: .95; }
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 1.6rem; color: var(--green-800); }
.brand__sub  { font-family: var(--sans); font-size: .62rem; letter-spacing: .42em; text-transform: uppercase; color: var(--gold); margin-left: .12em; }

.nav__links { display: flex; gap: 2rem; margin-left: auto; }
.nav__links a {
  font-size: .82rem;
  letter-spacing: .06em;
  color: var(--ink-soft);
  position: relative;
  padding: .2rem 0;
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav__links a:hover { color: var(--green-800); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { padding: .7em 1.4em; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; margin-left: auto; }
.nav__toggle span { width: 24px; height: 2px; background: var(--green-800); transition: transform .35s var(--ease), opacity .3s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0 0 auto 0; top: 0; z-index: 45;
  background: var(--green-900);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.4rem;
  height: 100dvh;
  transform: translateY(-100%);
  transition: transform .55s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { color: var(--cream); font-family: var(--serif); font-size: 1.9rem; }
.mobile-menu .btn { font-family: var(--sans); font-size: .82rem; margin-top: 1rem; }

/* ===================================================================
   Hero
   =================================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 80% -10%, #2f6b3c 0%, var(--green-800) 42%, var(--green-900) 100%);
  color: var(--cream);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.05' stroke-width='1'%3E%3Cpath d='M60 20c-14 10-22 24-18 40 12-6 20-18 18-40z'/%3E%3Cpath d='M60 20c14 10 22 24 18 40-12-6-20-18-18-40z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: .5; pointer-events: none;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__bg .leaf { position: absolute; border-radius: 0 100% 0 100%; background: radial-gradient(circle at 30% 30%, rgba(231,207,149,.18), transparent 70%); filter: blur(2px); }
.leaf--1 { width: 320px; height: 320px; top: -80px; left: -90px; }
.leaf--2 { width: 220px; height: 220px; bottom: -60px; right: 30%; opacity: .6; }
.leaf--3 { width: 160px; height: 160px; top: 30%; right: -40px; opacity: .5; }

.hero__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.1rem, 4vw, 3rem) clamp(4rem, 9vw, 7rem);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero__title {
  font-size: clamp(2.9rem, 7vw, 5.4rem);
  font-weight: 600;
  margin: .2rem 0 1.4rem;
}
.hero__title span { display: block; }
.hero__lede { max-width: 30rem; font-size: 1.08rem; color: rgba(244,238,221,.86); margin-bottom: 2rem; }
.hero__lede em { font-style: italic; color: var(--gold-100); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__tag {
  margin-top: 2.4rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-100);
  position: relative;
  padding-left: 3rem;
}
.hero__tag::before { content: ""; position: absolute; left: 0; top: 50%; width: 2.2rem; height: 1px; background: var(--gold-300); }

.hero__media { position: relative; display: flex; justify-content: center; }
.hero__halo {
  position: absolute; inset: -6% -2%;
  background: radial-gradient(circle at 50% 45%, rgba(231,207,149,.35), rgba(231,207,149,0) 62%);
  filter: blur(8px);
}
.hero__media img {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  box-shadow: 0 50px 80px -30px rgba(0,0,0,.55), 0 0 0 1px rgba(231,207,149,.18);
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0) rotate(-.4deg); } 50% { transform: translateY(-14px) rotate(.4deg); } }
@media (prefers-reduced-motion: reduce) { .hero__media img { animation: none; } }

/* ===================================================================
   Trust strip
   =================================================================== */
.trust {
  background: var(--green-900);
  color: var(--gold-100);
}
.trust__list {
  max-width: var(--maxw);
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.2rem, 5vw, 4rem);
  padding: 1.4rem clamp(1.1rem, 4vw, 3rem);
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.trust__list li { display: flex; align-items: center; gap: .55rem; }
.trust__ico { font-size: 1.15rem; filter: saturate(0) brightness(1.8); }

/* ===================================================================
   Story
   =================================================================== */
.story { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 10vw, 7.5rem) clamp(1.1rem, 4vw, 3rem); }
.story__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }

.story__art { display: flex; justify-content: center; }
.story__circle {
  width: min(340px, 80%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff 0%, var(--cream) 40%, var(--cream-2) 100%);
  border: 1px solid rgba(184,137,63,.35);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 60px rgba(184,137,63,.12), 0 30px 60px -40px rgba(18,46,26,.5);
  position: relative;
}
.story__circle::before { content: ""; position: absolute; inset: 14px; border-radius: 50%; border: 1px dashed rgba(184,137,63,.4); }
.story__leaf {
  width: 46%; height: 46%;
  background: var(--green-700);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 6C28 22 16 44 22 78c30-10 44-34 44-72-0 0-10 0-16 0z M50 6c10 14 8 40-8 64' fill='none' stroke='black' stroke-width='4'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 6C28 22 16 44 22 78c30-10 44-34 44-72-0 0-10 0-16 0z M50 6c10 14 8 40-8 64' fill='none' stroke='black' stroke-width='4'/%3E%3C/svg%3E") center/contain no-repeat;
}

.story__copy h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); color: var(--green-800); margin-bottom: 1.3rem; }
.story__copy p { color: var(--ink-soft); margin-bottom: 1.1rem; max-width: 38rem; }
.story__copy strong { color: var(--green-700); font-weight: 600; }
.story__points { list-style: none; margin-top: 1.6rem; display: grid; gap: .7rem; }
.story__points li { position: relative; padding-left: 1.7rem; color: var(--ink); }
.story__points li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }

/* ===================================================================
   Section heads
   =================================================================== */
.section-head { text-align: center; max-width: 40rem; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--green-800); }
.section-head__sub { color: var(--ink-soft); margin-top: 1rem; }
.section-head--light h2 { color: var(--cream); }
.section-head--light .section-head__sub { color: rgba(244,238,221,.78); }

/* ===================================================================
   Products
   =================================================================== */
.products { max-width: var(--maxw); margin: 0 auto; padding: clamp(2rem, 5vw, 4rem) clamp(1.1rem, 4vw, 3rem) clamp(4rem, 9vw, 7rem); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }

.card {
  background: #fff;
  border: 1px solid rgba(184,137,63,.2);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: 0 40px 70px -45px rgba(18,46,26,.55); border-color: rgba(184,137,63,.5); }

.card__media { background: linear-gradient(160deg, var(--cream), var(--cream-2)); padding: 1.6rem; display: grid; place-items: center; }
.card__media img { width: auto; max-height: 320px; border-radius: 10px; box-shadow: 0 24px 44px -26px rgba(0,0,0,.45); }

.card__swatch { height: 220px; position: relative; display: grid; place-items: center; }
.swatch--indigo { background: radial-gradient(circle at 40% 35%, #3a4d7a, #1c2747 75%); }
.swatch--amla   { background: radial-gradient(circle at 40% 35%, #6f7d2f, #3c4a14 78%); }
.swatch__leaf {
  width: 92px; height: 92px; background: rgba(255,255,255,.85);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 6C28 22 16 44 22 78c30-10 44-34 44-72-0 0-10 0-16 0z M50 6c10 14 8 40-8 64' fill='none' stroke='black' stroke-width='4'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 6C28 22 16 44 22 78c30-10 44-34 44-72-0 0-10 0-16 0z M50 6c10 14 8 40-8 64' fill='none' stroke='black' stroke-width='4'/%3E%3C/svg%3E") center/contain no-repeat;
}

.card__body { padding: 1.8rem; display: flex; flex-direction: column; flex: 1; }
.card__latin { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1rem; margin-bottom: .15rem; }
.card__body h3 { font-size: 1.9rem; color: var(--green-800); }
.card__line { font-family: var(--sans); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--green-600); margin: .5rem 0 1rem; }
.card__body > p { color: var(--ink-soft); font-size: .96rem; }
.card__benefits { list-style: none; margin-top: 1.2rem; display: grid; gap: .5rem; padding-top: 1.2rem; border-top: 1px solid rgba(184,137,63,.22); }
.card__benefits li { position: relative; padding-left: 1.5rem; font-size: .9rem; color: var(--ink); }
.card__benefits li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.card--feature { grid-row: span 1; }

/* ===================================================================
   Ritual
   =================================================================== */
.ritual {
  background:
    radial-gradient(110% 120% at 15% 0%, #2f6b3c 0%, var(--green-800) 45%, var(--green-900) 100%);
  color: var(--cream);
}
.ritual__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 9vw, 7rem) clamp(1.1rem, 4vw, 3rem); }
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; counter-reset: s; }
.step {
  position: relative;
  padding: 2rem 1.4rem;
  border: 1px solid rgba(231,207,149,.22);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  transition: background .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}
.step:hover { background: rgba(231,207,149,.07); border-color: rgba(231,207,149,.5); transform: translateY(-6px); }
.step__no { font-family: var(--serif); font-size: 2.6rem; color: var(--gold-300); display: block; line-height: 1; margin-bottom: .8rem; }
.step h3 { font-size: 1.5rem; color: var(--cream); margin-bottom: .5rem; }
.step p { font-size: .92rem; color: rgba(244,238,221,.78); }
.ritual__note {
  text-align: center;
  margin-top: 2.6rem;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-100);
  opacity: .8;
}

/* ===================================================================
   Values
   =================================================================== */
.values { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 9vw, 7rem) clamp(1.1rem, 4vw, 3rem); }
.values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.value {
  background: linear-gradient(180deg, #fff, var(--paper));
  border: 1px solid rgba(184,137,63,.18);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.value:hover { transform: translateY(-5px); box-shadow: 0 30px 50px -38px rgba(18,46,26,.5); }
.value__ico { font-size: 1.7rem; display: block; margin-bottom: .8rem; filter: saturate(0); }
.value h3 { font-size: 1.4rem; color: var(--green-800); margin-bottom: .4rem; }
.value p { color: var(--ink-soft); font-size: .94rem; }

/* ===================================================================
   Connect
   =================================================================== */
.connect { background: var(--cream); }
.connect__inner { max-width: 56rem; margin: 0 auto; text-align: center; padding: clamp(4rem, 9vw, 7rem) clamp(1.1rem, 4vw, 3rem); }
.connect h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--green-800); }
.connect__lede { color: var(--ink-soft); max-width: 36rem; margin: 1.2rem auto 2.2rem; }
.connect__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.connect__details {
  list-style: none; margin-top: 2.6rem;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.6rem;
  border-top: 1px solid rgba(184,137,63,.3); padding-top: 2rem;
}
.connect__details li { font-size: .95rem; color: var(--ink); }
.connect__details span { display: block; font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .2rem; }

/* ===================================================================
   Footer
   =================================================================== */
.footer { background: var(--green-900); color: var(--cream); }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.1rem, 4vw, 3rem) 2rem;
  display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start;
}
.footer__brand .brand__name { color: var(--cream); font-size: 2rem; }
.footer__brand .brand__sub { color: var(--gold-300); }
.footer__brand p { font-family: var(--serif); font-style: italic; color: var(--gold-100); margin-top: .6rem; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer__nav a { font-size: .85rem; color: rgba(244,238,221,.8); letter-spacing: .05em; transition: color .3s; }
.footer__nav a:hover { color: var(--gold-300); }
.footer__base {
  border-top: 1px solid rgba(231,207,149,.16);
  text-align: center;
  padding: 1.4rem;
  font-size: .76rem;
  letter-spacing: .08em;
  color: rgba(244,238,221,.6);
}

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 940px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { order: 2; }
  .hero__media { order: 1; max-width: 360px; margin: 0 auto; }
  .hero__cta, .hero__tag { justify-content: center; }
  .hero__tag { display: inline-block; padding-left: 0; }
  .hero__tag::before { display: none; }
  .hero__lede { margin-inline: auto; }
  .story__grid { grid-template-columns: 1fr; }
  .story__art { order: 2; }
  .cards { grid-template-columns: 1fr 1fr; }
  .values__grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .cards, .values__grid, .steps { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(2.1rem, 8.5vw, 3rem); }
  .hero__lede { font-size: 1rem; }
  .hero__tag { font-size: 1.05rem; }
  .nav { gap: 1rem; }
  .section-head h2, .story__copy h2, .connect h2 { font-size: clamp(2rem, 8vw, 2.6rem); }
}
