/* ==========================================================================
   The Shake & Tea Life — 10X Luxury Wellness Editorial
   Typography: Cormorant Garamond (display) + Outfit (body)
   Palette: Herbalife forest green + warm cream + gold accent
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,700&family=Outfit:wght@200;300;400;500;600;700;800&display=swap');

/* ── TOKENS ── */
:root {
  --green: #1d5a2b;
  --green-rich: #237a36;
  --green-deep: #0f3318;
  --green-glow: #3cb043;
  --green-pale: #e4f2e7;
  --green-mist: #f0f7f1;

  --cream: #faf8f4;
  --cream-dark: #f0ece4;
  --ivory: #fffdf8;

  --gold: #c49a3c;
  --gold-light: #f5e6c4;
  --gold-glow: #d4aa4f;

  --ink: #141e17;
  --ink-soft: #3a4a3f;
  --ink-muted: #6b7c70;
  --ink-faint: #9aaa9f;

  --white: #ffffff;
  --border: rgba(29, 90, 43, 0.1);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --max-w: 1200px;
  --max-narrow: 760px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);

  --radius: 16px;
  --radius-sm: 8px;
  --radius-xl: 28px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green-rich); }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.container--narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 var(--pad);
}


/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
}

h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink);
}

.overline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.overline::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 0.3em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 520px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}


/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1.5px solid transparent;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.35s;
}

.btn:hover::after { opacity: 1; }
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(29, 90, 43, 0.25);
}

.btn--primary:hover {
  background: var(--green-deep);
  box-shadow: 0 8px 30px rgba(29, 90, 43, 0.35);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196, 154, 60, 0.3);
}

.btn--gold:hover {
  background: #b38a30;
  box-shadow: 0 8px 30px rgba(196, 154, 60, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

.btn--outline:hover {
  background: var(--green);
  color: var(--white);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn--outline-white:hover {
  background: var(--white);
  color: var(--green-deep);
  border-color: var(--white);
}

.btn--sm { padding: 12px 28px; font-size: 0.72rem; }
.btn--lg { padding: 20px 44px; font-size: 0.85rem; }

.btn__arrow {
  transition: transform 0.35s var(--ease-spring);
}

.btn:hover .btn__arrow { transform: translateX(4px); }


/* ═══════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.4s var(--ease-out);
}

.site-header__bg {
  position: absolute;
  inset: 0;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transition: opacity 0.4s;
}

.site-header.is-scrolled .site-header__bg {
  opacity: 1;
}

.site-header__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-header__logo img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo__text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  font-style: italic;
  color: var(--green-deep);
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav__link {
  padding: 8px 18px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 40px;
  transition: all 0.25s;
  text-decoration: none;
}

/* White nav text on dark hero pages — reverts when scrolled */
.site-header--dark .site-nav__link { color: rgba(255, 255, 255, 0.8); }
.site-header--dark .site-nav__link:hover { color: #fff; background: rgba(255, 255, 255, 0.1); }
.site-header--dark .site-nav__link.is-active { color: #fff; background: rgba(255, 255, 255, 0.15); }
.site-header--dark .logo__text { color: #fff; }
.site-header--dark .nav-toggle__bar { background: #fff; }

/* When scrolled, glassmorphism bg kicks in — revert to normal colors */
.site-header--dark.is-scrolled .site-nav__link { color: var(--ink-soft); }
.site-header--dark.is-scrolled .site-nav__link:hover { color: var(--green); background: var(--green-pale); }
.site-header--dark.is-scrolled .site-nav__link.is-active { color: var(--green); background: var(--green-pale); }
.site-header--dark.is-scrolled .logo__text { color: var(--green-deep); }
.site-header--dark.is-scrolled .nav-toggle__bar { background: var(--ink); }

.site-nav__link:hover { color: var(--green); background: var(--green-pale); }

.site-nav__link.is-active {
  color: var(--green);
  background: var(--green-pale);
  font-weight: 600;
}

.site-nav__link--cta {
  background: var(--green) !important;
  color: var(--white) !important;
  font-weight: 600;
  margin-left: 8px;
}

.site-nav__link--cta:hover {
  background: var(--green-deep) !important;
}


/* Mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
  z-index: 110;
}

.nav-toggle__bar {
  width: 26px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: #fff; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }


/* ═══════════════════════════════════════════════
   HERO — cinematic, editorial
   ═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(165deg, var(--cream) 0%, var(--green-mist) 40%, var(--green-pale) 100%);
  overflow: hidden;
  padding-top: 80px;
}

/* Subtle texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/Shake%20and%20Tea%20Drink%20Background-01.png');
  background-size: 800px;
  background-repeat: repeat;
  background-attachment: fixed;
  opacity: 0.055;
  pointer-events: none;
}

/* Glow orb */
.hero::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(60, 176, 67, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem) var(--pad);
}

.hero__content {
  max-width: 540px;
}

.hero__overline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.2s var(--ease-out) forwards;
}

.hero__overline::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.hero__title {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 0.4em;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.35s var(--ease-out) forwards;
}

.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--green);
}

.hero__title strong {
  font-weight: 700;
  display: block;
  font-size: 0.65em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: var(--ink-soft);
  margin-top: 0.3em;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 420px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.5s var(--ease-out) forwards;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.65s var(--ease-out) forwards;
}

/* Hero image — editorial floating treatment */
.hero__image-wrap {
  position: relative;
  opacity: 0;
  animation: fadeScaleIn 1s 0.3s var(--ease-out) forwards;
}

.hero__image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(15, 51, 24, 0.15),
    0 8px 24px rgba(15, 51, 24, 0.08);
}

.hero__image-frame img,
.hero__image-frame video {
  width: 100%;
  display: block;
}

/* Decorative accent behind image */
.hero__image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  opacity: 0.4;
  z-index: -1;
}

.hero__image-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: var(--green);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(29, 90, 43, 0.3);
}


/* ═══════════════════════════════════════════════
   SERVICES — Immersive Image Cards
   ═══════════════════════════════════════════════ */
.services {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--white);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

/* Immersive card — image IS the card */
.service-card--immersive {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: var(--white);
  border: none;
  background: none;
}

.service-card--immersive:hover {
  text-decoration: none;
  color: var(--white);
  transform: none;
  box-shadow: 0 20px 60px rgba(15, 51, 24, 0.2);
}

/* Full-bleed background image */
.service-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.service-card--immersive:hover .service-card__bg {
  transform: scale(1.06);
}

/* Gradient scrim */
.service-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 30, 16, 0.92) 0%,
    rgba(10, 30, 16, 0.6) 40%,
    rgba(10, 30, 16, 0.15) 70%,
    transparent 100%
  );
  z-index: 1;
  transition: opacity 0.5s;
}

.service-card--immersive:hover .service-card__scrim {
  background: linear-gradient(
    to top,
    rgba(10, 30, 16, 0.95) 0%,
    rgba(10, 30, 16, 0.65) 45%,
    rgba(10, 30, 16, 0.2) 75%,
    transparent 100%
  );
}

/* Content overlay */
.service-card__overlay {
  position: relative;
  z-index: 2;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  width: 100%;
}

.service-card__badge {
  display: inline-block;
  padding: 4px 14px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--gold);
  border-radius: 30px;
  margin-bottom: 1rem;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.service-card__text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin-bottom: 1.2rem;
  max-width: 340px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s var(--ease-spring);
}

.service-card--immersive:hover .service-card__link {
  gap: 10px;
}

.service-card__link svg {
  transition: transform 0.3s var(--ease-spring);
}

.service-card--immersive:hover .service-card__link svg {
  transform: translateX(3px);
}


/* ═══════════════════════════════════════════════
   TESTIMONIALS — editorial quote style
   ═══════════════════════════════════════════════ */
.testimonials {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--green-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/Shake%20and%20Tea%20Drink%20Background-01.png');
  background-size: 700px;
  background-attachment: fixed;
  opacity: 0.055;
  filter: invert(1);
  pointer-events: none;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 1;
}

.testimonial {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.testimonial:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.testimonial__quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
  position: absolute;
  top: 16px;
  left: 20px;
}

.testimonial__text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial__name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}


/* ═══════════════════════════════════════════════
   HOME BLOG — 3 Recent Articles
   ═══════════════════════════════════════════════ */
.home-blog {
  padding: clamp(5rem, 10vw, 7rem) 0;
  background: var(--cream);
  position: relative;
}

.home-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.home-blog__card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--ink-soft);
  transition: all 0.45s var(--ease-out);
  position: relative;
}

.home-blog__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 51, 24, 0.09);
  text-decoration: none;
  color: var(--ink-soft);
}

/* Date banner */
.home-blog__date {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
  padding: 1.2rem 1.5rem;
  position: relative;
}

.home-blog__date::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green-rich), var(--gold));
}

.home-blog__day {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

/* Card body */
.home-blog__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.home-blog__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 0.8rem;
}

.home-blog__tag {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(196, 154, 60, 0.08);
  padding: 3px 9px;
  border-radius: 20px;
}

.home-blog__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 0.6rem;
  transition: color 0.25s;
}

.home-blog__card:hover .home-blog__title {
  color: var(--green);
}

.home-blog__excerpt {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: auto;
  padding-bottom: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-blog__read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  transition: gap 0.3s var(--ease-spring);
}

.home-blog__card:hover .home-blog__read {
  gap: 10px;
}

.home-blog__card:hover .home-blog__read svg {
  transform: translateX(3px);
}

.home-blog__read svg {
  transition: transform 0.3s var(--ease-spring);
}

@media (max-width: 1024px) {
  .home-blog__grid { grid-template-columns: repeat(2, 1fr); }
  .home-blog__grid .home-blog__card:last-child { display: none; }
}

@media (max-width: 768px) {
  .home-blog__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .home-blog__grid .home-blog__card:last-child { display: flex; }
}


/* ═══════════════════════════════════════════════
   CTA BANNER — Cinematic 3-Column
   ═══════════════════════════════════════════════ */
.cta-banner {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/Shake%20and%20Tea%20Drink%20Background-01.png');
  background-size: 700px;
  background-attachment: fixed;
  opacity: 0.06;
  filter: invert(1);
}

/* Ambient glow orbs */
.cta-banner__glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  z-index: 0;
}

.cta-banner__glow--left {
  top: -20%;
  left: -5%;
  background: rgba(196, 154, 60, 0.12);
}

.cta-banner__glow--right {
  bottom: -30%;
  right: -5%;
  background: rgba(60, 176, 67, 0.1);
}

/* Shimmer sweep animation */
.cta-banner__shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.03) 50%, transparent 60%);
  z-index: 1;
  animation: shimmerSweep 6s ease-in-out infinite;
}

@keyframes shimmerSweep {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}

.cta-banner__content {
  position: relative;
  z-index: 2;
}

/* 3-column layout */
.cta-banner__columns {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

/* Goal cards (left + right) */
.cta-banner__goal {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-banner__goal:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.cta-banner__goal-number {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.cta-banner__goal-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.cta-banner__goal-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* Center column */
.cta-banner__center {
  padding: 1rem 0;
}

.cta-banner__logo-mark {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.cta-banner__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.cta-banner__title em {
  font-style: italic;
  color: var(--gold-glow);
}

.cta-banner__subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
}

.cta-banner__btn {
  box-shadow: 0 6px 24px rgba(196, 154, 60, 0.35);
}

.cta-banner__btn:hover {
  box-shadow: 0 10px 36px rgba(196, 154, 60, 0.5);
}

@media (max-width: 768px) {
  .cta-banner__columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cta-banner__goal--left { order: 1; }
  .cta-banner__center { order: 0; }
  .cta-banner__goal--right { order: 2; }

  .cta-banner__goal {
    padding: 1.5rem;
  }

  .cta-banner__glow { display: none; }
}


/* ═══════════════════════════════════════════════
   PAGE HEADER (inner pages)
   ═══════════════════════════════════════════════ */
.page-hero {
  padding: clamp(5.5rem, 8vw, 6.2rem) 0 clamp(1rem, 2vw, 1.5rem);
  background: linear-gradient(165deg, var(--cream) 0%, var(--green-mist) 100%);
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/Shake%20and%20Tea%20Drink%20Background-01.png');
  background-size: 800px;
  background-attachment: fixed;
  opacity: 0.05;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 400;
  position: relative;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--ink-muted);
  margin-top: 0.8rem;
  position: relative;
}


/* ═══════════════════════════════════════════════
   FAQ PAGE — 10X Luxury Knowledge Center
   ═══════════════════════════════════════════════ */

/* Hero */
.faq-hero {
  position: relative;
  padding: clamp(8rem, 14vw, 10rem) 0 clamp(3rem, 5vw, 4rem);
  background: var(--green-deep);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.faq-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/Shake%20and%20Tea%20Drink%20Background-01.png');
  background-size: 700px;
  background-attachment: fixed;
  opacity: 0.04;
  filter: invert(1);
  pointer-events: none;
}

.faq-hero__glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(196, 154, 60, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.faq-hero__content { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }

.faq-hero__overline {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.7s 0.1s var(--ease-out) forwards;
}

.faq-hero__overline span { display: block; width: 28px; height: 1.5px; background: var(--gold); }

.faq-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeSlideUp 0.7s 0.25s var(--ease-out) forwards;
}

.faq-hero__title em { font-style: italic; font-weight: 500; color: var(--gold-glow); }

.faq-hero__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  opacity: 0;
  animation: fadeSlideUp 0.7s 0.4s var(--ease-out) forwards;
}

/* Accordion section */
.faq-accordion {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--white);
}

.faq-accordion__inner { max-width: 800px; margin: 0 auto; }
.faq-accordion__header { margin-bottom: 2.5rem; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
  background: var(--cream);
}

.faq-item:hover { border-color: rgba(29, 90, 43, 0.15); }

.faq-item.is-open {
  border-color: rgba(29, 90, 43, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  background: var(--white);
}

.faq-item__trigger {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1.3rem 1.5rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  gap: 1rem;
}

.faq-item__number {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
  width: 36px;
  opacity: 0.7;
}

.faq-item__question {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  flex: 1;
  line-height: 1.3;
  transition: color 0.2s;
}

.faq-item__trigger:hover .faq-item__question { color: var(--green); }

.faq-item__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease-out);
}

.faq-item__icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--green);
  stroke-width: 2;
  transition: transform 0.35s var(--ease-out);
}

.faq-item.is-open .faq-item__icon {
  background: var(--green);
  transform: rotate(45deg);
}

.faq-item.is-open .faq-item__icon svg { stroke: var(--white); }

.faq-item__answer {
  padding: 0 1.5rem 1.5rem 4.2rem;
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.8;
}

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
}

/* Value props — dark section */
.faq-values {
  padding: clamp(5rem, 10vw, 7rem) 0;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

.faq-values__bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/Shake%20and%20Tea%20Drink%20Background-01.png');
  background-size: 700px;
  background-attachment: fixed;
  opacity: 0.04;
  filter: invert(1);
  pointer-events: none;
}

.faq-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}

.faq-value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  transition: all 0.4s var(--ease-out);
}

.faq-value-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-value-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(196, 154, 60, 0.12);
  border: 1px solid rgba(196, 154, 60, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.faq-value-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
}

.faq-value-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.faq-value-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

/* Contact section on FAQ page */
.faq-contact {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--cream);
}

.faq-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.faq-contact__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.faq-contact__title em { font-style: italic; font-weight: 500; color: var(--green); }

.faq-contact__text {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.faq-contact__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.faq-contact__img {
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
}

.faq-contact__img--tall { height: 240px; grid-row: span 1; }
.faq-contact__img--wide { height: 160px; grid-column: span 2; }

.faq-contact__form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  padding: 2rem;
}

.faq-contact__form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
  .faq-values__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .faq-values__grid { grid-template-columns: 1fr; }
  .faq-contact__grid { grid-template-columns: 1fr; }
  .faq-contact__images { display: none; }
  .faq-hero__title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .faq-item__trigger { padding: 1rem 1.2rem; }
  .faq-item__answer { padding-left: 1.2rem; }
  .faq-item__number { display: none; }
}


/* ═══════════════════════════════════════════════
   SHARED FORM STYLES
   ═══════════════════════════════════════════════ */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(29, 90, 43, 0.12);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.9rem;
  color: var(--ink);
  transition: all 0.25s;
}

.form-input::placeholder, .form-textarea::placeholder { color: var(--ink-faint); }

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(29, 90, 43, 0.06);
}

.form-textarea { min-height: 120px; resize: vertical; }

.form-success { display: none; text-align: center; padding: 3rem; }
.form-success.is-visible { display: block; }
.form-success h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--ink); }
.form-success p { color: var(--ink-muted); }

/* FAQ page contact banner (kept for FAQ) */
.contact-form-section { padding: clamp(4rem, 8vw, 6rem) 0; background: var(--white); }
.contact-banner { display: grid; grid-template-columns: 320px 1fr; border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.06); border: 1px solid var(--border); max-width: 940px; margin: 0 auto; }
.contact-banner__images { display: flex; flex-direction: column; }
.contact-banner__images img { width: 100%; flex: 1; object-fit: cover; }
.contact-banner__form { padding: clamp(2rem, 4vw, 3rem); background: var(--cream); }
.contact-banner__form h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--ink); margin-bottom: 1.5rem; text-align: center; }


/* ═══════════════════════════════════════════════
   CONTACT PAGE — 10X Editorial
   ═══════════════════════════════════════════════ */

/* Hero */
.contact-hero {
  position: relative;
  padding: clamp(8rem, 14vw, 10rem) 0 clamp(3rem, 5vw, 4rem);
  background: var(--green-deep);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/Shake%20and%20Tea%20Drink%20Background-01.png');
  background-size: 700px;
  background-attachment: fixed;
  opacity: 0.04;
  filter: invert(1);
  pointer-events: none;
}

.contact-hero__glow {
  position: absolute;
  top: -25%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(196, 154, 60, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.contact-hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.contact-hero__overline {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.7s 0.1s var(--ease-out) forwards;
}

.contact-hero__overline span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}

.contact-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeSlideUp 0.7s 0.25s var(--ease-out) forwards;
}

.contact-hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-glow);
}

.contact-hero__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  opacity: 0;
  animation: fadeSlideUp 0.7s 0.4s var(--ease-out) forwards;
}

/* Main grid */
.contact-main {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--cream);
}

.contact-main__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

/* Info cards column */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease-out);
}

.contact-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.contact-card--cta {
  background: linear-gradient(135deg, var(--green-mist) 0%, var(--green-pale) 100%);
  border-color: rgba(29, 90, 43, 0.1);
}

.contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card__icon svg { stroke: var(--green); }

.contact-card__icon--gold {
  background: rgba(196, 154, 60, 0.1);
}

.contact-card__icon--gold svg { stroke: var(--gold); }

.contact-card__label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 4px;
}

.contact-card__value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
  text-decoration: none;
  transition: color 0.2s;
}

a.contact-card__value:hover { color: var(--green); text-decoration: none; }

.contact-card__note {
  font-size: 0.78rem;
  color: var(--ink-faint);
  margin: 0;
  line-height: 1.4;
}

/* Form card */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.contact-form-card__header {
  padding: 2rem 2rem 0;
}

.contact-form-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.contact-form-card__desc {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 0;
}

.contact-form-card__form {
  padding: 1.5rem 2rem 2rem;
}

.contact-form-card__submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 0.85rem;
}

.contact-form-card .form-success {
  padding: 4rem 2rem;
}

@media (max-width: 768px) {
  .contact-main__grid { grid-template-columns: 1fr; }
  .contact-info-col { order: 1; }
  .contact-form-col { order: 0; }
  .form-row { grid-template-columns: 1fr; }
  .contact-hero__title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .contact-banner { grid-template-columns: 1fr; }
  .contact-banner__images { max-height: 220px; overflow: hidden; }
}


/* ═══════════════════════════════════════════════
   LEGAL PAGES (Privacy Policy & Terms of Use)
   ═══════════════════════════════════════════════ */
.legal-page {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--white);
}

.legal-page__content {
  max-width: 680px;
  margin: 0 auto;
}

.legal-page__updated {
  font-size: 0.78rem;
  color: var(--ink-faint);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-section {
  display: flex;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-of-type {
  border-bottom: none;
}

.legal-section__number {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
  width: 36px;
  opacity: 0.6;
}

.legal-section__body h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.legal-section__body p {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.8;
  margin: 0;
}

.legal-page__contact {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.legal-page__contact p {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.legal-page__contact a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .legal-section { flex-direction: column; gap: 0.5rem; }
  .legal-section__number { width: auto; }
}


/* ═══════════════════════════════════════════════
   BLOG LISTING — 3-Column Card Grid
   ═══════════════════════════════════════════════ */
.blog-listing {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--white);
}

.blog-listing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Blog Tile Card */
.blog-tile {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--ink-soft);
  transition: all 0.45s var(--ease-out);
  position: relative;
}

.blog-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(15, 51, 24, 0.08);
  text-decoration: none;
  color: var(--ink-soft);
}

/* Date badge at top */
.blog-tile__date-badge {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  padding: 1rem 1.5rem;
  position: relative;
}

.blog-tile__date-badge::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green-rich), var(--gold));
}

.blog-tile__month {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

/* Card body */
.blog-tile__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-tile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 0.8rem;
}

.blog-tile__tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(196, 154, 60, 0.08);
  padding: 3px 8px;
  border-radius: 20px;
}

.blog-tile__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 0.6rem;
}

.blog-tile:hover .blog-tile__title {
  color: var(--green);
}

.blog-tile__excerpt {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: auto;
  padding-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-tile__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.blog-tile__author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--ink-faint);
  font-weight: 500;
}

.blog-tile__avatar {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: cover;
}

.blog-tile__read {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  transition: gap 0.3s var(--ease-spring);
}

.blog-tile:hover .blog-tile__read {
  color: var(--green-rich);
}


/* ═══════════════════════════════════════════════
   BLOG POST — Luxury Editorial Magazine
   ═══════════════════════════════════════════════ */

/* ── Hero Header ── */
.post-hero {
  position: relative;
  padding: clamp(8rem, 14vw, 10rem) 0 clamp(3rem, 5vw, 4rem);
  background: var(--green-deep);
  color: var(--white);
  overflow: hidden;
}

.post-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/Shake%20and%20Tea%20Drink%20Background-01.png');
  background-size: 700px;
  background-attachment: fixed;
  opacity: 0.04;
  filter: invert(1);
  pointer-events: none;
}

.post-hero__glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(196, 154, 60, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.post-hero__content {
  position: relative;
  z-index: 1;
}

.post-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
  transition: color 0.2s;
  text-decoration: none;
}

.post-hero__back:hover { color: var(--gold); text-decoration: none; }

.post-hero__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.post-hero__tag {
  display: inline-block;
  padding: 4px 14px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(196, 154, 60, 0.15);
  color: var(--gold);
  border: 1px solid rgba(196, 154, 60, 0.2);
  border-radius: 30px;
}

.post-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 2rem;
  max-width: 640px;
}

.post-hero__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.post-hero__author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.post-hero__avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.post-hero__author-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}

.post-hero__author-role {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
}

.post-hero__details {
  display: flex;
  gap: 1.2rem;
}

.post-hero__detail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

.post-hero__detail svg { opacity: 0.5; }

.post-hero__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}


/* ── Article Body ── */
.post-body {
  background: var(--white);
  position: relative;
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 6vw, 4rem);
}

.post-body__accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  border-radius: 3px;
}

.post-body__content {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto;
}

.post-body__content > *:first-child {
  margin-top: 2rem;
}

/* First paragraph — drop cap feel with larger text */
.post-body__content > p:first-of-type {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--ink);
}

.post-body__content > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  float: left;
  line-height: 1;
  margin-right: 0.12em;
  margin-top: 0.05em;
  color: var(--green);
}

.post-body__content h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--ink);
  margin-top: 3rem;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.2rem;
}

.post-body__content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25em;
  bottom: 0.25em;
  width: 3px;
  background: var(--gold);
  border-radius: 3px;
}

.post-body__content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.post-body__content p { margin-bottom: 1.4rem; }

.post-body__content a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(29, 90, 43, 0.3);
  transition: all 0.2s;
}

.post-body__content a:hover {
  text-decoration-color: var(--green);
  text-decoration-thickness: 2px;
}

.post-body__content strong {
  color: var(--ink);
  font-weight: 600;
}

.post-body__content em {
  font-style: italic;
}

.post-body__content ul, .post-body__content ol {
  margin-bottom: 1.4rem;
  padding-left: 0;
  list-style: none;
}

.post-body__content li {
  margin-bottom: 0.6rem;
  padding-left: 1.6rem;
  position: relative;
}

.post-body__content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.post-body__content ol {
  counter-reset: ol-counter;
}

.post-body__content ol li {
  counter-increment: ol-counter;
}

.post-body__content ol li::before {
  content: counter(ol-counter) ".";
  position: absolute;
  left: 0;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold);
}

.post-body__content blockquote {
  border: none;
  border-left: 3px solid var(--gold);
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--green-mist) 100%);
  border-radius: 0 var(--radius) var(--radius) 0;
  position: relative;
}

.post-body__content blockquote::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.post-body__content blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 0;
  position: relative;
}

/* Inline images */
.post-body__content img {
  border-radius: var(--radius);
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Horizontal rule */
.post-body__content hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 3rem 0;
}


/* ── End CTA ── */
.post-end {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 4rem) 0;
}

.post-end__card {
  text-align: center;
  padding: clamp(2.5rem, 4vw, 3.5rem);
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.post-end__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.post-end__icon svg {
  stroke: var(--green);
}

.post-end__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.post-end__text {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.post-end__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ── Tag (shared) ── */
.tag {
  display: inline-block;
  padding: 4px 14px;
  font-size: 0.68rem;
  font-weight: 600;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 30px;
  letter-spacing: 0.02em;
  transition: all 0.2s;
}

.tag:hover {
  background: var(--green);
  color: var(--white);
}


/* ── Post Responsive ── */
@media (max-width: 768px) {
  .post-hero__title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .post-hero__meta { flex-direction: column; align-items: flex-start; }
  .post-body__content > p:first-of-type::first-letter { font-size: 2.8rem; }
  .post-end__actions { flex-direction: column; align-items: center; }
  .post-end__actions .btn { width: 100%; max-width: 280px; justify-content: center; }
}

/* Responsive blog grid */
@media (max-width: 1024px) {
  .blog-listing__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .blog-listing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .blog-tile__title { font-size: 1.05rem; }
}


/* ═══════════════════════════════════════════════
   FOOTER — Premium 4-Column
   ═══════════════════════════════════════════════ */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.6);
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* Gold accent line at top */
.footer__accent {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--green-rich), var(--gold), transparent);
  opacity: 0.6;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 1.1fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Brand column */
.footer__col--brand { padding-right: 1rem; }

.footer__brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: opacity 0.2s;
}

.footer__brand-link:hover { opacity: 0.85; text-decoration: none; }

.footer__brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 500;
  color: var(--white);
}

.footer__tagline {
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__location svg {
  flex-shrink: 0;
  stroke: var(--gold);
  opacity: 0.6;
}

/* Column headings */
.footer__heading {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Links */
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
  transition: all 0.2s;
  display: inline-block;
}

.footer__links a:hover {
  color: var(--white);
  text-decoration: none;
  transform: translateX(3px);
}

/* Contact links with icons */
.footer__links--contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__links--contact svg {
  flex-shrink: 0;
  stroke: rgba(255, 255, 255, 0.3);
  transition: stroke 0.2s;
}

.footer__links--contact li:hover svg {
  stroke: var(--gold);
}

/* CTA column */
.footer__cta-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.footer__cta-btn {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

.footer__cta-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

/* Bottom bar */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  gap: 1.5rem;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer__legal a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}

.footer__legal a:hover { color: rgba(255, 255, 255, 0.65); text-decoration: none; }

.footer__legal-dot {
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.7rem;
}

.footer__copyright {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.22);
  text-align: center;
}

.footer__credit {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.22);
  text-align: right;
}

.footer__credit a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__credit a:hover { color: var(--gold); }

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer__col:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
  }

  .footer__col--brand { padding-right: 0; }
  .footer__heading::after { left: 0; }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.6rem;
  }

  .footer__credit { text-align: center; }
}


/* ═══════════════════════════════════════════════
   PROGRAM PAGES (Weight Loss & Muscle Gain)
   ═══════════════════════════════════════════════ */
.program-hero { padding: clamp(7rem, 12vw, 9rem) 0 clamp(3rem, 6vw, 5rem); text-align: center; position: relative; overflow: hidden; }
.program-hero::before { content: ''; position: absolute; inset: 0; background-image: url('/assets/images/Shake%20and%20Tea%20Drink%20Background-01.png'); background-size: 800px; background-repeat: repeat; background-attachment: fixed; opacity: 0.05; pointer-events: none; }
.program-hero--light { background: linear-gradient(165deg, var(--cream) 0%, var(--green-mist) 40%, var(--green-pale) 100%); color: var(--ink); }
.program-hero--dark { background: linear-gradient(170deg, var(--green-deep) 0%, #0a1f0f 60%, #071a0c 100%); color: var(--white); }
.program-hero--dark::before { filter: invert(1); opacity: 0.04; }
.program-hero__glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; filter: blur(120px); pointer-events: none; z-index: 0; }
.program-hero__glow--gold { top: -20%; right: -10%; background: rgba(196, 154, 60, 0.08); }
.program-hero__glow--green { bottom: -30%; left: -10%; background: rgba(60, 176, 67, 0.06); }
.program-hero__content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.program-hero__overline { font-family: var(--font-body); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 12px; margin-bottom: 1.5rem; opacity: 0; animation: fadeSlideUp 0.7s 0.1s var(--ease-out) forwards; }
.program-hero__overline::before, .program-hero__overline::after { content: ''; width: 28px; height: 1.5px; background: var(--gold); }
.program-hero__title { font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 4rem); font-weight: 300; line-height: 1.08; margin-bottom: 1.2rem; opacity: 0; animation: fadeSlideUp 0.7s 0.25s var(--ease-out) forwards; }
.program-hero--light .program-hero__title { color: var(--ink); }
.program-hero--dark .program-hero__title { color: var(--white); }
.program-hero__title em { font-style: italic; font-weight: 500; }
.program-hero--light .program-hero__title em { color: var(--green); }
.program-hero--dark .program-hero__title em { color: var(--gold-glow); }
.program-hero__subtitle { font-size: 1.05rem; line-height: 1.75; max-width: 500px; margin: 0 auto 2rem; opacity: 0; animation: fadeSlideUp 0.7s 0.4s var(--ease-out) forwards; }
.program-hero--light .program-hero__subtitle { color: var(--ink-muted); }
.program-hero--dark .program-hero__subtitle { color: rgba(255,255,255,0.6); }

.program-intro { padding: clamp(4rem, 8vw, 6rem) 0; background: var(--white); }
.program-intro__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(3rem, 5vw, 5rem); align-items: center; }
.program-intro__label { font-family: var(--font-body); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 1.2rem; }
.program-intro__label::before { content: ''; width: 22px; height: 1.5px; background: var(--gold); }
.program-intro__heading { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 400; color: var(--ink); line-height: 1.2; margin-bottom: 1.5rem; }
.program-intro__heading em { font-style: italic; font-weight: 500; color: var(--green); }
.program-intro__text { font-size: 0.95rem; color: var(--ink-muted); line-height: 1.8; margin-bottom: 1.2rem; }
.program-intro__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.program-stat { background: var(--cream); border-radius: var(--radius); padding: 1.8rem 1.5rem; text-align: center; border: 1px solid var(--border); transition: all 0.3s var(--ease-out); }
.program-stat:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.05); }
.program-stat__number { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--green); line-height: 1; margin-bottom: 0.4rem; }
.program-stat__label { font-size: 0.78rem; color: var(--ink-muted); line-height: 1.4; }

.program-products { padding: clamp(4rem, 8vw, 6rem) 0; background: var(--cream); position: relative; }
.program-products::before { content: ''; position: absolute; inset: 0; background-image: url('/assets/images/Shake%20and%20Tea%20Drink%20Background-01.png'); background-size: 800px; background-attachment: fixed; opacity: 0.04; pointer-events: none; }
.program-products__header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); position: relative; z-index: 1; }
.program-products__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative; z-index: 1; }
.prog-card { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; border: 1px solid rgba(29,90,43,0.06); transition: all 0.5s var(--ease-out); display: flex; flex-direction: column; text-decoration: none; color: var(--ink-soft); }
.prog-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(15,51,24,0.1); text-decoration: none; color: var(--ink-soft); }
.prog-card__badge { position: absolute; top: 14px; left: 14px; z-index: 2; padding: 4px 13px; font-family: var(--font-body); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-deep); background: var(--gold); border-radius: 30px; }
.prog-card__image { height: 260px; display: flex; align-items: center; justify-content: center; padding: 1.5rem; background: linear-gradient(180deg, var(--green-mist), rgba(228,242,231,0.2)); overflow: hidden; position: relative; }
.prog-card__image img { max-height: 220px; width: auto; object-fit: contain; transition: transform 0.6s var(--ease-out); }
.prog-card:hover .prog-card__image img { transform: scale(1.08); }
.prog-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.prog-card__cat { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.prog-card__name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--ink); line-height: 1.25; margin-bottom: 0.5rem; }
.prog-card__desc { font-size: 0.85rem; color: var(--ink-muted); line-height: 1.65; margin-bottom: auto; padding-bottom: 1rem; }
.prog-card__footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); }
.prog-card__price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--green); }
.prog-card__cta { display: inline-flex; align-items: center; gap: 5px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); }
.prog-card__cta svg { transition: transform 0.3s var(--ease-spring); }
.prog-card:hover .prog-card__cta svg { transform: translateX(3px); }

.program-how { padding: clamp(4rem, 8vw, 6rem) 0; background: var(--green-deep); color: var(--white); position: relative; overflow: hidden; }
.program-how::before { content: ''; position: absolute; inset: 0; background-image: url('/assets/images/Shake%20and%20Tea%20Drink%20Background-01.png'); background-size: 700px; background-attachment: fixed; opacity: 0.04; filter: invert(1); pointer-events: none; }
.program-how__header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); position: relative; z-index: 1; }
.program-how__title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 400; color: var(--white); }
.program-how__title em { font-style: italic; color: var(--gold-glow); }
.program-how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative; z-index: 1; }
.program-step { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-xl); padding: 2.2rem 1.8rem; text-align: center; transition: all 0.4s var(--ease-out); }
.program-step:hover { background: rgba(255,255,255,0.07); transform: translateY(-5px); }
.program-step__number { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 14px; background: rgba(196,154,60,0.12); border: 1px solid rgba(196,154,60,0.2); font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--gold); margin-bottom: 1.2rem; }
.program-step__title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--white); margin-bottom: 0.6rem; }
.program-step__text { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.program-step__text a { color: var(--gold); }

.program-cta { padding: clamp(4rem, 8vw, 6rem) 0; background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%); text-align: center; position: relative; overflow: hidden; }
.program-cta::before { content: ''; position: absolute; inset: 0; background-image: url('/assets/images/Shake%20and%20Tea%20Drink%20Background-01.png'); background-size: 700px; background-attachment: fixed; opacity: 0.04; filter: invert(1); }
.program-cta__content { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.program-cta__title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 400; color: var(--white); margin-bottom: 1rem; }
.program-cta__title em { font-style: italic; color: var(--gold-glow); }
.program-cta__text { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 2rem; }

@media (max-width: 1024px) {
  .program-products__grid { grid-template-columns: repeat(2, 1fr); }
  .program-products__grid .prog-card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .program-intro__grid { grid-template-columns: 1fr; }
  .program-products__grid { grid-template-columns: 1fr; }
  .program-products__grid .prog-card:last-child { max-width: 100%; }
  .program-how__grid { grid-template-columns: 1fr; }
  .program-hero__title { font-size: clamp(2rem, 8vw, 3rem); }
}


/* ═══════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeScaleIn {
  from { opacity: 0; transform: scale(0.95) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.25s; }


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .value-props__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  /* ── Mobile Nav Panel ── */
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    max-width: 85vw;
    background: var(--green-deep);
    box-shadow: -12px 0 60px rgba(0, 0, 0, 0.25);
    padding: 100px 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease-out);
    z-index: 105;
    overflow-y: auto;
  }

  .site-nav.is-open { transform: translateX(0); }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .site-nav__link {
    display: block;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    text-decoration: none;
  }

  .site-nav__link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    text-decoration: none;
  }

  .site-nav__link.is-active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
    border-left: 3px solid var(--gold);
  }

  .site-nav__link--cta {
    margin: 12px 0 0;
    background: var(--gold) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    text-align: center;
    border-radius: 60px;
    padding: 14px 24px;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-left: none !important;
  }

  .site-nav__link--cta:hover {
    background: #b38a30 !important;
  }

  /* Overlay */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: transparent;
    right: 300px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
  }

  .nav-overlay.is-visible { opacity: 1; visibility: visible; }

  /* Hero */
  .hero { min-height: auto; padding-top: 70px; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; padding: 2rem var(--pad); }
  .hero__content { max-width: 100%; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 300px; justify-content: center; }
  .hero__image-wrap { order: -1; max-width: 300px; margin: 0 auto; }
  .hero__image-accent { display: none; }
  .hero__image-badge { font-size: 0.65rem; padding: 8px 16px; }
  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero__title strong { font-size: 0.6em; }
  .hero__overline { font-size: 0.6rem; justify-content: center; }
  .hero__overline::before { display: none; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }
  .service-card--immersive { min-height: 360px; }
  .service-card__title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .service-card__text { font-size: 0.82rem; }
  .service-card__overlay { padding: 1.5rem; }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonial { padding: 2rem 1.5rem; }
  .testimonial__text { font-size: 0.95rem; }

  /* Blog cards */
  .blog-card { grid-template-columns: 1fr; }

  /* CTA Banner */
  .cta-banner__columns { grid-template-columns: 1fr; gap: 1.2rem; }
  .cta-banner__goal--left { order: 1; }
  .cta-banner__center { order: 0; }
  .cta-banner__goal--right { order: 2; }
  .cta-banner__goal { padding: 1.5rem; }
  .cta-banner__title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .cta-banner__glow { display: none; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .contact-banner { grid-template-columns: 1fr; }
  .contact-banner__images { max-height: 180px; overflow: hidden; }

  /* Value props */
  .value-props__grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 0.8rem; }
  .footer__bottom-text { text-align: center; }
  .footer__legal { justify-content: center; }
  .footer__credit { text-align: center; }

  /* Catalog toolbar */
  .catalog__toolbar { flex-direction: column; align-items: stretch; gap: 0.8rem; }
  .catalog__search { max-width: 100%; }
  .catalog__dropdown-btn { width: 100%; }
  .catalog__dropdown-list { left: 0; right: 0; min-width: auto; }

  /* Pagination — hide on mobile, show Load More */
  .catalog__pagination--desktop { display: none !important; }
  .catalog__load-more { display: block !important; }

  /* Tighten hero sections on mobile */
  .page-hero { padding: 4.5rem 0 0.8rem; }
  .faq-hero { padding: 5.5rem 0 2rem; }
  .contact-hero { padding: 5.5rem 0 2rem; }
  .post-hero { padding: 5.5rem 0 2rem; }
  .program-hero { padding: 5.5rem 0 2rem; }

  /* Section spacing */
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .section-header { margin-bottom: 2rem; }

  /* Header logo */
  .site-header__logo img { width: 36px; height: 36px; }
  .logo__text { font-size: 1.1rem; }
  .site-header__inner { height: 65px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.8rem; }
  .hero__title strong { font-size: 0.55em; letter-spacing: 0.05em; }
  .service-card--immersive { min-height: 320px; }
  .service-card__title { font-size: 1.6rem; }
  .testimonial__quote-mark { font-size: 3rem; }
  .cta-banner__goal-title { font-size: 1.2rem; }
  .cta-banner__btn { font-size: 0.65rem; padding: 12px 20px; letter-spacing: 0.08em; }
  .home-blog__title { font-size: 1rem; }
  .blog-tile__title { font-size: 0.95rem; }
  .post-hero__title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .faq-hero__title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .contact-hero__title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .program-hero__title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .product-detail__name { font-size: 1.5rem; }
  .product-detail__price { font-size: 1.8rem; }
}


/* ═══════════════════════════════════════════════
   PRODUCT CATALOG
   ═══════════════════════════════════════════════ */
.catalog {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(4rem, 8vw, 6rem);
  background: var(--white);
}

/* Toolbar: Search left, Dropdown right */
.catalog__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

/* Search */
.catalog__search {
  position: relative;
  max-width: 340px;
  flex: 1;
}

/* Custom Category Dropdown */
.catalog__dropdown-wrap {
  position: relative;
  z-index: 10;
}

.catalog__dropdown-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-deep);
  background: var(--green-pale);
  border: 1px solid rgba(29, 90, 43, 0.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
  width: 330px;
  justify-content: space-between;
}

.catalog__dropdown-btn-left {
  flex: 1;
  text-align: left;
}

.catalog__dropdown-btn-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.catalog__dropdown-btn:hover {
  border-color: var(--green);
  background-color: var(--green-light);
}

.catalog__dropdown-btn svg {
  transition: transform 0.25s;
  margin-left: 4px;
}

.catalog__dropdown-wrap.is-open .catalog__dropdown-btn svg {
  transform: rotate(180deg);
}

.catalog__dropdown-count {
  font-weight: 400;
  color: var(--ink-muted);
  font-size: 0.8rem;
}

.catalog__dropdown-list {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 240px;
  max-height: 320px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 6px;
  display: none;
}

.catalog__dropdown-wrap.is-open .catalog__dropdown-list {
  display: block;
}

.catalog__dropdown-item {
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--ink-soft);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
}

.catalog__dropdown-item:hover {
  background: var(--green-pale);
  color: var(--green);
}

.catalog__dropdown-item.is-active {
  background: var(--green);
  color: var(--white);
  font-weight: 600;
}

.catalog__search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-faint);
  pointer-events: none;
}

.catalog__search-input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-size: 0.9rem;
  color: var(--ink);
  transition: border-color 0.2s;
}

.catalog__search-input:focus {
  outline: none;
  border-color: var(--green);
}

/* Product Grid */
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}

/* Product Card */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(29, 90, 43, 0.06);
  text-decoration: none;
  color: var(--ink-soft);
  position: relative;
  transition: all 0.4s var(--ease-out);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 51, 24, 0.1);
  text-decoration: none;
  color: var(--ink-soft);
}

/* Tag Badges */
.product-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 12px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 30px;
  color: var(--white);
}

.product-card__tag--new { background: var(--green-rich); }
.product-card__tag--best-seller { background: var(--gold); }
.product-card__tag--featured { background: var(--green); }
.product-card__tag--limited-edition { background: #8b5cf6; }

/* Card Image */
.product-card__image {
  height: 190px;
  overflow: hidden;
  background: var(--green-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s var(--ease-out);
}

.product-card:hover .product-card__image img {
  transform: scale(1.08);
}

.product-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--ink-faint);
}

/* Card Body */
.product-card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__flavor {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 6px;
}

.product-card__size {
  font-size: 0.78rem;
  color: var(--ink-faint);
  margin-bottom: auto;
  padding-bottom: 0.8rem;
}

.product-card__price {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
}

/* Hidden state for filtering + pagination */
.product-card.is-hidden {
  display: none;
}

/* Pagination */
.catalog__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.catalog__page-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}

.catalog__page-btn:hover:not(:disabled) {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.catalog__page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.catalog__page-numbers {
  display: flex;
  align-items: center;
  gap: 4px;
}

.catalog__page-num {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}

.catalog__page-num:hover {
  border-color: var(--border);
  color: var(--green);
}

.catalog__page-num.is-active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  font-weight: 700;
}

.catalog__page-dots {
  width: 30px;
  text-align: center;
  color: var(--ink-faint);
  font-size: 0.8rem;
}

/* Load More (mobile only) */
.catalog__load-more {
  display: none;
  text-align: center;
  margin-top: 2rem;
}

.catalog__load-more-btn {
  min-width: 220px;
  justify-content: center;
}

/* Empty state */
.catalog__empty {
  text-align: center;
  padding: 4rem 0;
  color: var(--ink-faint);
}

.catalog__empty svg { margin: 0 auto 1rem; }
.catalog__empty h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--ink-muted); margin-bottom: 0.5rem; }
.catalog__empty p { font-size: 0.9rem; }


/* ═══════════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ═══════════════════════════════════════════════ */
.product-detail {
  padding: clamp(7rem, 12vw, 9rem) 0 clamp(4rem, 8vw, 6rem);
  background: var(--white);
}

.product-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--ink-faint);
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.product-detail__back:hover {
  color: var(--green);
  text-decoration: none;
}

.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

/* Image */
.product-detail__image-wrap {
  position: relative;
}

.product-detail__image-wrap .product-card__tag {
  top: 16px;
  left: 16px;
  font-size: 0.75rem;
  padding: 6px 16px;
}

.product-detail__image {
  background: var(--green-mist);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.product-detail__image img {
  max-height: 420px;
  width: auto;
  object-fit: contain;
}

/* Info */
.product-detail__info .overline {
  margin-bottom: 0.8rem;
}

.product-detail__name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.product-detail__meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.product-detail__meta-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 2px;
}

.product-detail__meta-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}

.product-detail__price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 2rem;
}

.product-detail__price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--green);
}

.product-detail__price-note {
  font-size: 0.8rem;
  color: var(--ink-faint);
}

.product-detail__buy {
  width: 100%;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  padding: 18px 36px;
}

/* Photo report link */
.photo-report {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 0.8rem;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--ink-faint);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.photo-report:hover {
  color: var(--gold);
}

.photo-report.is-reported {
  color: var(--green);
  cursor: default;
  pointer-events: none;
}

.product-detail__trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-detail__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.product-detail__trust-item svg {
  color: var(--green);
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .catalog__grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
  .catalog__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .product-detail__grid { grid-template-columns: 1fr; }
  .product-detail__image { min-height: 280px; padding: 1.5rem; }
  .catalog__grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .product-card__image { height: 160px; }
  .product-card__body { padding: 0.8rem; }
  .product-card__name { font-size: 0.88rem; }
  .catalog__filters { gap: 4px; }
  .catalog__filter { padding: 6px 14px; font-size: 0.72rem; }
}


/* ═══════════════════════════════════════════════
   ACCESSIBILITY
   ═══════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible { outline-offset: 4px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
