/* ============================================================
   WE REST AS REPARATIONS : Landing Page
   Palette: Lavender/Plum + Warm Cream + Gold : Luxurious & Dynamic
   ============================================================ */

/* --- TOKENS --- */
:root {
  /* Brand palette, plum/lavender core */
  --plum: #7B5EA7;
  --plum-deep: #5C3D8F;
  --plum-dark: #3E2563;
  --plum-light: #A88CBE;
  --plum-mist: #E8DCF0;
  --lavender: #B8A0D2;
  --lavender-light: #D4C6E6;
  --lavender-pale: #EDE6F5;

  /* Accent, gold for luxury */
  --gold: #C9A84C;
  --gold-warm: #D4B565;
  --gold-light: #E8D5A0;
  --gold-shimmer: #F0E2B8;
  --gold-deep: #A88A35;

  /* Supporting */
  --teal: #3D7272;
  --teal-deep: #2D5A5A;
  --teal-light: #5A9494;
  --teal-pale: #A8CECE;
  --sage: #6A8A5C;
  --sage-light: #8AAF7A;
  --forest: #1A2E28;

  /* Warm neutrals */
  --cream: #FBF6F1;
  --cream-warm: #F5EDE4;
  --cream-deep: #EDE2D4;
  --champagne: #F8F0E6;
  --espresso: #2C1A0E;
  --espresso-soft: #5A4436;
  --white: #FEFCFA;

  /* Semantic */
  --color-bg: var(--cream);
  --color-surface: var(--white);
  --color-text: var(--espresso);
  --color-text-muted: var(--espresso-soft);
  --color-primary: var(--plum);
  --color-primary-hover: var(--plum-deep);

  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Fonts */
  --font-display: 'Comfortaa', 'Trebuchet MS', sans-serif;
  --font-body: 'Work Sans', 'Helvetica Neue', sans-serif;

  /* Misc */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 3px rgba(44, 21, 10, 0.06);
  --shadow-md: 0 4px 16px rgba(62, 37, 99, 0.12);
  --shadow-lg: 0 12px 40px rgba(62, 37, 99, 0.16);
  --shadow-glow: 0 8px 40px rgba(123, 94, 167, 0.18);
  --shadow-gold: 0 4px 24px rgba(201, 168, 76, 0.2);

  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1140px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  min-height: 100dvh;
  line-height: 1.65;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
}
img, svg { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
input, button, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.2; }
p, li { text-wrap: pretty; }
button { cursor: pointer; background: none; border: none; }

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

/* --- DECORATIVE GOLD DIVIDER --- */
.gold-divider {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: var(--space-4) auto;
  border: none;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-6);
  transition: all var(--transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  border-radius: var(--radius-xl);
}
.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}
.btn--full { width: 100%; }
.btn--primary {
  background: var(--plum);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--plum-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--plum);
  color: var(--plum);
}
.btn--outline:hover {
  background: var(--plum);
  color: var(--white);
}
.btn--outline-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-warm));
  color: var(--plum-dark);
  border: none;
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-warm), var(--gold));
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(62, 37, 99, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184, 160, 210, 0.15);
  transition: transform 0.3s var(--transition), box-shadow 0.3s var(--transition);
}
.nav--hidden { transform: translateY(-100%); }
.nav--scrolled { box-shadow: 0 4px 20px rgba(62, 37, 99, 0.25); }
.nav__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-3) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--white);
}
.nav__links {
  display: flex;
  gap: var(--space-5);
}
.nav__links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--gold-light); }
.nav .btn--sm.btn--primary {
  background: var(--gold);
  color: var(--plum-dark);
}
.nav .btn--sm.btn--primary:hover {
  background: var(--gold-warm);
  transform: translateY(-1px);
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6) var(--space-6);
  background: rgba(92, 61, 143, 0.95);
  border-top: 1px solid rgba(184, 160, 210, 0.15);
}
.nav__mobile a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: var(--space-2) 0;
}
.nav__mobile.active { display: flex; }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav .btn--sm { display: none; }
  .nav__hamburger { display: flex; }
}

/* --- HERO --- */
.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-12);
  padding: calc(var(--space-24) + 60px) var(--space-6) var(--space-16);
  padding-left: max(var(--space-6), calc((100vw - var(--content-wide)) / 2));
  padding-right: max(var(--space-6), calc((100vw - var(--content-wide)) / 2));
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201, 168, 76, 0.10) 0%, transparent 45%),
    radial-gradient(ellipse at 20% 70%, rgba(61, 114, 114, 0.06) 0%, transparent 50%),
    linear-gradient(170deg, var(--plum-dark) 0%, var(--plum) 40%, var(--lavender) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M40 40l4-4-4-4-4 4 4 4zm0 20l4-4-4-4-4 4 4 4zm20-20l4-4-4-4-4 4 4 4zm-40 0l4-4-4-4-4 4 4 4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
/* Subtle gold accent line at bottom of hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-warm), transparent);
  opacity: 0.4;
}
.hero__content {
  flex: 1;
  max-width: 600px;
  position: relative;
}
.hero__book {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__hook {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: var(--space-6);
}
.hero__scarcity {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  margin-bottom: var(--space-6);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: var(--radius-full);
  background: rgba(62, 37, 99, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__mockup {
  max-width: 360px;
  height: auto;
  border-radius: 10px;
  border: 2px solid var(--gold);
  box-shadow:
    0 0 0 4px rgba(201, 168, 76, 0.15),
    0 20px 60px rgba(62, 37, 99, 0.35);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero__mockup:hover {
  transform: scale(1.03) rotate(-1deg);
}
.hero__eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-4);
  line-height: 1.08;
}
.hero__subtitle {
  font-size: var(--text-lg);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-6);
}
.hero__details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-6);
  align-items: center;
}
.hero__dot { color: var(--gold); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.hero .btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-warm));
  color: var(--plum-dark);
  font-weight: 700;
}
.hero .btn--primary:hover {
  background: linear-gradient(135deg, var(--gold-warm), var(--gold));
  box-shadow: var(--shadow-gold);
}
.hero .btn--outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.hero .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: calc(var(--space-20) + 60px);
    padding-bottom: var(--space-12);
  }
  .hero__content { max-width: 100%; }
  .hero__details { justify-content: center; }
  .hero__actions { justify-content: center; }
  .hero__title { font-size: var(--text-2xl); }
  .hero__mockup { max-width: 260px; }
}

/* --- AFFIRMATIONS (ROTATING) --- */
.affirmations {
  padding: clamp(var(--space-10), 6vw, var(--space-16)) var(--space-6);
  background: var(--plum-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Gold accent lines top and bottom */
.affirmations::before,
.affirmations::after {
  content: '';
  position: absolute;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-warm), transparent);
  opacity: 0.3;
}
.affirmations::before { top: 0; }
.affirmations::after { bottom: 0; }
.affirmations__inner {
  max-width: var(--content-narrow);
  margin: 0 auto;
  position: relative;
}
.affirmations__track {
  position: relative;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.affirmation {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}
.affirmation.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.affirmation__text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: var(--space-3);
}
.affirmation__cite {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--gold-light);
  font-style: normal;
  letter-spacing: 0.04em;
  opacity: 0.8;
}
.affirmations__dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
}
.affirmations__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.affirmations__dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* --- PROMISE --- */
.promise {
  padding: clamp(var(--space-10), 6vw, var(--space-16)) var(--space-6);
  background: linear-gradient(175deg, var(--lavender-pale) 0%, var(--cream-warm) 100%);
  position: relative;
}
.promise__inner {
  max-width: var(--content-narrow);
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.promise__text {
  font-size: var(--text-base);
  color: var(--espresso-soft);
  line-height: 1.8;
  max-width: 56ch;
  margin: 0 auto;
}

/* --- SECTION TITLES --- */
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--plum-dark);
  text-align: center;
  margin-bottom: var(--space-3);
}
.section-title--left { text-align: left; }
.section-title--light { color: var(--cream); }
.section-title--warm { color: var(--white); }
.section-subtitle {
  font-size: var(--text-sm);
  color: var(--espresso-soft);
  text-align: center;
  margin-bottom: var(--space-10);
  font-weight: 400;
}
.section-subtitle--light { color: rgba(255,255,255,0.7); }

/* --- EXPERIENCE --- */
.experience {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-6);
  background: var(--cream-warm);
  position: relative;
}
.experience__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}
.experience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.exp-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(123, 94, 167, 0.08);
}
.exp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--plum-light), var(--gold), var(--plum-light));
  opacity: 0;
  transition: opacity var(--transition);
}
.exp-card:hover::before { opacity: 1; }
.exp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.exp-card__icon {
  color: var(--gold);
  margin-bottom: var(--space-4);
}
.exp-card__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--plum-dark);
  margin-bottom: var(--space-2);
}
.exp-card__text {
  font-size: var(--text-sm);
  color: var(--espresso-soft);
  line-height: 1.6;
}

.experience__mystery {
  text-align: center;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--plum);
  font-style: italic;
  margin-top: var(--space-10);
  opacity: 0.85;
}

@media (max-width: 900px) {
  .experience__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .experience__grid { grid-template-columns: 1fr; }
}

/* --- HERB CHECK-IN --- */
.herb-checkin {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-6);
  background: linear-gradient(160deg, var(--plum-deep) 0%, var(--teal-deep) 100%);
  position: relative;
  overflow: hidden;
}
.herb-checkin::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.herb-checkin__inner {
  max-width: var(--content-default);
  margin: 0 auto;
  position: relative;
}
.herb-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-4);
  max-width: 800px;
  margin: 0 auto;
}
.herb-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-6) var(--space-4);
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-xl);
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}
.herb-option:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold-warm);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.herb-option__emoji { font-size: 2rem; line-height: 1; }
.herb-option__label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: 1.35;
}

/* Herb Result Card */
.herb-result {
  max-width: 600px;
  margin: 0 auto;
  animation: fadeSlideUp 0.5s ease forwards;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.herb-result__back {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
  padding: var(--space-2) 0;
  cursor: pointer;
  transition: color var(--transition);
}
.herb-result__back:hover { color: var(--white); }
.herb-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin-bottom: var(--space-6);
}
.herb-card__header { margin-bottom: var(--space-4); }
.herb-card__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-1);
}
.herb-card__botanical {
  font-size: var(--text-sm);
  color: var(--gold-light);
  font-style: italic;
}
.herb-card__desc {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}
.herb-card__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(106, 138, 92, 0.3);
  border: 1px solid rgba(106, 138, 92, 0.5);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--sage-light);
  margin-bottom: var(--space-6);
}
.herb-card__tag svg { flex-shrink: 0; color: var(--sage-light); }
.herb-card__study {
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding-top: var(--space-4);
}
.herb-card__finding {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: var(--space-2);
}
.herb-card__citation {
  font-size: var(--text-xs);
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.herb-card__citation:hover { color: var(--white); }

/* Retreat RX */
.retreat-rx {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}
.retreat-rx__logo {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  object-fit: cover;
}
.retreat-rx__content { flex: 1; }
.retreat-rx__question {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--white);
  margin-bottom: var(--space-3);
}
.retreat-rx__tagline {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  margin-top: var(--space-3);
}

@media (max-width: 600px) {
  .herb-options { grid-template-columns: 1fr 1fr; }
  .retreat-rx { flex-direction: column; text-align: center; }
}
@media (max-width: 380px) {
  .herb-options { grid-template-columns: 1fr; }
}

/* --- REST QUIZ --- */
.rest-quiz {
  padding: clamp(var(--space-12), 8vw, var(--space-20)) var(--space-6);
  background: var(--cream);
  text-align: center;
}
.rest-quiz__inner {
  max-width: var(--content-narrow);
  margin: 0 auto;
}
.rest-quiz__desc {
  font-size: var(--text-base);
  color: var(--espresso-soft);
  line-height: 1.75;
  margin-bottom: var(--space-4);
}
.rest-quiz__prompt {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--plum);
  margin-bottom: var(--space-8);
}
.rest-quiz .btn--primary {
  background: var(--plum);
  color: var(--white);
}
.rest-quiz .btn--primary:hover {
  background: var(--plum-deep);
  box-shadow: var(--shadow-md);
}
.rest-quiz__proof {
  font-size: var(--text-xs);
  color: var(--espresso-soft);
  opacity: 0.6;
  margin-top: var(--space-4);
}

/* --- ANTICIPATION COUNTDOWN --- */
.anticipation {
  text-align: center;
  margin-bottom: var(--space-10);
}
.anticipation__label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--plum);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-4);
  font-style: italic;
}
.anticipation__blocks {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
}
.anticipation__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(123, 94, 167, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-6);
  min-width: 90px;
  box-shadow: var(--shadow-sm);
}
.anticipation__number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--plum-deep);
  line-height: 1;
}
.anticipation__unit {
  font-size: var(--text-xs);
  color: var(--espresso-soft);
  margin-top: var(--space-1);
  text-transform: lowercase;
  letter-spacing: 0.04em;
  opacity: 0.7;
}
@media (max-width: 480px) {
  .anticipation__blocks { gap: var(--space-2); }
  .anticipation__block { min-width: 75px; padding: var(--space-3) var(--space-4); }
}

/* --- TICKETS --- */
.tickets {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-6);
  background: var(--champagne);
}
.tickets__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}
.tickets__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: start;
}
.ticket-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  border: 1.5px solid rgba(123, 94, 167, 0.1);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.ticket-card:hover {
  border-color: var(--plum-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}
.ticket-card--featured {
  background: linear-gradient(175deg, var(--plum-deep) 0%, var(--plum-dark) 100%);
  border-color: var(--plum-deep);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}
.ticket-card--featured:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(92, 61, 143, 0.3);
}
.ticket-card__badge {
  position: absolute;
  top: calc(-1 * var(--space-3));
  left: var(--space-6);
  background: linear-gradient(135deg, var(--gold), var(--gold-warm));
  color: var(--plum-dark);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
}
.ticket-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: inherit;
  margin-bottom: var(--space-2);
}
.ticket-card__price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  line-height: 1;
}
.ticket-card--featured .ticket-card__price { color: var(--gold-light); }
.ticket-card:not(.ticket-card--featured) .ticket-card__price { color: var(--plum); }
.ticket-card__dollar {
  font-size: var(--text-lg);
  vertical-align: top;
  margin-right: 2px;
}
.ticket-card__time {
  font-size: var(--text-xs);
  color: var(--plum);
  font-weight: 500;
  margin-bottom: var(--space-4);
}
.ticket-card__list {
  margin-bottom: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.ticket-card__list li {
  font-size: var(--text-sm);
  padding-left: var(--space-5);
  position: relative;
  opacity: 0.85;
}
.ticket-card--featured .ticket-card__list li { color: rgba(255,255,255,0.85); }
.ticket-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.ticket-card--featured .ticket-card__list li::before { background: var(--gold); }
.ticket-card:not(.ticket-card--featured) .ticket-card__list li::before { background: var(--plum-light); }
.ticket-card--featured .btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-warm));
  color: var(--plum-dark);
  font-weight: 700;
}
.ticket-card--featured .btn--primary:hover {
  background: linear-gradient(135deg, var(--gold-warm), var(--gold));
  box-shadow: var(--shadow-gold);
}

@media (max-width: 900px) {
  .tickets__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

/* --- JOURNAL --- */
.journal {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-6);
  background: linear-gradient(175deg, var(--lavender-pale) 0%, var(--cream-warm) 100%);
  position: relative;
  overflow: hidden;
}
.journal__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-12);
  align-items: center;
  position: relative;
}
.journal__book { display: flex; justify-content: center; }
.journal__mockup {
  max-width: 320px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 16px 50px rgba(62, 37, 99, 0.18);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.journal__mockup:hover { transform: scale(1.03); }
.journal__lifestyle {
  max-width: 380px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 16px 50px rgba(62, 37, 99, 0.18);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  object-fit: cover;
}
.journal__lifestyle:hover { transform: scale(1.03); }
.journal__content { max-width: 520px; }
.journal .section-title--left { color: var(--plum-dark); }
.journal__tagline {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--plum);
  margin-bottom: var(--space-4);
  font-style: italic;
}
.journal__desc {
  font-size: var(--text-base);
  color: var(--espresso-soft);
  line-height: 1.75;
  margin-bottom: var(--space-6);
}
.journal__ship-note {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--espresso-soft);
  opacity: 0.7;
  margin-top: 0.5rem;
  font-style: italic;
}

.journal__price-line {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--plum-dark);
  margin-bottom: var(--space-6);
}
.journal__price {
  font-size: var(--text-xl);
  color: var(--gold);
}
.journal__actions { margin-bottom: var(--space-6); }
.journal .btn--primary {
  background: var(--plum);
  color: var(--white);
  font-weight: 700;
}
.journal .btn--primary:hover {
  background: var(--plum-deep);
  box-shadow: var(--shadow-md);
}

/* Pre-order form */
.preorder-form {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-top: var(--space-4);
}
.preorder-form__note {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-4);
}
.preorder-form__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.preorder-form__input {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.preorder-form__input:focus { border-color: var(--gold); }
.preorder-form__input::placeholder { color: rgba(255, 255, 255, 0.35); }
.preorder-form .btn--primary {
  background: var(--teal);
  color: var(--white);
}
.preorder-form .btn--primary:hover {
  background: var(--teal-deep);
}
.preorder-form__small {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--space-3);
  text-align: center;
}

@media (max-width: 900px) {
  .journal__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .journal .section-title--left { text-align: center; }
  .journal__content { max-width: 100%; }
  .journal__book { order: -1; }
  .journal__mockup { max-width: 240px; }
  .journal__lifestyle { max-width: 280px; }
}

/* --- PLAYLIST --- */
.playlist {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-6);
  background: linear-gradient(160deg, var(--teal-deep) 0%, var(--plum-deep) 100%);
  position: relative;
}
.playlist__inner {
  max-width: var(--content-default);
  margin: 0 auto;
}
.playlist__embed {
  max-width: 700px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* --- TESTIMONIALS --- */
.testimonials {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-6);
  background: var(--cream-warm);
}
.testimonials__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  text-align: center;
}
.testimonials__quote {
  max-width: 680px;
  margin: 0 auto var(--space-12);
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-10);
  box-shadow: 0 4px 20px rgba(62, 37, 99, 0.08);
  border-left: 4px solid var(--gold);
  text-align: left;
}
.testimonial-card__text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--espresso);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: var(--space-4);
}
.testimonial-card__cite {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--plum);
  font-style: normal;
  font-weight: 600;
}
@media (max-width: 900px) {
  .testimonial-card { padding: var(--space-6); }
}

/* --- VIDEO TESTIMONIALS --- */
.video-testimonials {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-6);
  background: var(--cream);
}
.video-testimonials__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  text-align: center;
}
.video-testimonials__grid {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  margin-top: var(--space-8);
}
.video-thumb {
  position: relative;
  display: block;
  max-width: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(62, 37, 99, 0.15);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  text-decoration: none;
}
.video-thumb:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(62, 37, 99, 0.25);
}
.video-thumb__img {
  width: 100%;
  height: auto;
  display: block;
}
.video-thumb__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.video-thumb:hover .video-thumb__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
.video-thumb__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-3) var(--space-4);
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  text-align: center;
}
@media (max-width: 900px) {
  .video-testimonials__grid { flex-direction: column; align-items: center; }
  .video-thumb { max-width: 280px; }
}

/* --- ABOUT --- */
.about {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-6);
  background: var(--cream-warm);
}
.about__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-12);
  align-items: center;
}
.about__photo {
  display: flex;
  justify-content: center;
}
.about__img {
  max-width: 320px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 50px rgba(62, 37, 99, 0.15);
  object-fit: cover;
}
@media (max-width: 900px) {
  .about__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about__img { max-width: 260px; margin: 0 auto; }
  .about .section-title--left { text-align: center; }
}
.about__text p {
  font-size: var(--text-base);
  color: var(--espresso-soft);
  line-height: 1.75;
  margin-top: var(--space-4);
}

/* --- SIGH TEASER --- */
.sigh {
  padding: clamp(var(--space-16), 10vw, var(--space-32)) var(--space-6);
  background: linear-gradient(175deg, var(--plum-dark) 0%, var(--plum-deep) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sigh::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center top, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
/* Gold accent line at top */
.sigh::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-warm), transparent);
  opacity: 0.3;
}
.sigh__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-12);
}
.sigh__text {
  flex: 1;
  text-align: left;
}
.sigh__flyer-wrap {
  flex: 0 0 auto;
}
.sigh__flyer {
  max-width: 320px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.sigh__flyer:hover { transform: scale(1.02); }
.sigh__eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.sigh__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: var(--space-6);
}
.sigh__desc {
  font-size: var(--text-base);
  color: rgba(232, 237, 230, 0.8);
  line-height: 1.75;
  margin-bottom: var(--space-6);
  max-width: 50ch;
}
.sigh__details {
  display: flex;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--gold-light);
  margin-bottom: var(--space-8);
}
.sigh__dot { color: var(--plum-light); }

@media (max-width: 900px) {
  .sigh__inner {
    flex-direction: column-reverse;
    text-align: center;
  }
  .sigh__text { text-align: center; }
  .sigh__desc { margin-left: auto; margin-right: auto; }
  .sigh__details { justify-content: center; }
  .sigh__flyer { max-width: 260px; }
}

/* --- FOOTER --- */
.footer {
  padding: var(--space-8) var(--space-6);
  background: var(--forest);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}
.footer__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer__brand {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--cream-warm);
}
.footer__copy {
  font-size: var(--text-xs);
  color: var(--cream-warm);
  opacity: 0.5;
}
.footer__links { display: flex; gap: var(--space-4); }
.footer__links a {
  font-size: var(--text-xs);
  color: var(--cream-warm);
  opacity: 0.6;
  transition: opacity var(--transition);
}
.footer__links a:hover { opacity: 1; }

@media (max-width: 600px) {
  .footer__inner { flex-direction: column; text-align: center; }
}

/* --- ANIMATIONS --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}
