/* ============================================================
   COMPONENTS.CSS — Wellness Planet
   Buttons, cards, grids, and reusable UI components
   ============================================================ */

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  border: 1.5px solid transparent;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.1s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn:active {
  transform: scale(0.97);
  transition-duration: 0.1s;
}

.btn--primary {
  background: #2E4A2B;
  color: #fff;
  border-color: #2E4A2B;
}

.btn--primary:hover {
  background: #3a5e36;
  box-shadow: 0 6px 20px rgba(46, 74, 43, 0.25);
}

.btn--outline {
  background: transparent;
  color: #2E4A2B;
  border-color: #2E4A2B;
  box-shadow: none;
}

.btn--outline:hover {
  background: #2E4A2B;
  color: #fff;
  box-shadow: 0 6px 20px rgba(46, 74, 43, 0.2);
}

.btn--white {
  background: #fff;
  color: #2E4A2B;
  border-color: #fff;
}

.btn--white:hover {
  background: #2E4A2B;
  color: #fff;
  border-color: #2E4A2B;
  box-shadow: 0 6px 20px rgba(46, 74, 43, 0.3);
}

/* Outline variant inside black sections */
.section--black .btn--primary {
  background: #2E4A2B;
  color: #fff;
  border-color: #2E4A2B;
}

.section--black .btn--primary:hover {
  background: #3a5e36;
  box-shadow: 0 6px 20px rgba(46, 74, 43, 0.35);
}

.section--black .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: none;
}

.section--black .btn--outline:hover {
  background: #2E4A2B;
  color: #fff;
  border-color: #2E4A2B;
  box-shadow: 0 6px 20px rgba(46, 74, 43, 0.3);
}

.btn:focus-visible {
  outline: 2px solid #2E4A2B;
  outline-offset: 3px;
}

/* ── Pillar Grid ── */
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--card-gap);
}

@media (min-width: 480px) {
  .pillar-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .pillar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .pillar-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.pillar-grid--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 480px) {
  .pillar-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .pillar-grid--3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin: 0 auto;
  }
}

/* Pillar heading */
.pillar-heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 80px;
  color: var(--color-black);
}

.card-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 44px 28px;
  min-height: 220px;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.section--cream .card-pillar,
.section--cream-alt .card-pillar {
  background: #ffffff;
}

.card-pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.10);
  border-color: rgba(46, 74, 43, 0.3);
}

/* Icon circle wrapper */
.card-pillar__icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.card-pillar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(46, 74, 43, 0.08);
  flex-shrink: 0;
  color: #2E4A2B;
}

.card-pillar__icon svg {
  width: 40px;
  height: 40px;
}

.card-pillar__title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #111;
}

.card-pillar__desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #666;
}

/* Dark variant (on black sections) */
.card-pillar--dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.card-pillar--dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(46, 74, 43, 0.5);
}

.card-pillar--dark .card-pillar__title {
  color: #fff;
}

.card-pillar--dark .card-pillar__desc {
  color: rgba(255, 255, 255, 0.5);
}

.card-pillar--dark .card-pillar__icon {
  background: rgba(46, 74, 43, 0.15);
}

/* Pillar stagger animation */
.pillar-grid > .card-pillar:nth-child(1) { transition-delay: 0s; }
.pillar-grid > .card-pillar:nth-child(2) { transition-delay: 0.12s; }
.pillar-grid > .card-pillar:nth-child(3) { transition-delay: 0.24s; }
.pillar-grid > .card-pillar:nth-child(4) { transition-delay: 0.36s; }
.pillar-grid > .card-pillar:nth-child(5) { transition-delay: 0.48s; }

/* ── Experience Grid ── */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--card-gap);
}

@media (min-width: 768px) {
  .experience-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

/* Premium variant — larger gap */
.experience-grid--premium {
  gap: 36px;
}

.card-experience {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  background: var(--color-white);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
}

.card-experience:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.card-experience:focus-visible {
  outline: 2px solid var(--color-green);
  outline-offset: 3px;
}

.card-experience__image {
  width: 100%;
  overflow: hidden;
}

.card-experience__image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

@media (min-width: 768px) {
  .card-experience__image img {
    height: 340px;
  }
}

@media (min-width: 1024px) {
  .card-experience__image img {
    height: 400px;
  }
}

.card-experience:hover .card-experience__image img {
  transform: scale(1.05);
}

.card-experience__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.card-experience__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.card-experience__desc {
  font-size: var(--fs-small);
  line-height: 1.7;
  color: #666;
  flex: 1;
}

/* Premium Enquire button */
.card-experience .btn--outline {
  margin-top: 8px;
  padding: 12px 28px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid #2E4A2B;
  color: #2E4A2B;
  background: transparent;
  align-self: flex-start;
  box-shadow: none;
}

.card-experience .btn--outline:hover {
  background: #2E4A2B;
  border-color: #2E4A2B;
  color: #fff;
  box-shadow: 0 4px 16px rgba(46, 74, 43, 0.2);
}

.card-experience .btn--outline:active {
  transform: scale(0.97);
  transition-duration: 0.1s;
}

/* Stagger for premium grid (0.15s increments) */
.experience-grid--premium > .reveal:nth-child(1) { transition-delay: 0s; }
.experience-grid--premium > .reveal:nth-child(2) { transition-delay: 0.15s; }
.experience-grid--premium > .reveal:nth-child(3) { transition-delay: 0.3s; }
.experience-grid--premium > .reveal:nth-child(4) { transition-delay: 0.45s; }
.experience-grid--premium > .reveal:nth-child(5) { transition-delay: 0.6s; }
.experience-grid--premium > .reveal:nth-child(6) { transition-delay: 0.75s; }
.experience-grid--premium > .reveal:nth-child(7) { transition-delay: 0.9s; }
.experience-grid--premium > .reveal:nth-child(8) { transition-delay: 1.05s; }
.experience-grid--premium > .reveal:nth-child(9) { transition-delay: 1.2s; }

.card-experience__cta {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--color-green);
  text-decoration: none;
  margin-top: 4px;
  cursor: pointer;
}

/* ── Curated Grid ── */
.curated-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--card-gap);
  align-items: stretch;
}

@media (min-width: 768px) {
  .curated-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card-curated {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 36px 32px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: none;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.section--cream-alt .card-curated {
  background: #ffffff;
}

.card-curated:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.card-curated:focus-visible {
  outline: 2px solid var(--color-green);
  outline-offset: 3px;
}

/* Featured card — The Private Circle */
.card-curated--featured {
  border: 2px solid #2E4A2B;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transform: scale(1.02);
}

.card-curated--featured:hover {
  transform: scale(1.02) translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.card-curated__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  background: #2E4A2B;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.card-curated__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
}

.card-curated__desc {
  font-size: var(--fs-small);
  line-height: 1.7;
  opacity: 0.75;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.card-curated__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.card-curated__features li {
  padding: 6px 0;
  font-size: var(--fs-small);
  line-height: 1.5;
  color: var(--color-black);
  opacity: 0.8;
  padding-left: 16px;
  text-indent: -16px;
}

.card-curated__features li::before {
  content: "•";
  margin-right: 8px;
  color: var(--color-green);
  opacity: 0.7;
}

/* Stagger animation */
.curated-grid > .card-curated:nth-child(1) { transition-delay: 0s; }
.curated-grid > .card-curated:nth-child(2) { transition-delay: 0.15s; }
.curated-grid > .card-curated:nth-child(3) { transition-delay: 0.3s; }

/* ── Pricing Grid ── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--card-gap);
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.card-pricing {
  padding: 40px 32px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-pricing__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--color-green);
  color: var(--color-white);
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  align-self: flex-start;
}

.card-pricing__tier {
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
}

.card-pricing__price {
  font-size: var(--fs-h2);
  font-weight: var(--fw-light);
  line-height: 1;
}

.card-pricing__price span {
  font-size: var(--fs-small);
  font-weight: var(--fw-regular);
  opacity: 0.6;
}

.card-pricing__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.card-pricing__features li {
  font-size: var(--fs-small);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.card-pricing__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: var(--fw-semibold);
}

/* ── Reviews Grid ── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--card-gap);
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card-review {
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-review__stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
}

.card-review__text {
  font-size: var(--fs-small);
  line-height: 1.7;
  font-style: italic;
  opacity: 0.85;
  flex: 1;
}

.card-review__author {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
}

.card-review__date {
  font-size: var(--fs-label);
  opacity: 0.5;
}

/* ── Rating Badge ── */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
}

/* ── Two Columns ── */
.two-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--card-gap);
}

@media (min-width: 768px) {
  .two-columns {
    grid-template-columns: 1fr 1fr;
  }
}

.two-columns__col h3 {
  font-size: var(--fs-h3);
  font-weight: var(--fw-light);
  margin-bottom: 16px;
}

.two-columns__col li {
  font-size: var(--fs-body);
  line-height: 1.75;
  margin-bottom: 8px;
  opacity: 0.85;
}

/* ── Receive Images Grid ── */
.receive-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .receive-images {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    min-height: 500px;
  }
}

.receive-images__main {
  border-radius: 10px;
  overflow: hidden;
}

.receive-images__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.receive-images__stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.receive-images__stack img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Image reveal animations */
.receive-img--left.reveal {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.receive-img--left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.receive-img--right.reveal {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: 0.15s;
}

.receive-img--right-delay.reveal {
  transition-delay: 0.3s;
}

.receive-img--right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ── Receive Benefits ── */
.receive-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.receive-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

.receive-benefits li:last-child {
  border-bottom: none;
}

.receive-benefits__check {
  flex-shrink: 0;
  margin-top: 3px;
}

/* Benefits stagger */
.receive-benefits li.reveal {
  opacity: 0;
  transform: translateX(-15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.receive-benefits li.reveal.revealed {
  opacity: 1;
  transform: translateX(0);
}

.receive-benefits li:nth-child(1) { transition-delay: 0s; }
.receive-benefits li:nth-child(2) { transition-delay: 0.15s; }
.receive-benefits li:nth-child(3) { transition-delay: 0.3s; }
.receive-benefits li:nth-child(4) { transition-delay: 0.45s; }
.receive-benefits li:nth-child(5) { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  .receive-benefits li.reveal,
  .receive-images .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .receive-benefits li { transition-delay: 0s !important; }
}

/* ── Friction Cards ── */
.friction-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .friction-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.friction-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px 24px 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
}

.friction-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.friction-card__accent {
  width: 32px;
  height: 2px;
  background: #2E4A2B;
  margin: 0 auto 20px;
  border-radius: 1px;
}

.friction-card__text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
  margin: 0;
  font-weight: 500;
}

.friction-grid > .friction-card:nth-child(1) { transition-delay: 0s; }
.friction-grid > .friction-card:nth-child(2) { transition-delay: 0.15s; }
.friction-grid > .friction-card:nth-child(3) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .friction-card { transition: none; }
  .friction-grid > .friction-card { transition-delay: 0s !important; }
}

/* ── Audience Grid (Who This Is For) ── */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .audience-grid {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
  }
}

.audience-col {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.audience-col--ideal.reveal {
  transform: translateX(-30px);
}

.audience-col--not.reveal {
  transform: translateX(30px);
}

.audience-col.revealed {
  opacity: 1;
  transform: translateX(0);
}

.audience-col__heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 28px;
  color: #2E4A2B;
}

.audience-col--not .audience-col__heading {
  color: #999;
}

.audience-col__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.audience-col__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.95rem;
  line-height: 1.65;
  color: #222;
  transition: transform 0.3s ease;
}

.audience-col__list li:last-child {
  border-bottom: none;
}

.audience-col__list li:hover {
  transform: translateX(4px);
}

.audience-col--not .audience-col__list li {
  color: #888;
  font-size: 0.9rem;
  border-bottom-color: rgba(0, 0, 0, 0.04);
}

.audience-check {
  flex-shrink: 0;
  margin-top: 3px;
}

.audience-dash {
  flex-shrink: 0;
  color: #ccc;
  font-weight: 300;
  margin-top: -1px;
}

/* Audience list item stagger */
.audience-col__list li.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.audience-col__list li.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.audience-col__list li.reveal.revealed:hover {
  transform: translateX(4px);
}

.audience-col__list li:nth-child(1) { transition-delay: 0s; }
.audience-col__list li:nth-child(2) { transition-delay: 0.1s; }
.audience-col__list li:nth-child(3) { transition-delay: 0.2s; }
.audience-col__list li:nth-child(4) { transition-delay: 0.3s; }
.audience-col__list li:nth-child(5) { transition-delay: 0.4s; }
.audience-col__list li:nth-child(6) { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .audience-col,
  .audience-col__list li.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .audience-col__list li { transition-delay: 0s !important; }
}

/* ── Steps ── */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--card-gap);
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.step__number {
  font-size: var(--fs-h2);
  font-weight: var(--fw-light);
  color: var(--color-green);
  line-height: 1;
}

.step__title {
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
}

.step__desc {
  font-size: var(--fs-small);
  line-height: 1.65;
  opacity: 0.7;
}

/* ── Premium Timeline ── */
.timeline {
  position: relative;
  padding-left: 56px;
}

.timeline__line {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: #2E4A2B;
  opacity: 0.2;
  transform-origin: top;
}

.timeline__step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 0 0 48px;
  cursor: default;
  transition: transform 0.15s ease;
}

.timeline__step:last-child {
  padding-bottom: 0;
}

.timeline__step:hover {
  transform: translateX(5px);
}

.timeline__step.reveal.revealed:hover {
  transform: translateX(5px);
  transition: transform 0.15s ease;
}

.timeline__marker {
  position: absolute;
  left: -56px;
  top: 2px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2E4A2B;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  z-index: 1;
}

.timeline__content {
  padding-top: 6px;
}

.timeline__title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 8px;
  color: #111;
}

.timeline__desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #666;
  margin: 0;
}

/* Timeline stagger: fade-in from left, 0.2s increments */
.timeline > .timeline__step.reveal {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline > .timeline__step.reveal.revealed {
  opacity: 1;
  transform: translateX(0);
}

.timeline > .timeline__step.reveal.revealed:hover {
  transform: translateX(5px);
}

.timeline > .timeline__step:nth-child(2) { transition-delay: 0s; }
.timeline > .timeline__step:nth-child(3) { transition-delay: 0.2s; }
.timeline > .timeline__step:nth-child(4) { transition-delay: 0.4s; }
.timeline > .timeline__step:nth-child(5) { transition-delay: 0.6s; }
.timeline > .timeline__step:nth-child(6) { transition-delay: 0.8s; }

/* Animate the line growing down */
.reveal .timeline__line {
  transform: scaleY(0);
  transition: transform 1.2s ease;
}

.revealed .timeline__line,
.reveal.revealed .timeline__line {
  transform: scaleY(1);
}

@media (prefers-reduced-motion: reduce) {
  .timeline > .timeline__step.reveal { opacity: 1; transform: none; transition: none; }
  .timeline > .timeline__step { transition-delay: 0s !important; }
  .reveal .timeline__line { transform: scaleY(1); transition: none; }
}

/* ── Image Grid ── */
.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.image-grid__item {
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.image-grid__item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-base);
  cursor: pointer;
}

.image-grid__item:hover img {
  transform: scale(1.03);
}

/* ── Carousel ── */
.carousel {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}

.carousel:active {
  cursor: grabbing;
}

.carousel__track {
  display: flex;
  gap: 16px;
  will-change: transform;
}

.carousel__track img {
  flex-shrink: 0;
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
  pointer-events: none;
}

@media (min-width: 768px) {
  .carousel__track img {
    width: 380px;
    height: 285px;
  }
}

/* ── Reviews Carousel ── */
.reviews-carousel {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}

.reviews-carousel:active {
  cursor: grabbing;
}

.reviews-carousel__track {
  display: flex;
  gap: 20px;
  will-change: transform;
}

.review-card {
  flex-shrink: 0;
  width: 85vw;
  max-width: 340px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .review-card {
    width: 360px;
    max-width: 400px;
  }
}

.review-card__stars {
  color: #F59E0B;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: var(--fs-small);
  line-height: 1.7;
  color: var(--color-black);
  opacity: 0.8;
  flex: 1;
}

.review-card__author {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--color-black);
}

/* ── Chef Bio ── */
.chef-bio {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--card-gap);
}

@media (min-width: 768px) {
  .chef-bio {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.chef-bio picture {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.chef-bio__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.6s ease;
}

.chef-bio__image:hover {
  transform: scale(1.03);
}

.chef-bio__content h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-light);
  margin-bottom: 20px;
}

.chef-bio__content p {
  font-size: var(--fs-body);
  line-height: 1.75;
  opacity: 0.8;
  margin-bottom: 16px;
}

/* Scroll reveal directions for chef bio */
@media (min-width: 768px) {
  .chef-bio picture.reveal {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .chef-bio picture.reveal.revealed {
    opacity: 1;
    transform: translateX(0);
  }
  .chef-bio__content.reveal {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .chef-bio__content.reveal.revealed {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── Badge ── */
.badge {
  display: inline;
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-green);
}

/* ── Placeholder image ── */
.placeholder-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E5E5E5;
  color: rgba(0, 0, 0, 0.35);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  border-radius: var(--radius-sm);
  min-height: 200px;
}

/* ── CTA Expect Section ── */
.cta-expect__btn-primary {
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-expect__btn-primary:hover {
  background: #2E4A2B;
  border-color: #2E4A2B;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(46, 74, 43, 0.3);
}

.cta-expect__btn-primary:active {
  transform: translateY(-1px) scale(0.97);
  transition-duration: 0.1s;
}

.cta-expect__btn-outline {
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-expect__btn-outline:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-expect__btn-outline:active {
  transform: translateY(-1px) scale(0.97);
  transition-duration: 0.1s;
}

/* Scroll reveal — heading */
.cta-expect__heading.reveal {
  opacity: 0;
  transform: scale(0.95) translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta-expect__heading.reveal.revealed {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Scroll reveal — body elements */
.cta-expect__body.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.2s;
}

.cta-expect__body.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll reveal — buttons enter from sides */
.cta-expect__btn-primary.reveal {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.3s;
}

.cta-expect__btn-primary.reveal.revealed {
  opacity: 1;
  transform: translateX(0);
}

.cta-expect__btn-outline.reveal {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.5s;
}

.cta-expect__btn-outline.reveal.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ── Stealth Link ── */
.stealth-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.stealth-link:hover {
  color: #2E4A2B;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  text-decoration-color: rgba(46, 74, 43, 0.3);
}

/* ── Review Button ── */
.btn-review {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 40px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #2E4A2B;
  background: transparent;
  border: 1.5px solid #2E4A2B;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.1s ease;
}

.btn-review:hover {
  background: #2E4A2B;
  color: #fff;
  border-color: #2E4A2B;
  box-shadow: 0 6px 20px rgba(46, 74, 43, 0.2);
}

.btn-review:hover svg path {
  fill: var(--color-white);
}

.btn-review:active {
  transform: translateY(0) scale(0.97);
}

/* ── Rotating font effect ── */
.rotating-font {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.rotating-font--fading {
  opacity: 0;
}

/* ── Newsletter form overrides (cream bg) ── */
#newsletter-form .form-input {
  color: #000;
  background: #fff;
  min-height: auto;
  padding: 14px 16px;
}

#newsletter-form .form-input::placeholder {
  color: #999;
}

#newsletter-form .form-input:focus {
  border-color: rgba(0, 0, 0, 0.4);
  background: #fff;
}

#newsletter-form .form-input:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.2);
  outline-offset: 2px;
}

/* ── Global cursor pointer for all clickable elements ── */
a,
button,
[role="button"],
[role="link"],
label[for],
.card-experience,
.card-curated,
.card-pricing,
.card-review,
.image-grid__item img,
select,
input[type="checkbox"],
input[type="radio"],
input[type="submit"],
input[type="button"],
input[type="file"] {
  cursor: pointer;
}

/* ── Blurred Background Section ── */
.section--blurred-bg {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.section--blurred-bg__img {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  filter: blur(10px);
  z-index: 0;
}

.section--blurred-bg__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* ── CTA Black Button ── */
.cta-black__heading.reveal {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta-black__heading.revealed {
  opacity: 1;
  transform: scale(1);
}

.btn-cta-black {
  display: inline-block;
  padding: 18px 48px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.1s ease;
}

.btn-cta-black:hover {
  background: #2E4A2B;
  color: #fff;
  border-color: #2E4A2B;
  box-shadow: 0 6px 20px rgba(46, 74, 43, 0.35);
}

.btn-cta-black:active {
  transform: scale(0.97);
}

.btn-cta-black.reveal {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.7s ease, transform 0.7s ease, background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

.btn-cta-black.revealed {
  opacity: 1;
  transform: translateY(0);
}

.btn-cta-black.revealed:active {
  transform: scale(0.97);
}

@media (prefers-reduced-motion: reduce) {
  .cta-black__heading.reveal,
  .btn-cta-black.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Language Toggle ── */
.lang-toggle {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  overflow: hidden;
  margin-left: 12px;
}

.navbar.is-scrolled .lang-toggle {
  border-color: rgba(0, 0, 0, 0.15);
}

.lang-toggle__btn {
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  line-height: 1;
}

.navbar.is-scrolled .lang-toggle__btn {
  color: rgba(0, 0, 0, 0.5);
}

.lang-toggle__btn--active {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.navbar.is-scrolled .lang-toggle__btn--active {
  background: #000;
  color: #fff;
}

.lang-toggle__btn:hover:not(.lang-toggle__btn--active) {
  background: rgba(255, 255, 255, 0.1);
}

.navbar.is-scrolled .lang-toggle__btn:hover:not(.lang-toggle__btn--active) {
  background: rgba(0, 0, 0, 0.05);
}
