/* ============================================
   WORKSHOPS PAGE Styles
   ============================================ */

/* ── Page Hero ────────────────────────────── */
.workshops-hero {
  padding: 180px 60px 100px;
  background: linear-gradient(160deg, var(--warm-mid) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}

.workshops-hero::before {
  content: 'RESET';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: 220px;
  font-weight: 300;
  color: rgba(30, 28, 25, 0.2);
  pointer-events: none;
  white-space: nowrap;
}

.workshops-hero .section-label { color: var(--teal-light); }

.workshops-hero .page-hero-title { color: var(--dark); }

.workshops-hero .page-hero-title em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 900;
  color: var(--teal-light);
}

.workshops-hero .page-hero-sub {
  color: rgba(30, 28, 25, 0.6);
}

/* ── Video hero ───────────────────────────── */
.workshops-hero-video {
  background: var(--dark) !important;
}
.workshops-hero-video::before { display: none; }

.workshops-hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  z-index: 0;
}
.workshops-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30,28,25,0.35) 0%, rgba(30,28,25,0.55) 100%);
  z-index: 1;
}
.workshops-hero-video .page-hero-inner { position: relative; z-index: 2; }
.workshops-hero-video .page-hero-title em {
  color: var(--teal);
}

/* ── Photo strip ──────────────────────────── */
.workshops-photo-strip {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4px;
  max-height: 480px;
  overflow: hidden;
}
.workshops-photo-item { overflow: hidden; }
.workshops-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  display: block;
  transition: transform 0.6s ease;
}
.workshops-photo-item:hover img { transform: scale(1.03); }

/* ── Women's Reset Series ─────────────────── */
.reset-series-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream-mid) 100%);
  padding: 120px 60px;
}

.reset-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto 80px;
}

.reset-header .section-title {
  margin: 16px 0 24px;
}

.reset-header .section-title em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 900;
}

.reset-subtitle {
  font-size: 15px;
  line-height: 1.9;
  color: var(--charcoal);
  margin-bottom: 36px;
}

.reset-pricing {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.price-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--cream);
  padding: 16px 28px;
  gap: 4px;
}

.price-pill-vip {
  background: var(--warm-light);
}

.pill-label {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
}

.price-pill-vip .pill-label { color: var(--teal-light); }

.pill-price {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--dark);
}

.price-pill-vip .pill-price { color: var(--dark); }

.pill-price small {
  font-size: 14px;
  color: var(--stone);
}

.vip-note {
  font-size: 12px;
  color: var(--stone);
  max-width: 180px;
  line-height: 1.5;
}

/* Reset header right */
.reset-header-right {
  background: var(--warm-light);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.series-tag {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal-light);
}

.series-count {
  font-family: var(--font-serif);
  font-size: 88px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.series-count span {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
}

.series-location {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(30, 28, 25, 0.5);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.loc-icon { color: var(--teal); margin-top: 2px; flex-shrink: 0; }

/* Events Timeline */
.events-timeline {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.event-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 40px;
  align-items: center;
  background: var(--cream);
  padding: 40px 44px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateX(6px);
  box-shadow: -4px 0 0 var(--teal);
}

.event-past {
  opacity: 0.6;
}

.event-past:hover {
  opacity: 0.8;
  box-shadow: -4px 0 0 var(--taupe);
}

.event-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  border-right: 1px solid var(--sand);
  padding-right: 40px;
}

.event-month {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
}

.event-day {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
  color: var(--dark);
}

.event-year {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--stone);
  letter-spacing: 0.1em;
}

.event-status {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 5px 12px;
  display: inline-block;
  margin-bottom: 12px;
}

.event-status.upcoming {
  background: var(--teal);
  color: var(--dark);
}

.event-status.past {
  background: linear-gradient(135deg, var(--sand) 0%, var(--blush) 100%);
  color: var(--stone);
}

.event-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 10px;
}

.event-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--charcoal);
  opacity: 0.7;
  margin-bottom: 16px;
  max-width: 560px;
}

.event-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.event-tags span {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(74, 124, 116, 0.3);
  padding: 4px 10px;
}

.event-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-event {
  display: inline-block;
  padding: 14px 28px;
  background: var(--warm-light);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--dark);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-event:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--dark);
}

.event-price {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--stone);
}

.event-sold {
  font-size: 12px;
  color: var(--stone);
  letter-spacing: 0.05em;
  font-style: italic;
}

/* ── Girls In Business ───────────────────── */
.gib-section {
  background: linear-gradient(135deg, var(--sand) 0%, var(--blush) 100%);
  padding: 100px 60px;
}

.gib-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.gib-content .section-title {
  margin: 16px 0 24px;
}

.gib-content .section-title em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 900;
}

.gib-content p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--charcoal);
  margin-bottom: 28px;
}

.gib-date {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--taupe);
  border-bottom: 1px solid var(--taupe);
  margin-bottom: 32px;
}

.gib-date-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
}

.gib-date-value {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--dark);
}

.gib-image {
  position: relative;
  overflow: hidden;
}

.gib-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  display: block;
  border-radius: 2px;
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
}

.gib-image:hover .gib-photo {
  transform: scale(1.03);
}

.gib-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(0,184,173,0.25);
  pointer-events: none;
}

/* ── Past Events ──────────────────────────── */
.past-events-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream-mid) 100%);
  padding: 120px 60px;
}

.past-events-sub {
  font-size: 15px;
  color: var(--charcoal);
  opacity: 0.6;
  margin: 16px 0 52px;
  max-width: 500px;
}

.past-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
}

.past-event-card {
  background: var(--cream);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease;
}

.past-event-card:hover {
  transform: translateY(-4px);
}

.past-event-placeholder {
  border: 1px dashed var(--taupe);
  background: transparent;
}

.past-event-top {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.past-event-year {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
}

.past-event-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
}

.past-event-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--charcoal);
  opacity: 0.75;
  flex: 1;
}

.past-event-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.past-event-tags span {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  border: 1px solid var(--sand);
  padding: 3px 8px;
}

/* ── Speaking Section ─────────────────────── */
.speaking-section {
  background: linear-gradient(160deg, var(--warm-light) 0%, var(--warm-mid) 100%);
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.speaking-section::before {
  content: 'SPEAK';
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: 220px;
  font-weight: 300;
  color: rgba(30, 28, 25, 0.15);
  pointer-events: none;
}

.speaking-inner {
  max-width: 760px;
  position: relative;
}

.speaking-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
  margin: 16px 0 28px;
}

.speaking-title em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 900;
  color: var(--teal-light);
}

.speaking-inner p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(30, 28, 25, 0.6);
  margin-bottom: 36px;
}

.speaking-topics {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 44px;
}

.speaking-topic {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(196, 180, 154, 0.12);
  font-size: 14px;
  color: rgba(30, 28, 25, 0.75);
  font-family: var(--font-sans);
  font-weight: 300;
}

.topic-dot { color: var(--teal-light); flex-shrink: 0; }

/* ── Responsive ───────────────────────────── */
@media (max-width: 900px) {
  .workshops-hero { padding: 140px 28px 80px; }

  .reset-series-section { padding: 80px 28px; }
  .reset-header { grid-template-columns: 1fr; gap: 40px; }
  .reset-header-right { padding: 32px 28px; }

  .event-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px;
  }
  .event-date-block {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
    border-right: none;
    border-bottom: 1px solid var(--sand);
    padding-right: 0;
    padding-bottom: 20px;
  }
  .event-day { font-size: 36px; }
  .event-cta-block { align-items: flex-start; }

  .gib-section { padding: 80px 28px; }
  .gib-inner { grid-template-columns: 1fr; gap: 40px; }

  .past-events-section { padding: 80px 28px; }
  .past-events-grid { grid-template-columns: 1fr; }

  .speaking-section { padding: 80px 28px; }
}

/* ── Testimonials ─────────────────────────── */
.testimonials-section {
  background: linear-gradient(160deg, var(--cream-mid) 0%, var(--blush) 100%);
  padding: 120px 60px;
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-inner .section-title {
  margin: 16px 0 64px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.testimonial-card {
  background: var(--white);
  padding: 52px 48px;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(58, 46, 38, 0.08);
  z-index: 1;
}

.testimonial-quote-mark {
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 0.8;
  margin-bottom: 24px;
}

.testimonial-body {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 36px;
}

.testimonial-footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--sand);
  padding-top: 20px;
}

.testimonial-name {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
}

.testimonial-event {
  font-size: 12px;
  font-weight: 300;
  color: var(--stone);
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .testimonials-section {
    padding: 80px 28px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    padding: 36px 28px;
  }
}

/* ── Extra Testimonials ───────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* ── Sah's Picks / Cacao Recommendation ───── */
.sah-picks-section {
  background: var(--white);
  padding: 100px 60px;
  border-top: 1px solid var(--cream-mid);
}

.sah-picks-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.sah-picks-sub {
  font-size: 16px;
  line-height: 1.9;
  color: var(--charcoal);
  max-width: 620px;
  margin-bottom: 56px;
}

.product-feature {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-feature-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid var(--teal);
  padding: 5px 14px;
  margin-bottom: 16px;
}

.product-feature-name {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}

.product-feature-desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--charcoal);
  margin-bottom: 28px;
}

.product-feature-reasons {
  margin-bottom: 28px;
}

.product-reason {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-mid);
  font-size: 14px;
  color: var(--charcoal);
}

.product-reason:last-child { border-bottom: none; }

.reason-dot {
  width: 5px;
  height: 5px;
  min-width: 5px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 8px;
}

.product-feature-use {
  background: var(--cream-mid);
  padding: 20px 24px;
  margin-bottom: 28px;
  border-left: 2px solid var(--teal);
}

.use-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}

.use-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--charcoal);
}

.product-visual-block {
  background: var(--warm-light);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.product-visual-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(74,124,116,0.15) 0%, transparent 70%);
}

.product-visual-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.product-icon-large {
  font-size: 64px;
  color: rgba(30, 28, 25, 0.35);
  margin-bottom: 16px;
  line-height: 1;
}

.product-visual-label {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--dark);
  letter-spacing: 0.02em;
}

.product-visual-sub {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-top: 6px;
}

.product-note {
  font-size: 12px;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.7;
  font-style: italic;
  opacity: 0.7;
}

/* Replace the product-visual-block with a real image when you have it:
   .product-visual-block { background: url('images/cacao.jpg') center/cover no-repeat; }
   .product-visual-inner { display: none; }
*/

@media (max-width: 768px) {
  .sah-picks-section { padding: 60px 24px; }
  .product-feature { grid-template-columns: 1fr; gap: 40px; }
  .product-feature-right { order: -1; }
  .product-visual-block { aspect-ratio: 16/9; }
}

/* ── Dark section text fixes ── */
.speaking-section p,
.speaking-section h2,
.speaking-title,
.speaking-topic { color: var(--charcoal); }
.speaking-title { color: var(--dark) !important; }

/* ── Past Event Videos ──────────────────── */
.past-event-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 20px;
}

.past-event-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 0;
  background: var(--warm-light);
  cursor: pointer;
  display: block;
  transition: opacity 0.3s ease;
}

.past-event-video:hover { opacity: 0.88; }

.past-event-video-note {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 8px;
  text-align: center;
}

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