/* ══════════════════════════════════════════════════
   WORKSHOP PAGE — Finding Your Stillness
   ══════════════════════════════════════════════════ */

/* ── HERO ── */
.ws-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 5% 4rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}
.ws-hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,142,196,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.ws-hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -8%;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(178,205,181,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.ws-hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.1s forwards;
}

.ws-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.ws-hero-content h1 em {
  font-style: italic;
  color: var(--lavender);
}

.ws-hero-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem;
  color: var(--sage-dark);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.ws-hero-desc {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-light);
  max-width: 500px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.ws-hero-meta {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.48s forwards;
}
.ws-meta-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  color: var(--ink-light);
  font-weight: 500;
}
.ws-meta-icon { font-size: 0.9rem; }

.ws-hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.55s forwards;
}
.ws-hero-spots {
  font-size: 0.85rem;
  color: var(--terracotta);
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

/* Glowing CTA button */
.ws-btn-glow {
  position: relative;
  box-shadow: 0 4px 20px rgba(196,113,74,0.35);
  animation: btnPulse 2.5s infinite;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(196,113,74,0.35); }
  50% { box-shadow: 0 6px 32px rgba(196,113,74,0.55); }
}
.ws-btn-large {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

/* ── CREATIVE VISUAL ── */
.ws-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 1.2s 0.3s forwards;
}
.ws-creative-single {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(42,36,32,0.18);
  line-height: 0;
}
.ws-creative-single img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── CONTEXT ── */
.ws-context {
  background: var(--cream-dark);
  text-align: center;
}
.ws-context-inner {
  max-width: 720px;
  margin: 0 auto;
}
.ws-context-text {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--ink-light);
  margin-top: 1rem;
}

/* ── EXPERIENCE ── */
.ws-experience {
  background: var(--cream);
}
.ws-exp-header {
  text-align: center;
  margin-bottom: 3rem;
}
.ws-exp-header .section-title,
.ws-exp-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}
.ws-exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.ws-exp-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.ws-exp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 24px 24px 0 0;
  background: var(--lavender);
  transition: height 0.3s;
}
.ws-exp-card:nth-child(1)::before { background: var(--lavender); }
.ws-exp-card:nth-child(2)::before { background: var(--terracotta); }
.ws-exp-card:nth-child(3)::before { background: var(--sage); }
.ws-exp-card:nth-child(4)::before { background: #C4A35A; }
.ws-exp-card:nth-child(5)::before { background: var(--terracotta-light); }

.ws-exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(42,36,32,0.1);
}
.ws-exp-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.ws-exp-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.ws-exp-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
}
.ws-exp-card-wide {
  grid-column: 1 / -1;
  max-width: 500px;
  margin: 0 auto;
}

/* ── BENEFITS ── */
.ws-benefits {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.ws-benefits::before {
  content: '₹499';
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12rem;
  font-weight: 600;
  color: rgba(255,255,255,0.03);
  letter-spacing: -4px;
  line-height: 1;
  pointer-events: none;
}
.ws-benefits .section-eyebrow { color: var(--terracotta-light); }
.ws-benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.ws-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}
.ws-price-current {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
}
.ws-price-original {
  font-size: 1.2rem;
  color: rgba(250,246,240,0.4);
  text-decoration: line-through;
}
.ws-price-save {
  background: var(--sage);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
}

.ws-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.ws-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: rgba(250,246,240,0.85);
  line-height: 1.5;
}
.ws-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(122,158,126,0.25);
  color: var(--sage-light);
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Bonus card */
.ws-bonus-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.ws-bonus-card::before {
  content: '🎁';
  position: absolute;
  top: -1rem;
  right: -0.5rem;
  font-size: 6rem;
  opacity: 0.06;
  line-height: 1;
}
.ws-bonus-badge {
  display: inline-block;
  background: linear-gradient(135deg, #C4A35A, #D4B96A);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.ws-bonus-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.ws-bonus-subtitle {
  font-size: 0.85rem;
  color: rgba(250,246,240,0.5);
  margin-bottom: 2rem;
}
.ws-bonus-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.ws-bonus-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
}
.ws-bonus-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.ws-bonus-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.ws-bonus-item p {
  font-size: 0.82rem;
  color: rgba(250,246,240,0.6);
  line-height: 1.6;
  margin: 0;
}

/* ── MATERIALS ── */
.ws-materials {
  background: var(--cream-dark);
}
.ws-materials-inner {
  text-align: center;
}
.ws-materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}
.ws-material-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  transition: transform 0.3s;
  text-align: center;
}
.ws-material-card:hover {
  transform: translateY(-4px);
}
.ws-material-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}
.ws-material-card p {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.6;
}
.ws-material-card small {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .ws-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 7rem 5% 4rem;
  }
  .ws-hero-desc { margin-left: auto; margin-right: auto; }
  .ws-hero-meta, .ws-hero-btns { justify-content: center; }
  .ws-hero-visual { order: -1; }
  .ws-creative-single { max-width: 360px; margin: 0 auto; }
  .ws-benefits-layout { grid-template-columns: 1fr; }
  .ws-materials-grid { grid-template-columns: 1fr; max-width: 320px; }
  .ws-exp-card-wide { max-width: 100%; }
}
@media (max-width: 600px) {
  .ws-hero { padding: 6rem 5% 3rem; gap: 2.5rem; }
  .ws-hero-content h1 { font-size: 2.4rem; }
  .ws-price-current { font-size: 2.8rem; }
}
