/* ============================================================
   DR. KIZA SUNGURA — HERBS VISUALS & ADVANCED ANIMATIONS
   Floating Herbs · Parallax · Storytelling · 2D Animations
   ============================================================ */

/* ══════════════════════════════════════════
   SCROLL PROGRESS BAR
   ══════════════════════════════════════════ */

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--color-emerald), var(--color-copper), var(--color-emerald));
  background-size: 200% 100%;
  animation: progress-shimmer 3s linear infinite;
  z-index: 1001;
  transform-origin: left;
  transform: scaleX(0);
  will-change: transform;
}

@keyframes progress-shimmer {
  0%   { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

/* ══════════════════════════════════════════
   HERO PARALLAX LAYERS
   ══════════════════════════════════════════ */

.hero-parallax-layer {
  position: absolute;
  inset: -15% -5%;
  will-change: transform;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Floating herb images in hero */
.hero-herb-float {
  position: absolute;
  border-radius: var(--radius-xl);
  overflow: hidden;
  will-change: transform;
  z-index: 2;
  pointer-events: none;
}

.hero-herb-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.1) contrast(1.05);
}

.hero-herb-1 {
  width: clamp(140px, 14vw, 220px);
  height: clamp(180px, 18vw, 280px);
  top: 10%;
  right: 6%;
  transform: rotate(6deg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 40px rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  animation: herb-bob-a 7s ease-in-out infinite;
}

.hero-herb-2 {
  width: clamp(110px, 11vw, 180px);
  height: clamp(140px, 14vw, 220px);
  bottom: 18%;
  left: 4%;
  transform: rotate(-5deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(184,115,51,0.12);
  border: 1px solid rgba(184,115,51,0.25);
  animation: herb-bob-b 9s ease-in-out 1.2s infinite;
}

.hero-herb-3 {
  width: clamp(90px, 9vw, 140px);
  height: clamp(110px, 11vw, 180px);
  top: 42%;
  right: 2%;
  transform: rotate(-10deg);
  box-shadow: 0 16px 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(16,185,129,0.15);
  animation: herb-bob-a 8s ease-in-out 2.5s infinite;
}

@keyframes herb-bob-a {
  0%, 100% { transform: rotate(6deg) translateY(0px); }
  50%       { transform: rotate(6deg) translateY(-14px); }
}

@keyframes herb-bob-b {
  0%, 100% { transform: rotate(-5deg) translateY(0px); }
  50%       { transform: rotate(-5deg) translateY(-18px); }
}

@media (max-width: 1023px) {
  .hero-herb-1,
  .hero-herb-2,
  .hero-herb-3 { display: none; }
}

/* ══════════════════════════════════════════
   FLOATING LEAF PARTICLES
   ══════════════════════════════════════════ */

.leaf-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.leaf-particle {
  position: absolute;
  bottom: -80px;
  color: var(--color-emerald);
  opacity: 0;
  filter: blur(0.5px);
}

@keyframes leaf-rise-1 {
  0%    { transform: translate(0,  0)    rotate(0deg)   scale(0.6); opacity: 0; }
  8%    { opacity: 0.18; }
  85%   { opacity: 0.07; }
  100%  { transform: translate(25px, -110vh) rotate(200deg) scale(0.9); opacity: 0; }
}
@keyframes leaf-rise-2 {
  0%    { transform: translate(0,  0)    rotate(45deg)  scale(0.8); opacity: 0; }
  8%    { opacity: 0.14; }
  85%   { opacity: 0.05; }
  100%  { transform: translate(-35px, -110vh) rotate(-100deg) scale(1.1); opacity: 0; }
}
@keyframes leaf-rise-3 {
  0%    { transform: translate(0,  0)    rotate(-20deg) scale(0.5); opacity: 0; }
  8%    { opacity: 0.20; }
  85%   { opacity: 0.09; }
  100%  { transform: translate(15px, -110vh) rotate(300deg) scale(0.7); opacity: 0; }
}

.leaf-particle:nth-child(1)  { left: 4%;   animation: leaf-rise-1 14s ease-in-out 0s    infinite; }
.leaf-particle:nth-child(2)  { left: 12%;  animation: leaf-rise-2 17s ease-in-out 2.5s  infinite; }
.leaf-particle:nth-child(3)  { left: 22%;  animation: leaf-rise-3 13s ease-in-out 5s    infinite; }
.leaf-particle:nth-child(4)  { left: 33%;  animation: leaf-rise-1 16s ease-in-out 1.5s  infinite; }
.leaf-particle:nth-child(5)  { left: 44%;  animation: leaf-rise-2 15s ease-in-out 3.5s  infinite; }
.leaf-particle:nth-child(6)  { left: 55%;  animation: leaf-rise-3 18s ease-in-out 6.5s  infinite; }
.leaf-particle:nth-child(7)  { left: 65%;  animation: leaf-rise-1 13s ease-in-out 8s    infinite; }
.leaf-particle:nth-child(8)  { left: 74%;  animation: leaf-rise-2 16s ease-in-out 7s    infinite; }
.leaf-particle:nth-child(9)  { left: 83%;  animation: leaf-rise-3 14s ease-in-out 10s   infinite; }
.leaf-particle:nth-child(10) { left: 91%;  animation: leaf-rise-1 17s ease-in-out 11s   infinite; }

/* ══════════════════════════════════════════
   GLOW ORBS
   ══════════════════════════════════════════ */

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform, opacity;
}

.glow-orb--emerald {
  background: radial-gradient(circle, rgba(16,185,129,0.22) 0%, transparent 70%);
  animation: orb-float-a 8s ease-in-out infinite;
}

.glow-orb--copper {
  background: radial-gradient(circle, rgba(184,115,51,0.18) 0%, transparent 70%);
  animation: orb-float-b 11s ease-in-out 2s infinite;
}

@keyframes orb-float-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(40px, -30px) scale(1.2); }
}

@keyframes orb-float-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-50px, 20px) scale(1.15); }
  66%       { transform: translate(30px, 40px) scale(0.9); }
}

/* ══════════════════════════════════════════
   HERB TICKER — SCROLLING MARQUEE
   ══════════════════════════════════════════ */

.herb-ticker {
  overflow: hidden;
  padding-block: var(--space-5);
  background: var(--color-black-2);
  border-top:    1px solid rgba(16,185,129,0.12);
  border-bottom: 1px solid rgba(16,185,129,0.12);
  position: relative;
  z-index: 1;
}

.herb-ticker::before,
.herb-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.herb-ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-black-2), transparent);
}

.herb-ticker::after {
  right: 0;
  background: linear-gradient(-90deg, var(--color-black-2), transparent);
}

.herb-ticker__track {
  display: flex;
  gap: var(--space-12);
  width: max-content;
  animation: ticker-run 28s linear infinite;
}

.herb-ticker__track:hover {
  animation-play-state: paused;
}

@keyframes ticker-run {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.herb-ticker__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  white-space: nowrap;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wide);
}

.herb-ticker__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-emerald);
  flex-shrink: 0;
  opacity: 0.7;
}

.herb-ticker__name {
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-style: italic;
}

/* ══════════════════════════════════════════
   HERBS SHOWCASE GRID
   ══════════════════════════════════════════ */

.herbs-showcase {
  position: relative;
  overflow: hidden;
}

.herbs-showcase::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-emerald) 50%, transparent 100%);
}

.herbs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-6);
}

/* Herb Card */
.herb-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-black-3);
  border: 1px solid rgba(255,255,255,0.06);
  cursor: default;
  transition:
    transform        var(--duration-slow) var(--ease-out-expo),
    box-shadow       var(--duration-slow) var(--ease-out-expo),
    border-color     var(--duration-slow) var(--ease-out-expo);
}

.herb-card:hover,
.herb-card:focus-within {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(16,185,129,0.3);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 40px rgba(16,185,129,0.08);
}

.herb-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-black-4);
}

.herb-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    var(--color-black-3) 0%,
    rgba(26,26,26,0.3) 40%,
    transparent 100%);
  transition: opacity var(--duration-slow) var(--ease-out-expo);
}

.herb-card:hover .herb-card__img-wrap::after {
  opacity: 0.6;
}

.herb-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--duration-slower) var(--ease-out-expo);
  filter: saturate(1.15);
}

.herb-card:hover .herb-card__img {
  transform: scale(1.1);
}

.herb-card__body {
  padding: var(--space-5) var(--space-6) var(--space-6);
}

.herb-card__emoji {
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
  display: block;
}

.herb-card__name-sw {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  color: var(--color-text);
}

.herb-card__name-en {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-emerald);
  margin: var(--space-1) 0 var(--space-3);
  display: block;
}

.herb-card__benefit {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-loose);
  margin: 0;
}

.herb-card__tag {
  display: inline-block;
  margin-top: var(--space-4);
  padding: var(--space-1) var(--space-3);
  background: var(--color-emerald-muted);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  color: var(--color-emerald);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   STORY / VISUAL STORYTELLING SECTION
   ══════════════════════════════════════════ */

.story-section {
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}

/* Atmospheric glow behind story */
.story-section::before {
  content: '';
  position: absolute;
  bottom: 0; right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse at 80% 80%,
    rgba(16,185,129,0.06) 0%,
    transparent 70%);
  pointer-events: none;
}

.story-container {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.story-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
  padding-block: var(--space-20);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.story-item:last-child {
  border-bottom: none;
}

@media (min-width: 768px) {
  .story-item { grid-template-columns: 1fr 1fr; gap: var(--space-16); }
  .story-item--flip .story-item__visual { order: 2; }
  .story-item--flip .story-item__text   { order: 1; }
}

/* Visual column — clip-path reveal */
.story-item__visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  will-change: clip-path;
}

/* Override default [data-reveal] for visual columns — use clip-path wipe */
.story-item__visual[data-reveal="left"] {
  opacity: 1 !important;
  transform: none !important;
  clip-path: inset(0 100% 0 0 round 24px);
  transition: clip-path 1s var(--ease-out-expo) !important;
}

.story-item__visual[data-reveal="right"] {
  opacity: 1 !important;
  transform: none !important;
  clip-path: inset(0 0 0 100% round 24px);
  transition: clip-path 1s var(--ease-out-expo) !important;
}

.story-item__visual[data-reveal="left"].is-visible,
.story-item__visual[data-reveal="right"].is-visible {
  clip-path: inset(0 0 0 0 round 24px) !important;
}

.story-item__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform var(--duration-slower) var(--ease-out-expo);
  filter: saturate(1.1) contrast(1.05);
}

.story-item__visual:hover .story-item__img {
  transform: scale(1.04);
}

/* Badge overlay on visual */
.story-badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.story-badge__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-emerald);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

.story-badge__label {
  font-size: var(--text-xs);
  color: var(--color-text);
  letter-spacing: var(--tracking-wide);
}

/* Text column */
.story-num {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 700;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(16,185,129,0.18);
  display: block;
  margin-bottom: var(--space-4);
  transition: -webkit-text-stroke-color 0.6s ease;
}

.story-item:hover .story-num {
  -webkit-text-stroke-color: rgba(16,185,129,0.45);
}

.story-eyebrow {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: var(--space-3);
  display: block;
}

.story-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  margin: 0 0 var(--space-5);
  line-height: var(--leading-snug);
}

.story-body {
  color: var(--color-text-muted);
  line-height: var(--leading-loose);
  margin: 0 0 var(--space-6);
  font-size: var(--text-base);
}

.story-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.story-detail-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.story-detail-list li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--color-emerald);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   NATURE'S PHARMACY FEATURE BLOCK
   ══════════════════════════════════════════ */

.pharmacy-hero {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-16);
  min-height: 400px;
  display: flex;
  align-items: flex-end;
}

.pharmacy-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.1);
  transition: transform 0.8s var(--ease-out-expo);
}

.pharmacy-hero:hover .pharmacy-hero__img {
  transform: scale(1.04);
}

.pharmacy-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(8,8,8,0.92) 0%,
    rgba(8,8,8,0.4) 60%,
    rgba(8,8,8,0.1) 100%);
}

.pharmacy-hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-12) var(--space-10);
}

.pharmacy-hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  margin: var(--space-3) 0 var(--space-4);
  color: var(--color-text);
}

.pharmacy-hero__sub {
  color: var(--color-text-muted);
  max-width: 48ch;
  line-height: var(--leading-loose);
}

/* ══════════════════════════════════════════
   ANIMATED SVG BOTANICAL DECORATIONS
   ══════════════════════════════════════════ */

.botanical-bg {
  position: absolute;
  pointer-events: none;
  overflow: visible;
  opacity: 0.035;
}

.botanical-bg--tl { top: -5%; left: -3%;  animation: botanical-sway-l 18s ease-in-out infinite; }
.botanical-bg--br { bottom: -5%; right: -3%; animation: botanical-sway-r 22s ease-in-out 4s infinite; }

@keyframes botanical-sway-l {
  0%, 100% { transform: rotate(0deg)   scale(1);    opacity: 0.035; }
  33%       { transform: rotate(5deg)  scale(1.05); opacity: 0.05;  }
  66%       { transform: rotate(-3deg) scale(0.98); opacity: 0.028; }
}

@keyframes botanical-sway-r {
  0%, 100% { transform: rotate(0deg)   scale(1) scaleX(-1);    opacity: 0.035; }
  33%       { transform: rotate(-6deg) scale(1.04) scaleX(-1); opacity: 0.048; }
  66%       { transform: rotate(4deg)  scale(0.97) scaleX(-1); opacity: 0.027; }
}

/* ══════════════════════════════════════════
   GRADIENT BORDER CARDS — ENHANCED
   ══════════════════════════════════════════ */

.gradient-border-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--color-black-3);
  padding: 1px; /* for the gradient border */
}

.gradient-border-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(16,185,129,0.3),
    rgba(184,115,51,0.15),
    rgba(16,185,129,0.05));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: opacity var(--duration-slow) var(--ease-out-expo);
}

.gradient-border-card:hover::before {
  background: linear-gradient(135deg,
    rgba(16,185,129,0.6),
    rgba(184,115,51,0.35),
    rgba(16,185,129,0.15));
}

/* ══════════════════════════════════════════
   TEXT REVEAL — CHAR BY CHAR
   ══════════════════════════════════════════ */

.text-reveal {
  overflow: hidden;
  display: block;
}

.text-reveal__inner {
  display: block;
  transform: translateY(100%);
  transition: transform var(--duration-slower) var(--ease-out-expo);
}

.is-visible .text-reveal__inner {
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   PARALLAX IMAGE FRAME
   ══════════════════════════════════════════ */

.parallax-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.parallax-frame__img {
  width: 100%;
  will-change: transform;
  display: block;
  object-fit: cover;
  transform: scale(1.15);
  transition: transform 0.1s linear;
}

/* ══════════════════════════════════════════
   HERB STAT CARDS — ENHANCED WITH IMAGE BG
   ══════════════════════════════════════════ */

.herb-stat {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-black-3);
  border: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-8);
  text-align: center;
  transition: transform var(--duration-slow) var(--ease-out-expo),
              border-color var(--duration-slow);
}

.herb-stat:hover {
  transform: translateY(-6px);
  border-color: rgba(16,185,129,0.3);
}

.herb-stat__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.07;
  transition: opacity var(--duration-slow) var(--ease-out-expo);
  filter: saturate(0.5);
}

.herb-stat:hover .herb-stat__bg {
  opacity: 0.14;
}

.herb-stat__number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-emerald);
  display: block;
  margin-bottom: var(--space-2);
  position: relative;
  z-index: 1;
}

.herb-stat__label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  margin: 0;
}

/* ══════════════════════════════════════════
   ENHANCED SECTION — bg fade lines
   ══════════════════════════════════════════ */

.section-fade-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-copper), transparent);
  margin: var(--space-4) auto 0;
  display: block;
}

/* ══════════════════════════════════════════
   IMAGE HOVER — SHINE SWEEP EFFECT
   ══════════════════════════════════════════ */

.img-shine {
  position: relative;
  overflow: hidden;
}

.img-shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.06) 50%,
    transparent 100%
  );
  transform: skewX(-15deg);
  transition: left 0.7s var(--ease-out-expo);
  z-index: 2;
  pointer-events: none;
}

.img-shine:hover::before {
  left: 130%;
}

/* ══════════════════════════════════════════
   STORY SECTION — ENHANCED BACKGROUND
   ══════════════════════════════════════════ */

/* Dot grid overlay */
.story-bg-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(16,185,129,0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  z-index: 0;
}

/* Extra atmospheric orbs */
.story-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.story-orb--tl {
  width: 500px; height: 500px;
  top: -10%; left: -10%;
  background: radial-gradient(circle, rgba(16,185,129,0.09) 0%, transparent 70%);
  animation: orb-float-a 14s ease-in-out infinite;
}

.story-orb--cr {
  width: 420px; height: 420px;
  top: 40%; right: -8%;
  background: radial-gradient(circle, rgba(184,115,51,0.07) 0%, transparent 70%);
  animation: orb-float-b 18s ease-in-out 3s infinite;
}

.story-orb--bl {
  width: 360px; height: 360px;
  bottom: -5%; left: 15%;
  background: radial-gradient(circle, rgba(16,185,129,0.06) 0%, transparent 70%);
  animation: orb-float-a 12s ease-in-out 6s infinite;
}

/* Animated scan-light across section */
@keyframes scan-line {
  0%   { transform: translateY(-60px); opacity: 0; }
  4%   { opacity: 1; }
  96%  { opacity: 0.3; }
  100% { transform: translateY(2200px); opacity: 0; }
}

.story-scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  top: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(16,185,129,0.5) 30%,
    rgba(184,115,51,0.7) 50%,
    rgba(16,185,129,0.5) 70%,
    transparent 100%);
  animation: scan-line 14s ease-in-out 1.5s infinite;
  pointer-events: none;
  z-index: 0;
}

/* Story container above decorative layers */
.story-section > .story-container {
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════
   SERVICES SECTION — PARALLAX BACKGROUND
   ══════════════════════════════════════════ */

.services-parallax {
  position: relative;
  overflow: hidden;
}

.services-parallax-bg {
  position: absolute;
  inset: -25% 0;
  background-image: url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?w=1600&auto=format&q=60&fit=crop');
  background-size: cover;
  background-position: center;
  will-change: transform;
  filter: saturate(0.25) brightness(0.18);
  pointer-events: none;
  z-index: 0;
}

.services-parallax-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(16,185,129,0.06) 0%, transparent 100%),
    linear-gradient(180deg, var(--color-black-2) 0%, rgba(12,12,12,0.82) 50%, var(--color-black-2) 100%);
  pointer-events: none;
  z-index: 0;
}

.services-parallax::before,
.services-parallax::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  pointer-events: none;
  z-index: 1;
}
.services-parallax::before {
  top: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(16,185,129,0.25) 50%, transparent 100%);
}
.services-parallax::after {
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(184,115,51,0.2) 50%, transparent 100%);
}

.services-parallax > .container {
  position: relative;
  z-index: 2;
}

/* ══════════════════════════════════════════
   PROCESS SECTION — VISUAL ENHANCEMENTS
   ══════════════════════════════════════════ */

.process-section {
  position: relative;
  overflow: hidden;
}

/* Copper dot-grid bg */
.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(184,115,51,0.09) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* Center glow */
.process-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse,
    rgba(16,185,129,0.05) 0%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.process-section > .container {
  position: relative;
  z-index: 1;
}

/* Step icon pulse */
.step-item__number {
  animation: step-icon-pulse 3s ease-in-out infinite;
}

.step-item:nth-child(2) .step-item__number {
  animation-delay: 1s;
  background: var(--color-emerald-muted) !important;
  border-color: rgba(16,185,129,0.4) !important;
}

.step-item:nth-child(2) .step-item__icon {
  color: var(--color-emerald) !important;
}

.step-item:nth-child(3) .step-item__number {
  animation-delay: 2s;
}

@keyframes step-icon-pulse {
  0%, 100% { box-shadow: 0 0 0  0   rgba(16,185,129,0.25),
                          0 0 0  0   rgba(16,185,129,0); }
  50%       { box-shadow: 0 0 0  8px rgba(16,185,129,0.12),
                          0 0 0 18px rgba(16,185,129,0); }
}

/* Step count badge */
.step-item__number::after {
  content: attr(data-step);
  position: absolute;
  top: -10px;
  right: -10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-emerald);
  color: var(--color-black);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Connecting shimmer line between steps */
.steps-grid {
  position: relative;
}

.steps-grid::before {
  content: '';
  display: none;
  position: absolute;
  top: 32px;
  left: calc(16.67% + 32px);
  right: calc(16.67% + 32px);
  height: 1px;
  background: linear-gradient(90deg,
    var(--color-copper),
    var(--color-emerald),
    var(--color-copper));
  background-size: 200% 100%;
  animation: progress-shimmer 4s linear infinite;
  z-index: 0;
}

@media (min-width: 640px) {
  .steps-grid::before { display: block; }
}

.step-item {
  position: relative;
  z-index: 1;
}

/* Copper line under step title */
.step-item__title::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-copper);
  border-radius: 1px;
  margin: var(--space-2) auto 0;
  transition: width var(--duration-slow) var(--ease-out-expo);
}

.step-item:hover .step-item__title::after {
  width: 60px;
}

/* Faint image watermark panel */
.process-img-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 35%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.055;
}

.process-img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0) contrast(1.2);
}

@media (max-width: 767px) {
  .process-img-panel { display: none; }
}

/* ══════════════════════════════════════════
   STORY SECTION — REAL IMAGE BACKGROUND
   ══════════════════════════════════════════ */

/* Full image underlay for the story section */
.story-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.story-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.15) brightness(0.12);
  transform: scale(1.06);
}

/* Edge vignette + top/bottom fade */
.story-bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      var(--color-black) 0%,
      rgba(8,8,8,0.25) 12%,
      rgba(8,8,8,0.25) 88%,
      var(--color-black) 100%),
    linear-gradient(90deg,
      rgba(8,8,8,0.5) 0%,
      transparent 20%,
      transparent 80%,
      rgba(8,8,8,0.5) 100%);
}

/* ══════════════════════════════════════════
   SERVICE CARDS V2 — FULL IMAGE REDESIGN
   ══════════════════════════════════════════ */

.services-v2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 580px) {
  .services-v2-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-v2-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card-v2 {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: default;
  transition:
    transform    var(--duration-slow) var(--ease-out-expo),
    box-shadow   var(--duration-slow) var(--ease-out-expo),
    border-color var(--duration-slow) var(--ease-out-expo);
}

.service-card-v2:hover,
.service-card-v2:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.65),
              0 0 40px rgba(16,185,129,0.08);
  border-color: rgba(16,185,129,0.28);
}

/* Background image */
.service-card-v2__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform var(--duration-slower) var(--ease-out-expo),
    filter    var(--duration-slow)   var(--ease-out-expo);
  filter: saturate(0.85) brightness(0.65);
}

.service-card-v2:hover .service-card-v2__bg {
  transform: scale(1.08);
  filter: saturate(1.1) brightness(0.72);
}

/* Gradient overlay — content readable */
.service-card-v2__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(8,8,8,0.97)  0%,
    rgba(8,8,8,0.65)  45%,
    rgba(8,8,8,0.18)  100%);
  transition: background var(--duration-slow) var(--ease-out-expo);
}

.service-card-v2:hover .service-card-v2__overlay {
  background: linear-gradient(to top,
    rgba(8,8,8,0.99)  0%,
    rgba(8,8,8,0.72)  45%,
    rgba(8,8,8,0.28)  100%);
}

/* Content area */
.service-card-v2__content {
  position: relative;
  z-index: 2;
  padding: var(--space-6) var(--space-6) var(--space-7);
}

/* Icon circle */
.service-card-v2__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-emerald);
  margin-bottom: var(--space-4);
  transition:
    background   var(--duration-slow) var(--ease-out-expo),
    border-color var(--duration-slow) var(--ease-out-expo),
    transform    var(--duration-slow) var(--ease-out-expo);
}

.service-card-v2:hover .service-card-v2__icon {
  background: rgba(16,185,129,0.22);
  border-color: rgba(16,185,129,0.65);
  transform: scale(1.12);
}

.service-card-v2__icon svg {
  width: 20px;
  height: 20px;
}

/* Herb name — hidden, appears on hover */
.service-card-v2__herb {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-emerald);
  margin-bottom: var(--space-2);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity   var(--duration-slow) var(--ease-out-expo),
    transform var(--duration-slow) var(--ease-out-expo);
}

.service-card-v2:hover .service-card-v2__herb {
  opacity: 1;
  transform: translateY(0);
}

.service-card-v2__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 var(--space-3);
  line-height: var(--leading-snug);
}

/* Description — slides up on hover */
.service-card-v2__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: var(--leading-loose);
  margin: 0 0 var(--space-5);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height var(--duration-slow) var(--ease-out-expo),
    opacity    var(--duration-slow) var(--ease-out-expo);
}

.service-card-v2:hover .service-card-v2__desc {
  max-height: 80px;
  opacity: 1;
}

/* CTA pill */
.service-card-v2__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  padding: var(--space-2) var(--space-4);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background   var(--duration-slow) var(--ease-out-expo),
    border-color var(--duration-slow) var(--ease-out-expo),
    color        var(--duration-fast) ease;
}

.service-card-v2:hover .service-card-v2__link {
  background: var(--color-emerald);
  border-color: var(--color-emerald);
  color: var(--color-black);
}

/* ══════════════════════════════════════════
   PROCESS SECTION V2 — CINEMATIC STEP CARDS
   ══════════════════════════════════════════ */

.process-steps-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .process-steps-v2 { grid-template-columns: repeat(3, 1fr); }
}

.process-step-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: default;
  transition:
    transform    var(--duration-slow) var(--ease-out-expo),
    box-shadow   var(--duration-slow) var(--ease-out-expo),
    border-color var(--duration-slow) var(--ease-out-expo);
}

.process-step-card:hover,
.process-step-card:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.65),
              0 0 40px rgba(184,115,51,0.1);
  border-color: rgba(184,115,51,0.32);
}

/* Background image */
.process-step-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform var(--duration-slower) var(--ease-out-expo),
    filter    var(--duration-slow)   var(--ease-out-expo);
  filter: saturate(0.25) brightness(0.28);
}

.process-step-card:hover .process-step-card__bg {
  transform: scale(1.07);
  filter: saturate(0.45) brightness(0.38);
}

/* Dark overlay */
.process-step-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(8,8,8,0.4) 0%,
    rgba(8,8,8,0.92) 80%);
}

/* Large ghost step number — top-right */
.process-step-card__num {
  position: absolute;
  top: var(--space-5);
  right: var(--space-6);
  font-family: var(--font-display);
  font-size: clamp(5rem, 11vw, 8rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.07);
  line-height: 1;
  z-index: 2;
  user-select: none;
  transition: -webkit-text-stroke-color var(--duration-slow) var(--ease-out-expo);
}

.process-step-card:hover .process-step-card__num {
  -webkit-text-stroke-color: rgba(184,115,51,0.5);
}

/* Content */
.process-step-card__content {
  position: relative;
  z-index: 3;
  padding: var(--space-8);
}

/* Icon circle — copper themed */
.process-step-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(184,115,51,0.12);
  border: 1px solid rgba(184,115,51,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-copper);
  margin-bottom: var(--space-5);
  flex-shrink: 0;
  transition:
    background   var(--duration-slow) var(--ease-out-expo),
    border-color var(--duration-slow) var(--ease-out-expo),
    transform    var(--duration-slow) var(--ease-out-expo);
  animation: step-icon-pulse 3.5s ease-in-out infinite;
}

.process-step-card:nth-child(2) .process-step-card__icon {
  animation-delay: 1.2s;
}
.process-step-card:nth-child(3) .process-step-card__icon {
  animation-delay: 2.4s;
}

.process-step-card:hover .process-step-card__icon {
  background: rgba(184,115,51,0.25);
  border-color: rgba(184,115,51,0.7);
  transform: scale(1.12);
  animation: none;
}

.process-step-card__icon svg {
  width: 26px;
  height: 26px;
}

/* Step label tag */
.process-step-card__tag {
  display: inline-block;
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: var(--space-3);
}

.process-step-card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 var(--space-4);
  line-height: var(--leading-snug);
}

.process-step-card__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: var(--leading-loose);
  margin: 0 0 var(--space-6);
}

/* CTA pill — copper themed */
.process-step-card__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  padding: var(--space-2) var(--space-5);
  border: 1px solid rgba(184,115,51,0.3);
  border-radius: var(--radius-pill);
  background: rgba(184,115,51,0.08);
  backdrop-filter: blur(8px);
  transition:
    background   var(--duration-slow) var(--ease-out-expo),
    border-color var(--duration-slow) var(--ease-out-expo),
    color        var(--duration-fast) ease;
}

.process-step-card:hover .process-step-card__cta {
  background: var(--color-copper);
  border-color: var(--color-copper);
  color: var(--color-black);
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE OVERRIDES
   ══════════════════════════════════════════ */

/* Story section: tighter padding on mobile */
@media (max-width: 639px) {
  .story-item {
    padding-block: var(--space-12);
    gap: var(--space-8);
  }

  .story-container {
    padding-inline: var(--space-4);
  }
}

/* Process step cards: shorter on small phones */
@media (max-width: 479px) {
  .process-step-card {
    min-height: 280px;
  }

  .process-step-card__num {
    font-size: 4rem;
  }
}

/* Service cards: reduce height on very small screens */
@media (max-width: 374px) {
  .service-card-v2 {
    min-height: 260px;
  }
}

/* Herb ticker: reduce gap on mobile */
@media (max-width: 639px) {
  .herb-ticker__item {
    gap: var(--space-4);
  }
}

/* ══════════════════════════════════════════
   REDUCED MOTION — DISABLE ALL
   ══════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  .leaf-particle,
  .glow-orb,
  .botanical-bg--tl,
  .botanical-bg--br,
  .scroll-progress,
  .hero-herb-1,
  .hero-herb-2,
  .hero-herb-3,
  .herb-ticker__track,
  .story-scan-line,
  .story-orb,
  .step-item__number {
    animation: none !important;
    transition: none !important;
  }

  .story-item__visual[data-reveal="left"],
  .story-item__visual[data-reveal="right"] {
    clip-path: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
