:root {
  --parchment: 210 15% 8%;
  --parchment-deep: 200 12% 6%;
  --t-herbal: 174 72% 25%;
  --herbal-deep: 180 80% 12%;
  --herbal-glow: 165 55% 35%;
  --t-gold: 43 75% 50%;
  --gold-soft: 43 90% 70%;
  --t-clay: 30 65% 35%;
  --clay-soft: 25 60% 50%;
  --ink: 166 30% 88%;
  --t-background: var(--parchment);
  --t-foreground: var(--ink);
  --card: 200 12% 14%;
  --t-muted: 200 10% 18%;
  --muted-foreground: 166 20% 75%;
  --t-border: 180 15% 25%;
  --t-radius: 1rem;
  --ease-organic: cubic-bezier(0.22, 1, 0.36, 1);
  --scroll-progress: 0;
  --hero-parallax: 0px;
  --bg-hue-shift: 0deg;
  --scroll-skew: 0deg;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(
      ellipse at 20% 10%,
      hsl(var(--t-gold) / 0.15),
      transparent 55%
    ),
    radial-gradient(
      ellipse at 80% 30%,
      hsl(var(--t-clay) / 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, hsl(var(--parchment)), hsl(var(--parchment-deep)));
  background-attachment: fixed;
  color: hsl(var(--t-foreground));
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
}
.font-serif-display {
  font-family:
    Cormorant Garamond,
    EB Garamond,
    Georgia,
    serif;
  font-weight: 500;
  letter-spacing: 0;
}
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 120;
  height: 3px;
  width: calc(var(--scroll-progress) * 100%);
  background: linear-gradient(90deg, hsl(var(--t-gold)), hsl(var(--t-clay)));
  box-shadow: 0 0 20px hsl(var(--t-gold) / 0.8);
}
.ambient-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(
      circle at calc(20% + var(--hero-parallax)) 10%,
      hsl(var(--t-gold) / 0.18),
      transparent 55%
    ),
    radial-gradient(
      circle at 80% calc(40% - var(--hero-parallax) * 0.5),
      hsl(var(--t-clay) / 0.18),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      hsl(var(--parchment)),
      hsl(var(--herbal-deep) / 0.5) 40%,
      hsl(var(--t-herbal) / calc(0.05 + var(--scroll-progress) * 0.6))
    );
  filter: hue-rotate(var(--bg-hue-shift));
}
.particle-field {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}
.particle-field i {
  position: absolute;
  width: 7px;
  height: 15px;
  border-radius: 100% 0;
  background: hsl(var(--t-gold) / 0.25);
  animation: particleFloat var(--dur, 18s) linear infinite;
  transform: translateY(110vh) rotate(var(--rot, 0deg));
}
.glass-dark {
  background: linear-gradient(
    135deg,
    hsl(var(--t-herbal) / 0.55),
    hsl(var(--herbal-deep) / 0.35)
  );
  border: 1px solid hsl(var(--t-gold) / 0.25);
  box-shadow: 0 12px 40px -12px hsl(var(--herbal-deep) / 0.35);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
}
.siddha-loader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      ellipse at 50% 40%,
      hsl(var(--t-gold) / 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, hsl(var(--herbal-deep)), hsl(var(--t-herbal)));
  transition:
    opacity 0.9s var(--ease-organic),
    clip-path 1.1s var(--ease-organic);
  clip-path: inset(0);
}
.siddha-loader.is-done,
.siddha-loader[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
}
.siddha-loader__inner {
  text-align: center;
  color: hsl(var(--parchment));
}
.siddha-loader__mandala {
  width: clamp(110px, 18vw, 170px);
  margin: 0 auto 1.5rem;
  animation:
    mandalaSpin 9s linear infinite,
    breathe 6s var(--ease-organic) infinite;
  filter: drop-shadow(0 0 30px hsl(var(--t-gold) / 0.55));
}
.siddha-loader__label {
  margin: 0;
  font-family:
    Cormorant Garamond,
    Georgia,
    serif;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.4em;
  padding-left: 0.4em;
}
.siddha-loader__label span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: loaderLetter 1.4s var(--ease-organic) forwards;
}
.siddha-loader__label span:nth-child(2) {
  animation-delay: 0.13s;
}
.siddha-loader__label span:nth-child(3) {
  animation-delay: 0.26s;
}
.siddha-loader__label span:nth-child(4) {
  animation-delay: 0.39s;
}
.siddha-loader__label span:nth-child(5) {
  animation-delay: 0.52s;
}
.siddha-loader__label span:nth-child(6) {
  animation-delay: 0.65s;
}
.siddha-loader__sub {
  margin-top: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: hsl(var(--gold-soft));
  opacity: 0.85;
}
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 320px;
  height: 320px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    hsl(var(--t-gold) / 0.18),
    hsl(var(--t-clay) / 0.08) 40%,
    transparent 70%
  );
  mix-blend-mode: plus-lighter;
  transition:
    width 0.5s var(--ease-organic),
    height 0.5s var(--ease-organic),
    background 0.5s var(--ease-organic);
  will-change: transform;
}
.cursor-glow__dot,
.cursor-glow__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-glow__dot {
  width: 8px;
  height: 8px;
  background: hsl(var(--t-gold));
  box-shadow:
    0 0 14px hsl(var(--t-gold) / 0.9),
    0 0 28px hsl(var(--t-clay) / 0.6);
}
.cursor-glow__ring {
  width: 36px;
  height: 36px;
  border: 1px solid hsl(var(--t-gold) / 0.55);
  animation: cursorRing 3.6s var(--ease-organic) infinite;
}
.cursor-glow.is-hover {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    hsl(var(--t-gold) / 0.28),
    hsl(var(--t-clay) / 0.12) 40%,
    transparent 70%
  );
}
.siddha-nav {
  position: fixed;
  top: 0.75rem;
  left: 50%;
  z-index: 100;
  width: min(calc(100vw - 1rem), 42rem);
  transform: translate(-50%);
}
.siddha-nav__bar {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 0.1rem;
  padding: 0.35rem;
  border-radius: 999px;
  overflow: hidden;
}
.siddha-nav__indicator {
  position: absolute;
  top: 50%;
  left: 0;
  width: 25%;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid hsl(var(--t-gold) / 0.4);
  background: linear-gradient(
    120deg,
    hsl(var(--t-gold) / 0.35),
    hsl(var(--t-clay) / 0.35)
  );
  transform: translate(var(--nav-x, 0%), -50%);
  transition: transform 0.7s var(--ease-organic);
}
.nav-link {
  position: relative;
  z-index: 1;
  padding: 0.65rem 0.35rem;
  color: color-mix(in srgb, currentColor 72%, transparent);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.4s var(--ease-organic);
}
.nav-link:hover,
.nav-link.active {
  color: color-mix(in srgb, currentColor 72%, transparent);
}
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 6rem 1rem 5rem;
  overflow: hidden;
}
.hero__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.3;
  mix-blend-mode: multiply;
  transform: translate3d(0, calc(var(--hero-parallax) * 0.15), 0) scale(1.05);
}
.hero__veil {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    hsl(var(--parchment) / 0.42),
    hsl(var(--parchment) / 0.72) 60%,
    hsl(var(--parchment))
  );
}
.noise-overlay:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image:
    radial-gradient(hsl(var(--t-gold) / 0.2) 1px, transparent 1px),
    radial-gradient(hsl(var(--ink) / 0.15) 1px, transparent 1px);
  background-size:
    3px 3px,
    5px 5px;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: min(64rem, 100%);
  text-align: center;
}
.eyebrow {
  margin: 0 0 1.25rem;
  color: hsl(var(--t-clay));
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}
.eyebrow--light {
  color: hsl(var(--gold-soft));
}
.hero__title {
  margin: 0;
  color: hsl(var(--t-herbal));
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.95;
}
.split-text {
  display: block;
  overflow: hidden;
  opacity: 0;
  transform: translateY(90%) rotate(6deg);
  animation: splitReveal 1.15s var(--ease-organic) 0.45s forwards;
}
.split-text--gold,
.section-title span,
.section-title--light span,
.home-tooltip em,
.timeline time {
  background: linear-gradient(
    120deg,
    hsl(var(--gold-soft)),
    hsl(var(--t-gold)),
    hsl(var(--clay-soft))
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.split-text--gold {
  animation-delay: 0.68s;
}
.hero__copy {
  max-width: 42rem;
  margin: 1.5rem auto 0;
  padding: 0 0.25rem;
  color: hsl(var(--muted-foreground));
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3.35rem;
  padding: 0.9rem 1.55rem;
  border-radius: 999px;
  transition:
    transform 0.5s var(--ease-organic),
    background-color 0.4s,
    box-shadow 0.5s;
}
.button--primary {
  background: hsl(var(--t-herbal));
  color: hsl(var(--parchment));
  font-weight: 600;
}
.button--primary:hover {
  box-shadow: 0 20px 60px -15px hsl(var(--t-herbal) / 0.6);
  transform: translateY(-2px);
}
.button--ghost {
  border: 1px solid hsl(var(--t-border));
  color: hsl(var(--t-foreground) / 0.8);
}
.gold-underline {
  position: relative;
}
.gold-underline:after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.6rem;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    hsl(var(--t-gold)),
    hsl(var(--t-clay)),
    hsl(var(--t-gold)),
    transparent
  );
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.7s var(--ease-organic);
  animation: shimmer 4s linear infinite;
}
.gold-underline:hover:after {
  transform: scaleX(1);
}
.hero__ornaments {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  transform: translate3d(0, calc(var(--hero-parallax) * -0.3), 0);
}
.orb,
.aurora {
  position: absolute;
  border-radius: 50%;
}
.orb--gold {
  top: 18%;
  left: 12%;
  width: 10rem;
  height: 10rem;
  background: radial-gradient(
    circle,
    hsl(var(--t-gold) / 0.35),
    transparent 70%
  );
}
.orb--green {
  right: 10%;
  bottom: 14%;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(
    circle,
    hsl(var(--herbal-glow) / 0.35),
    transparent 70%
  );
}
.orb--clay {
  top: 35%;
  right: 22%;
  width: 6rem;
  height: 6rem;
  background: radial-gradient(
    circle,
    hsl(var(--t-clay) / 0.4),
    transparent 70%
  );
}
.aurora {
  width: 28rem;
  height: 28rem;
  filter: blur(40px);
  opacity: 0.46;
  background: conic-gradient(
    from 0deg,
    hsl(var(--t-gold) / 0.5),
    hsl(var(--t-clay) / 0.4),
    hsl(var(--herbal-glow) / 0.5),
    hsl(var(--t-gold) / 0.5)
  );
  animation: auroraSpin 18s linear infinite;
}
.aurora--one {
  top: -8rem;
  left: -8rem;
}
.aurora--two {
  right: -9rem;
  bottom: -12rem;
  animation-duration: 26s;
  animation-direction: reverse;
}
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transform: translate(-50%);
}
.scroll-cue i {
  width: 1px;
  height: 3rem;
  background: hsl(var(--t-foreground) / 0.3);
  animation: breathe 7s var(--ease-organic) infinite;
}
.section {
  position: relative;
  min-height: 100vh;
  padding: 5rem 1rem;
}
.section-inner,
.section-grid,
.community-grid,
.cards--herbs,
.timeline {
  width: min(78rem, 100%);
  margin-inline: auto;
}
.section-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.section-intro p,
.center-intro p {
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
}
.section-title {
  margin: 0;
  color: hsl(var(--t-herbal));
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1;
}
.section-title--light {
  color: hsl(var(--parchment));
}
.cards {
  display: grid;
  gap: 1rem;
}
.card {
  position: relative;
  overflow: hidden;
  border-radius: var(--t-radius);
  background: linear-gradient(
    135deg,
    hsl(var(--parchment) / 0.55),
    hsl(var(--parchment) / 0.2)
  );
  border: 1px solid hsl(var(--parchment) / 0.5);
  box-shadow: 0 12px 40px -12px hsl(var(--herbal-deep) / 0.35);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
}
.tilt-card {
  transform-style: preserve-3d;
  transition:
    transform 0.6s var(--ease-organic),
    box-shadow 0.6s var(--ease-organic);
  will-change: transform;
}
.tilt-card:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    400px circle at var(--pointer-x, 50%) var(--pointer-y, 50%),
    hsl(var(--t-gold) / 0.18),
    transparent 60%
  );
  transition: opacity 0.4s var(--ease-organic);
}
.tilt-card:hover:after {
  opacity: 1;
}
.image-card {
  min-height: 15rem;
}
.image-card img,
.feature-image img,
.manuscript-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.image-card__overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 4rem 1.25rem 1.25rem;
  color: hsl(var(--parchment));
  background: linear-gradient(
    180deg,
    transparent,
    hsl(var(--herbal-deep) / 0.88)
  );
}
.image-card__overlay p,
.feature-image p,
.recipe-card > p {
  margin: 0 0 0.5rem;
  color: hsl(var(--gold-soft));
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.image-card__overlay h3 {
  margin: 0;
  font-size: 1.55rem;
}
.herb-card {
  padding: 1.25rem;
}
.herb-card div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.herb-card h3 {
  margin: 0;
  color: hsl(var(--t-herbal));
  font-size: 1.65rem;
}
.herb-card span {
  color: hsl(var(--t-clay));
  font-size: 0.82rem;
}
.herb-card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}
.botanical-wrap {
  display: none;
  height: 32rem;
}
.botanical-svg {
  width: 100%;
  height: 100%;
  transform-origin: 50% 100%;
  animation: plantWind 7s ease-in-out infinite;
}
.draw-path {
  stroke-dasharray: var(--path-length, 1000);
  stroke-dashoffset: calc(var(--path-length, 1000) * (1 - var(--draw, 0)));
  transition: stroke-dashoffset 0.1s linear;
}
.botanical-leaves ellipse {
  transform-box: fill-box;
  transform-origin: center;
  scale: var(--leaf-scale, 0.2);
  opacity: var(--leaf-opacity, 0.15);
  transition:
    scale 0.35s var(--ease-organic),
    opacity 0.35s;
  animation: leafWind 5s ease-in-out infinite;
}
.marquee-section {
  padding: 3rem 0;
  overflow: hidden;
}
.marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
}
.velocity-skew {
  transform: skewY(var(--scroll-skew));
  transition: transform 0.3s var(--ease-organic);
}
.marquee-track {
  display: inline-flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marqueeScroll 40s linear infinite;
  will-change: transform;
}
.marquee-track span {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  color: hsl(var(--t-herbal));
  font-family:
    Cormorant Garamond,
    Georgia,
    serif;
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-style: italic;
  opacity: 0.85;
}
.section--nutrition {
  background:
    radial-gradient(
      ellipse at 50% 0%,
      hsl(var(--herbal-glow) / 0.45),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      transparent,
      hsl(var(--t-herbal) / 0.85) 40%,
      hsl(var(--herbal-deep))
    );
}
.center-intro {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}
.center-intro p:not(.eyebrow),
.section-intro--light p {
  color: hsl(var(--parchment) / 0.75);
}
.feature-image {
  position: relative;
  min-height: 24rem;
  margin-top: 3rem;
  overflow: hidden;
  border-radius: calc(var(--t-radius) + 0.5rem);
  border: 1px solid hsl(var(--t-gold) / 0.25);
  box-shadow: 0 12px 40px -12px hsl(var(--herbal-deep) / 0.35);
}
.feature-image:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    90deg,
    hsl(var(--herbal-deep) / 0.86),
    transparent 65%
  );
}
.feature-image div {
  position: absolute;
  inset: auto auto 0 0;
  z-index: 1;
  max-width: 36rem;
  padding: 2rem;
  color: hsl(var(--parchment));
}
.feature-image h3 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-style: italic;
}
.recipe-grid {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}
.recipe-card {
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  border-radius: calc(var(--t-radius) + 0.5rem);
  color: hsl(var(--parchment));
  background: linear-gradient(
    135deg,
    hsl(var(--t-herbal) / 0.55),
    hsl(var(--herbal-deep) / 0.35)
  );
  border: 1px solid hsl(var(--t-gold) / 0.25);
  box-shadow: 0 12px 40px -12px hsl(var(--herbal-deep) / 0.35);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
}
.recipe-card h3 {
  margin: 0;
  font-size: 2rem;
}
.recipe-card span {
  color: hsl(var(--parchment) / 0.75);
  line-height: 1.75;
}
.recipe-card a {
  color: hsl(var(--gold-soft));
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.section--community {
  color: hsl(var(--parchment));
  background: linear-gradient(
    180deg,
    hsl(var(--herbal-deep)),
    hsl(var(--t-herbal)) 50%,
    hsl(var(--herbal-deep) / 0.5)
  );
}
.community-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
.manuscript-card {
  min-height: 18rem;
  overflow: hidden;
  border-radius: var(--t-radius);
  border: 1px solid hsl(var(--t-gold) / 0.25);
}
.timeline {
  position: relative;
  margin-top: 4rem;
  padding-left: 1.75rem;
  list-style: none;
}
.timeline:before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: linear-gradient(
    180deg,
    hsl(var(--t-gold) / 0),
    hsl(var(--t-gold) / 0.6),
    hsl(var(--t-gold) / 0)
  );
}
.timeline li {
  position: relative;
  display: grid;
  gap: 1rem;
  padding-bottom: 3rem;
}
.timeline li:before {
  content: "";
  position: absolute;
  left: -1.7rem;
  top: 0.55rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: radial-gradient(circle, hsl(var(--t-gold)), hsl(var(--t-clay)));
  box-shadow: 0 0 24px hsl(var(--t-gold) / 0.6);
  animation: breathe 7s var(--ease-organic) infinite;
}
.timeline time {
  font-size: clamp(2rem, 7vw, 3.4rem);
}
.timeline article {
  padding: 1.25rem;
  border-radius: var(--t-radius);
  background: linear-gradient(
    135deg,
    hsl(var(--t-herbal) / 0.55),
    hsl(var(--herbal-deep) / 0.35)
  );
  border: 1px solid hsl(var(--t-gold) / 0.25);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  transition: transform 0.7s var(--ease-organic);
}
.timeline article:hover {
  transform: translate(0.5rem);
}
.timeline h3 {
  margin: 0 0 0.5rem;
  font-size: 1.7rem;
}
.timeline h3 span {
  margin-left: 0.75rem;
  font-family: Inter, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  opacity: 0.6;
}
.timeline p {
  margin: 0;
  color: hsl(var(--parchment) / 0.78);
  line-height: 1.75;
}
.footer {
  position: relative;
  padding: 4rem 1rem;
  text-align: center;
}
.footer p {
  margin: 0;
  color: hsl(var(--t-herbal));
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-style: italic;
}
.footer small {
  display: block;
  margin-top: 1.5rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.home-button {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 105;
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid hsl(var(--t-gold) / 0.25);
  border-radius: 50%;
  color: hsl(var(--parchment));
  cursor: pointer;
  background: linear-gradient(
    135deg,
    hsl(var(--t-herbal) / 0.75),
    hsl(var(--herbal-deep) / 0.65)
  );
  box-shadow: 0 12px 40px -12px hsl(var(--herbal-deep) / 0.35);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  transition: transform 0.5s var(--ease-organic);
}
.home-button svg {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.5s var(--ease-organic);
}
.home-button:hover svg {
  transform: translateY(-2px);
}
.home-tooltip {
  position: absolute;
  top: 50%;
  right: calc(100% + 0.75rem);
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  color: hsl(var(--parchment));
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translate(0.5rem, -50%);
  background: linear-gradient(
    135deg,
    hsl(var(--t-herbal) / 0.65),
    hsl(var(--herbal-deep) / 0.55)
  );
  border: 1px solid hsl(var(--t-gold) / 0.25);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  transition:
    opacity 0.5s var(--ease-organic),
    transform 0.5s var(--ease-organic);
}
.home-button:hover .home-tooltip,
.home-button:focus-visible .home-tooltip {
  opacity: 1;
  transform: translateY(-50%);
}
.home-tooltip em {
  font-family:
    Cormorant Garamond,
    Georgia,
    serif;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
}
.pulse-ring {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  border: 1px solid hsl(var(--t-gold) / 0.5);
  animation: pulseRing 2.6s var(--ease-organic) infinite;
}
.pulse-ring--delay {
  animation-delay: 1.3s;
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1.1s var(--ease-organic),
    transform 1.1s var(--ease-organic);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.9s var(--ease-organic),
    transform 0.9s var(--ease-organic);
}
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.is-visible > *:nth-child(2) {
  transition-delay: 0.12s;
}
.reveal-stagger.is-visible > *:nth-child(3) {
  transition-delay: 0.22s;
}
.reveal-stagger.is-visible > *:nth-child(4) {
  transition-delay: 0.32s;
}
.reveal-stagger.is-visible > *:nth-child(5) {
  transition-delay: 0.42s;
}
@media (min-width: 640px) {
  .nav-link {
    padding-inline: 0.75rem;
    font-size: 0.76rem;
  }
  .section {
    padding: 7rem 1.5rem;
  }
  .cards--herbs,
  .recipe-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-button {
    right: 2rem;
    bottom: 2rem;
    width: 3.5rem;
    height: 3.5rem;
  }
  .feature-image div {
    padding: 3rem;
  }
}
@media (min-width: 980px) {
  .siddha-nav {
    top: 1.25rem;
  }
  .section-grid--garden {
    grid-template-columns: 5fr 3fr 4fr;
    gap: 3rem;
  }
  .botanical-wrap {
    display: block;
  }
  .cards--herbs,
  .recipe-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .community-grid {
    grid-template-columns: 7fr 5fr;
    gap: 3rem;
  }
  .timeline {
    padding-left: 4rem;
  }
  .timeline:before {
    left: 1.25rem;
  }
  .timeline li {
    grid-template-columns: 3fr 9fr;
    gap: 2rem;
  }
  .timeline li:before {
    left: -3.25rem;
  }
  .hero {
    padding-inline: 1.5rem;
  }
}
@media (max-width: 430px) {
  .siddha-nav {
    width: calc(100vw - 0.5rem);
  }
  .nav-link {
    font-size: 0.55rem;
    letter-spacing: 0.04em;
  }
  .hero__title {
    font-size: 3.55rem;
  }
  .hero__actions .button {
    width: 100%;
  }
  .home-tooltip {
    display: none;
  }
  .feature-image {
    min-height: 22rem;
  }
  .feature-image:after {
    background: linear-gradient(
      180deg,
      transparent,
      hsl(var(--herbal-deep) / 0.86)
    );
  }
}
@media (hover: none), (prefers-reduced-motion: reduce) {
  .cursor-glow {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}
@keyframes breathe {
  0%,
  to {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}
@keyframes float-y {
  0%,
  to {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-22px) rotate(2deg);
  }
}
.float-y {
  animation: float-y 9s ease-in-out infinite;
}
.breathe {
  animation: breathe 7s var(--ease-organic) infinite;
}
.breathe-slow {
  animation: breathe 12s var(--ease-organic) infinite;
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  to {
    background-position: 200% 0;
  }
}
@keyframes marqueeScroll {
  0% {
    transform: translate(0);
  }
  to {
    transform: translate(-50%);
  }
}
@keyframes auroraSpin {
  0% {
    transform: rotate(0) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.15);
  }
  to {
    transform: rotate(360deg) scale(1);
  }
}
@keyframes mandalaSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes loaderLetter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cursorRing {
  0%,
  to {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70%,
  to {
    transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes splitReveal {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}
@keyframes plantWind {
  0%,
  to {
    transform: rotate(-0.5deg);
  }
  50% {
    transform: rotate(1.2deg);
  }
}
@keyframes leafWind {
  0%,
  to {
    rotate: -1deg;
  }
  50% {
    rotate: 4deg;
  }
}
@keyframes particleFloat {
  to {
    transform: translateY(-15vh) rotate(calc(var(--rot, 0deg) + 260deg));
  }
}
.subpage-main {
  padding-top: clamp(7rem, 12vw, 9rem);
  padding-bottom: 4rem;
}
.recipe-hero {
  position: relative;
  padding: 0 clamp(1rem, 4vw, 3rem) clamp(2rem, 6vw, 4rem);
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.recipe-hero .eyebrow {
  color: hsl(var(--t-clay));
  margin-bottom: 1rem;
}
.recipe-hero h1 {
  font-family:
    Cormorant Garamond,
    Georgia,
    serif;
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 1;
  margin: 0 0 1.5rem;
  color: hsl(var(--herbal-deep));
}
.recipe-hero h1 em {
  font-style: italic;
  background: linear-gradient(120deg, hsl(var(--t-gold)), hsl(var(--t-clay)));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.recipe-hero p.lede {
  max-width: 36rem;
  margin: 0 auto;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}
.recipe-cover {
  max-width: 1100px;
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
  padding: 0 clamp(1rem, 4vw, 3rem);
}
.recipe-cover .frame {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 21/9;
  box-shadow: 0 30px 80px -30px hsl(var(--t-herbal) / 0.5);
}
.recipe-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.recipe-cover .frame:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    hsl(var(--herbal-deep) / 0.55)
  );
}
.recipe-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .recipe-body {
    grid-template-columns: 1fr 1.2fr;
  }
}
.recipe-panel {
  background: linear-gradient(
    150deg,
    hsl(var(--card) / 0.9),
    hsl(var(--parchment) / 0.7)
  );
  border: 1px solid hsl(var(--t-border));
  border-radius: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 50px -30px hsl(var(--t-herbal) / 0.3);
}
.recipe-panel h2 {
  font-family:
    Cormorant Garamond,
    Georgia,
    serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin: 0 0 1.25rem;
  color: hsl(var(--t-foreground));
}
.recipe-panel h2 span {
  color: hsl(var(--t-clay));
  font-style: italic;
}
.recipe-panel ul,
.recipe-panel ol {
  padding-left: 1.25rem;
  margin: 0;
  line-height: 1.85;
}
.recipe-panel ul li,
.recipe-panel ol li {
  margin-bottom: 0.55rem;
  color: hsl(var(--t-foreground));
}
.recipe-panel ol li::marker {
  color: hsl(var(--t-clay));
  font-weight: 600;
}
.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin: 1.5rem auto 0;
  max-width: 1100px;
  padding: 0 clamp(1rem, 4vw, 3rem);
  justify-content: center;
}
.recipe-meta div {
  text-align: center;
}
.recipe-meta dt {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: hsl(var(--t-clay));
  margin-bottom: 0.35rem;
}
.recipe-meta dd {
  margin: 0;
  font-family:
    Cormorant Garamond,
    Georgia,
    serif;
  font-size: 1.4rem;
  color: hsl(var(--t-foreground));
}
.recipe-quote {
  max-width: 800px;
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  padding: 0 clamp(1rem, 4vw, 3rem);
  text-align: center;
}
.recipe-quote p {
  font-family:
    Cormorant Garamond,
    Georgia,
    serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.4;
  color: hsl(var(--t-foreground));
}
.recipe-quote span {
  display: block;
  margin-top: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: hsl(var(--t-clay));
}
.recipe-nav-back {
  max-width: 1100px;
  margin: clamp(3rem, 6vw, 4rem) auto 0;
  padding: 0 clamp(1rem, 4vw, 3rem);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.recipe-nav-back a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid hsl(var(--t-border));
  background: hsl(var(--card) / 0.7);
  color: hsl(var(--t-foreground));
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.5s var(--ease-organic);
}
.recipe-nav-back a:hover {
  background: hsl(var(--t-herbal));
  color: hsl(var(--parchment));
  transform: translateY(-2px);
  box-shadow: 0 15px 40px -15px hsl(var(--t-herbal) / 0.55);
}
