:root {
  --bg-deep: #0a0a14;
  --bg-section: #0f0f1e;
  --bg-card: #161628;
  --bg-card-alt: #1a1a30;
  --fg: #e8e4df;
  --fg-muted: #9a9490;
  --fg-dim: #5c5854;
  --accent: #c9a84c;
  --accent-glow: rgba(201, 168, 76, 0.15);
  --accent-soft: #d4b96a;
  --orchid: #b088d4;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --max-w: 1140px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  pointer-events: none;
}

.hero-orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -10%;
  right: -10%;
}

.hero-orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--orchid) 0%, transparent 70%);
  bottom: -5%;
  left: -8%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: var(--space-md);
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-soft);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: var(--fg-dim);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* === PHILOSOPHY === */
.philosophy {
  padding: var(--space-2xl) var(--space-md);
  background: var(--bg-section);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.philosophy-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.philosophy-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 0.5rem;
}

.philosophy-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--fg);
  margin-bottom: var(--space-md);
}

.philosophy-text p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 640px;
}

/* === OFFERINGS === */
.offerings {
  padding: var(--space-2xl) var(--space-md);
  background: var(--bg-deep);
}

.offerings-header {
  max-width: var(--max-w);
  margin: 0 auto var(--space-lg);
}

.offerings-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--fg);
}

.offerings-cards {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.offering-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: var(--space-lg) var(--space-md);
  transition: border-color 0.3s;
}

.offering-card:hover {
  border-color: rgba(201, 168, 76, 0.15);
}

.offering-card--products {
  background: linear-gradient(165deg, var(--bg-card) 0%, rgba(201, 168, 76, 0.03) 100%);
}

.offering-card--coaching {
  background: linear-gradient(165deg, var(--bg-card) 0%, rgba(176, 136, 212, 0.03) 100%);
}

.offering-icon {
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.offering-card--coaching .offering-icon {
  color: var(--orchid);
}

.offering-card h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.offering-card > p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.offering-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.offering-details li {
  color: var(--fg-muted);
  font-size: 0.85rem;
  padding-left: 1.2rem;
  position: relative;
}

.offering-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.offering-card--coaching .offering-details li::before {
  background: var(--orchid);
}

/* === COACHES / FLYWHEEL === */
.coaches {
  padding: var(--space-2xl) var(--space-md);
  background: var(--bg-section);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.coaches-content {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.coaches-left h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  margin-bottom: var(--space-md);
}

.coaches-big {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--fg-muted);
  line-height: 1.8;
  font-style: italic;
}

.flywheel-step {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.flywheel-step:last-child {
  border-bottom: none;
}

.flywheel-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.flywheel-step h4 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.flywheel-step p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* === CLOSING === */
.closing {
  padding: var(--space-2xl) var(--space-md);
  background: var(--bg-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.closing-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: var(--space-md);
}

.closing h2 em {
  color: var(--accent-soft);
  font-style: italic;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* === FOOTER === */
.site-footer {
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-content {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  justify-content: center;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
}

.footer-divider {
  width: 1px;
  height: 16px;
  background: var(--fg-dim);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-dim);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .offerings-cards {
    grid-template-columns: 1fr;
  }

  .coaches-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .hero {
    min-height: 90vh;
    padding: var(--space-lg) var(--space-sm);
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-orb--1 {
    width: 300px;
    height: 300px;
  }

  .hero-orb--2 {
    width: 250px;
    height: 250px;
  }

  .philosophy,
  .offerings,
  .coaches,
  .closing {
    padding: var(--space-xl) var(--space-sm);
  }

  .footer-content {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .footer-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .offering-card {
    padding: var(--space-md) var(--space-sm);
  }
}

/* ===================================================
   STORE PAGE
   =================================================== */

.store-body {
  background: var(--bg-deep);
}

/* === NAV === */
.store-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.store-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.store-nav-brand {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.store-nav-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border-radius: 100px;
  padding: 4px;
}

.store-nav-tab {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.45rem 1.25rem;
  border-radius: 100px;
  text-decoration: none;
  color: var(--fg-muted);
  transition: all 0.2s;
}

.store-nav-tab:hover {
  color: var(--fg);
}

.store-nav-tab--active {
  background: var(--bg-card-alt);
  color: var(--accent);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

/* === STORE MAIN === */
.store-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md) var(--space-2xl);
}

.store-header {
  margin-bottom: var(--space-lg);
}

.store-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.store-title em {
  font-style: italic;
  color: var(--accent-soft);
}

.store-subtitle {
  color: var(--fg-muted);
  font-size: 1rem;
}

.store-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--fg-dim);
  padding: var(--space-xl) 0;
  font-size: 1rem;
}

/* === INTENTION FILTERS === */
.intention-filters {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.intention-pill {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: var(--fg-muted);
  background: var(--bg-card);
  transition: all 0.2s;
}

.intention-pill:hover {
  border-color: rgba(201, 168, 76, 0.3);
  color: var(--fg);
}

.intention-pill--active {
  color: var(--fg);
  background: var(--bg-card-alt);
  border-color: rgba(201, 168, 76, 0.35);
}

/* intention color accents */
.intention-pill--clarity.intention-pill--active  { border-color: rgba(148, 196, 242, 0.4); color: #94c4f2; }
.intention-pill--protection.intention-pill--active { border-color: rgba(120, 120, 160, 0.5); color: #a0a0d0; }
.intention-pill--abundance.intention-pill--active { border-color: rgba(201, 168, 76, 0.45); color: var(--accent-soft); }
.intention-pill--love.intention-pill--active { border-color: rgba(212, 100, 140, 0.4); color: #d4648c; }

/* === PRODUCT GRID === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
}

.product-card:hover {
  border-color: rgba(201, 168, 76, 0.18);
  transform: translateY(-2px);
}

.product-emoji {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.product-intention-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  color: var(--fg-dim);
  width: fit-content;
  margin-bottom: 0.25rem;
}

.intention-badge--clarity    { color: #94c4f2; background: rgba(148, 196, 242, 0.08); }
.intention-badge--protection { color: #a0a0d0; background: rgba(120, 120, 160, 0.1); }
.intention-badge--abundance  { color: var(--accent-soft); background: var(--accent-glow); }
.intention-badge--love       { color: #d4648c; background: rgba(212, 100, 140, 0.08); }

.product-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
}

.product-desc {
  color: var(--fg-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-xs);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.product-price {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
}

.btn-add {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-add:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
}

/* === COACHES GRID === */
.coaches-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.coach-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  transition: border-color 0.25s;
}

.coach-card:hover {
  border-color: rgba(176, 136, 212, 0.2);
}

.coach-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(176, 136, 212, 0.2) 0%, rgba(201, 168, 76, 0.15) 100%);
  border: 1px solid rgba(176, 136, 212, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--orchid);
  flex-shrink: 0;
}

.coach-info {
  flex: 1;
}

.coach-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.2rem;
}

.coach-specialty {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orchid);
  margin-bottom: var(--space-sm);
}

.coach-bio {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
  max-width: 680px;
}

.coach-footer {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.coach-price {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
}

.btn-book {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(176, 136, 212, 0.15) 0%, rgba(176, 136, 212, 0.05) 100%);
  border: 1px solid rgba(176, 136, 212, 0.35);
  color: var(--orchid);
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.btn-book:hover {
  background: rgba(176, 136, 212, 0.2);
  border-color: var(--orchid);
}

/* === STORE FOOTER === */
.store-footer {
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* === CART TOAST === */
.cart-toast {
  position: fixed;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--bg-card-alt);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 100px;
  padding: 0.75rem 1.5rem;
  font-size: 0.88rem;
  color: var(--fg);
  white-space: nowrap;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 200;
}

.cart-toast--show {
  transform: translateX(-50%) translateY(0);
}

/* === STORE RESPONSIVE === */
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .store-nav-brand {
    font-size: 1rem;
  }

  .coach-card {
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-md);
  }

  .coach-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .intention-filters {
    gap: 0.4rem;
  }

  .store-main {
    padding: var(--space-md) var(--space-sm) var(--space-xl);
  }
}

/* === LANDING PAGE NAV CTA === */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-md);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 100px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.08);
  color: var(--accent);
  text-decoration: none;
  transition: all 0.25s;
}

.hero-cta:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--accent);
}

.offering-card-cta {
  display: inline-block;
  margin-top: var(--space-md);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  transition: all 0.2s;
}

.offering-card--coaching .offering-card-cta {
  color: var(--orchid);
  border-color: rgba(176, 136, 212, 0.25);
}

.offering-card-cta:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
}

.offering-card--coaching .offering-card-cta:hover {
  background: rgba(176, 136, 212, 0.08);
  border-color: var(--orchid);
}