/* ══════════════════════════════════════════════
   UNIFIED DESIGN TOKENS  —  ISO STANDARD
   All three pages share this exact root block.
══════════════════════════════════════════════ */
:root {
  /* ── Palette ── */
  --cream: #fdf4ee;
  --ivory: #f9ede4;
  --blush: #f0c6c6;
  --rose: #d4848e;
  --rose-deep: #b05a66;
  --plum: #53082f;
  --plum-mid: #4e2d38;
  --gold: #c09a6b;
  --gold-light: #e8d5b7;
  --sage: #8a9e8c;
  --white: #ffffff;

  /* ── Typography ── */
  --font-body: "DM Sans", sans-serif;
  --font-display: "Cormorant Garamond", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--cream);
  color: var(--plum);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
}

/* ── PETALS — scoped to hero only ── */
#petals-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: 0.78;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  z-index: 200;
}
.nav-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-radius: 100px;
  padding: 0.4rem 0.7rem;
  box-shadow: 0 4px 24px rgba(83, 8, 47, 0.08);
  border: 1px solid rgba(212, 132, 142, 0.15);
}
.nav-logo.inside {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--plum);
}
.nav-logo.inside b {
  color: var(--rose-deep);
}
.nav-pill a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--plum-mid);
  padding: 0.01rem 0.3rem;
  border-radius: 100px;
  transition: all 0.2s ease;
}
.nav-pill a:hover {
  background: var(--ivory);
  color: var(--plum);
}
.nav-apply {
  background: var(--rose-deep) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.4rem !important;
}
.nav-apply:hover {
  background: var(--plum) !important;
}
.nav-item {
  position: relative;
}
.nav-item::after {
  content: "";
  position: absolute;
  top: 100%;
  width: 100%;
  height: 12px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 0.5rem;
  padding-top: 0.8rem; /* ✅ invisible hover bridge — no gap in pointer travel */
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 132, 142, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 999;
}

.dropdown-menu a {
  padding: 0.6rem 1rem;
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--muted);
}

.dropdown-menu a:hover {
  background: var(--petal);
  color: var(--charcoal);
}

.nav-item:hover .dropdown-menu,
.dropdown-menu:hover {
  /* ✅ keeps menu open when pointer is inside it */
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform-origin: center;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 70% at 50% 45%,
      rgba(253, 244, 238, 0.82) 0%,
      rgba(253, 244, 238, 0.52) 45%,
      rgba(253, 244, 238, 0.08) 80%
    ),
    linear-gradient(
      180deg,
      rgba(83, 8, 47, 0.08) 0%,
      rgba(83, 8, 47, 0.18) 60%,
      rgba(83, 8, 47, 0.55) 100%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem;
  max-width: 820px;
  text-align: center;
  margin-top: -7rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--rose-deep);
  text-shadow:
    0 1px 12px rgba(253, 244, 238, 0.9),
    0 0px 28px rgba(253, 244, 238, 0.7);
  animation: fadeUp 0.9s 0.15s ease both;
}
.hero h1 em {
  font-size: 3rem;
  font-style: italic;
  color: var(--plum);
}
.hero-cta {
  margin-top: 2.2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fadeUp 0.9s 0.45s ease both;
}
.btn-primary {
  background: var(--rose-deep);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.2s;
}
.btn-primary:hover {
  background: var(--plum);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1.5px solid rgba(176, 90, 102, 0.55);
  color: var(--rose-deep);
  background: rgba(253, 244, 238, 0.55);
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s;
}
.btn-outline:hover {
  background: rgba(176, 90, 102, 0.1);
  border-color: var(--rose-deep);
}
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: 4rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(176, 90, 102, 0.75);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: fadeUp 1.2s 0.8s ease both;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(176, 90, 102, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.15);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  position: relative;
  z-index: 1;
}
.section-kicker {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 1rem;
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════
   SECTION 1: DAYS CAROUSEL
══════════════════════════════════════════════ */
.days-carousel-section {
  padding: 6rem 0;
  background: var(--ivory);
  overflow: hidden;
}
.days-carousel-header {
  text-align: center;
  margin-bottom: 3.5rem;
  padding: 0 3rem;
}
.days-carousel-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--plum);
}
.carousel-track-wrap {
  position: relative;
}
.carousel-track {
  display: flex;
  gap: 2rem;
  padding: 1rem 3rem 2.5rem 3rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  scroll-padding-left: 3rem;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}
.carousel-track.grabbing {
  cursor: grabbing;
}

.day-slide {
  flex: 0 0 calc(50vw - 3.5rem);
  max-width: 760px;
  min-width: 300px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1.5px solid rgba(224, 198, 180, 0.6);
  border-radius: 2rem;
  overflow: hidden;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.9) inset,
    0 8px 32px rgba(83, 8, 47, 0.09),
    0 2px 8px rgba(176, 90, 102, 0.07);
}
.day-slide:hover {
  transform: translateY(-10px);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.9) inset,
    0 28px 64px rgba(83, 8, 47, 0.16),
    0 6px 18px rgba(176, 90, 102, 0.12);
  border-color: rgba(176, 90, 102, 0.45);
}
.day-slide-img-wrap {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.day-slide-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.day-slide:hover .day-slide-img {
  transform: scale(1.07);
}
.day-slide-img-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  pointer-events: none;
  z-index: 1;
}
.day-slide-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--rose-deep);
  color: var(--white);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 2rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(83, 8, 47, 0.3);
}
.day-slide-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: 2rem;
  font-weight: 600;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

/* ── CARD BODY ── */
.day-slide-body {
  padding: 1.6rem 2rem 2rem;
  flex: 1;
  background: linear-gradient(160deg, #fff 0%, var(--ivory) 100%);
}
.day-slide-body h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 0.5rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.day-slide-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--rose-deep);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(176, 90, 102, 0.12);
}

/* ── SESSION LABELS ── */
.session-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
  background: rgba(176, 90, 102, 0.07);
  border: 1px solid rgba(176, 90, 102, 0.15);
  padding: 0.22rem 0.65rem;
  border-radius: 2rem;
  margin: 1rem 0 0.45rem;
}
.session-subtitle {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--plum-mid);
  font-style: italic;
  margin-bottom: 0.45rem;
  line-height: 1.5;
}
.session-intro {
  display: none;
}
.session-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
}
.session-list li {
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: var(--plum);
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.55;
  font-weight: 400;
}
.session-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--rose-deep);
  font-size: 0.7rem;
  top: 0.1em;
  font-weight: 600;
}
.session-list li em {
  color: var(--rose-deep);
  font-style: italic;
  opacity: 0.8;
}

/* ── CURATED LIST ── */
.curated-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3d72b8;
  background: rgba(61, 114, 184, 0.07);
  border: 1px solid rgba(61, 114, 184, 0.18);
  padding: 0.22rem 0.65rem;
  border-radius: 2rem;
  margin: 1rem 0 0.45rem;
}
.curated-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}
.curated-list li {
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: #3a6aaa;
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
  font-weight: 400;
}
.curated-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: #7aaee8;
  font-size: 0.42rem;
  top: 0.32em;
}
.curated-list li em {
  color: #5a8ec4;
  font-style: italic;
}

/* ── CAROUSEL DOTS ── */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding-top: 0.5rem;
}
.c-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(83, 8, 47, 0.2);
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}
.c-dot.active {
  background: var(--rose-deep);
  transform: scale(1.5);
}

/* ══════════════════════════════════════════════
   SECTION 2: WHO IS IT FOR
══════════════════════════════════════════════ */
.for-section {
  padding: 8rem 3rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.for-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(212, 132, 142, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.for-header {
  text-align: center;
  margin-bottom: 5rem;
}
.for-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--plum);
}
.for-header h2 em {
  font-style: italic;
  color: var(--rose-deep);
}
.for-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1140px;
  margin: 0 auto;
}

/* ── FOR CARD ── */
.for-card {
  background: var(--white);
  border: 1px solid rgba(232, 213, 183, 0.8);
  border-radius: 2rem;
  padding: 3rem 2.2rem 2.8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(83, 8, 47, 0.05);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}
.for-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--rose-deep));
  border-radius: 0 0 2px 2px;
  transition: transform 0.4s ease;
}
.for-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(176, 90, 102, 0.12);
  border-color: rgba(212, 132, 142, 0.5);
}
.for-card:hover::before {
  transform: translateX(-50%) scaleX(1);
}
.for-card-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(212, 132, 142, 0.12),
    rgba(176, 90, 102, 0.08)
  );
  border: 1.5px solid rgba(212, 132, 142, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    transform 0.4s ease;
}
.for-card:hover .for-card-icon-wrap {
  background: linear-gradient(135deg, var(--rose-deep), var(--plum));
  border-color: transparent;
  transform: scale(1.1) rotate(6deg);
}
.for-card-icon-wrap svg {
  width: 28px;
  height: 28px;
  color: var(--rose-deep);
  transition: color 0.3s ease;
}
.for-card:hover .for-card-icon-wrap svg {
  color: var(--white);
}
.for-card-number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(176, 90, 102, 0.45);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.for-card-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.for-card-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--plum-mid);
  margin-bottom: 2rem;
  font-weight: 400;
}

/* ══════════════════════════════════════════════
   SECTION 3: MASONRY GALLERY
══════════════════════════════════════════════ */
.people-section {
  padding: 7rem 0 5rem;
  background: var(--ivory);
  overflow: hidden;
}
.people-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 3rem;
}
.people-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--plum);
}
.people-header p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--plum-mid);
  margin-top: 0.6rem;
  line-height: 1.6;
}
.masonry-grid {
  columns: 4;
  column-gap: 1.2rem;
  padding: 0 3rem;
  width: 100%;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  border-radius: 1.2rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(83, 8, 47, 0.07);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.masonry-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(83, 8, 47, 0.16);
}
.masonry-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
  height: 260px;
}
.masonry-item.masonry-item--tall img {
  height: 380px;
}
.masonry-item.masonry-item--wide img {
  height: 200px;
}
.masonry-item:nth-child(8) img {
  object-position: center;
}
.masonry-item:nth-child(3) img,
.masonry-item:nth-child(7) img {
  height: 340px;
  object-fit: cover;
}
.masonry-item:hover img {
  transform: scale(1.06);
}
.masonry-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.1rem 1rem;
  background: linear-gradient(transparent, rgba(83, 8, 47, 0.78));
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.masonry-item:hover .masonry-caption {
  opacity: 1;
  transform: translateY(0);
}
.masonry-caption span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253, 244, 238, 0.92);
  font-weight: 500;
}

/* ══════════════════════════════════════════════
   SECTION 4: PROGRAM DETAILS
══════════════════════════════════════════════ */
.program-section {
  padding: 8rem 3rem;
  text-align: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.program-section::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(212, 132, 142, 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.program-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  margin-bottom: 4rem;
  color: var(--plum);
}
.program-cards {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 0 auto 5rem;
}

/* ── PROG CARD ── */
.prog-card {
  background: var(--white);
  border: 1px solid rgba(232, 213, 183, 0.8);
  border-radius: 1.6rem;
  padding: 2rem 1.8rem 2.2rem;
  min-width: 180px;
  flex: 1;
  max-width: 215px;
  box-shadow: 0 4px 20px rgba(83, 8, 47, 0.05);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.prog-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--rose-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.prog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(176, 90, 102, 0.12);
  border-color: rgba(212, 132, 142, 0.45);
}
.prog-card:hover::after {
  transform: scaleX(1);
}
.prog-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 132, 142, 0.1);
  border: 1px solid rgba(212, 132, 142, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  flex-shrink: 0;
  transition:
    background 0.3s,
    transform 0.3s;
}
.prog-card:hover .prog-icon {
  background: rgba(176, 90, 102, 0.12);
  transform: scale(1.06);
}
.prog-icon svg {
  width: 22px !important;
  height: 22px !important;
  color: var(--rose-deep);
  flex-shrink: 0;
  display: block;
}
.prog-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  opacity: 0.75;
  margin-bottom: 0.4rem;
}
.prog-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--plum);
  line-height: 1.3;
}
.prog-value.price {
  font-size: 1.75rem;
  color: var(--rose-deep);
}
.prog-value.price::before {
  content: "₹";
  font-size: 1rem;
  vertical-align: super;
  margin-right: 1px;
  opacity: 0.7;
}

.experience-block {
  max-width: 680px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.experience-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--plum-mid);
  font-style: italic;
  margin-top: 0.5rem;
}

/* ── AGENDA ── */
.agenda-wrap {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  text-align: left;
}
.agenda-item {
  background: var(--white);
  border: 1px solid rgba(232, 213, 183, 0.8);
  border-radius: 1.4rem;
  padding: 1.8rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  box-shadow: 0 4px 18px rgba(83, 8, 47, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.agenda-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(176, 90, 102, 0.1);
  border-color: rgba(212, 132, 142, 0.5);
}
.agenda-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: rgba(212, 132, 142, 0.1);
  border: 1.5px solid rgba(212, 132, 142, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.agenda-item:hover .agenda-icon {
  background: rgba(176, 90, 102, 0.15);
  border-color: var(--rose);
}
.agenda-icon svg {
  width: 20px !important;
  height: 20px !important;
  color: var(--rose-deep);
  display: block;
  flex-shrink: 0;
}
.agenda-text h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 0.4rem;
}
.agenda-text p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--plum-mid);
  line-height: 1.7;
  font-weight: 400;
}
.agenda-note {
  grid-column: span 2;
  background: linear-gradient(
    135deg,
    rgba(212, 132, 142, 0.08),
    rgba(176, 90, 102, 0.05)
  );
  border: 1.5px solid rgba(212, 132, 142, 0.25);
  border-radius: 1.4rem;
  padding: 1.5rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}
.agenda-note svg {
  width: 20px !important;
  height: 20px !important;
  color: var(--rose-deep);
  flex-shrink: 0;
  opacity: 0.8;
  display: block;
}
.agenda-note p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--plum-mid);
  line-height: 1.65;
  font-style: italic;
  font-weight: 400;
}
.download-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 2.5rem auto 0;
  padding: 0.85rem 2.4rem;
  border-radius: 50px;
  background: var(--rose-deep);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.35s ease;
  border: 1.5px solid var(--rose-deep);
}
.download-link svg {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
  display: block;
}
.download-link:hover {
  transform: translateY(-3px);
  background: transparent;
  color: var(--rose-deep);
  box-shadow: 0 10px 30px rgba(176, 90, 102, 0.2);
}

/* ══════════════════════════════════════════════
   ASSOCIATION
══════════════════════════════════════════════ */
.association-section {
  padding: 7rem 3rem;
  background: var(--ivory);
}
.association-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.association-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--plum);
  text-align: center;
  margin-bottom: 1rem;
}
.association-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--plum-mid);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}
.association-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 100%;
  margin: 0 auto;
}
.association-card {
  background: var(--white);
  border: 1px solid rgba(232, 213, 183, 0.8);
  border-radius: 0.5rem;
  padding: 2.6rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(83, 8, 47, 0.05);
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}
.association-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(176, 90, 102, 0.12);
}
.assoc-logo-wrap {
  margin: 0 auto 0.1rem;
  width: fit-content;
}
.assoc-abbr {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 0.3rem;
}
.assoc-name {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--rose-deep);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.assoc-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--plum-mid);
  line-height: 1.75;
  font-weight: 400;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--rose-deep);
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Decorative top-edge gradient line */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--rose) 25%,
    var(--gold) 50%,
    var(--rose) 75%,
    transparent 100%
  );
}

/* Subtle petal-dot texture */
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%23f0c6c6' fill-opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

/* ── BRAND ── */
.footer-brand-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: white;
  text-decoration: none;
  line-height: 1;
}

.footer-logo b {
  font-weight: 700;
  color: var(--blush);
}

.footer-tagline {
  font-family: "DM Sans", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(240, 198, 198, 0.4);
}

/* ── ORNAMENT DIVIDER ── */
.footer-ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.8rem;
  width: 100%;
  max-width: 360px;
}

/* ── CONTACT ROW ── */
.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgb(255, 255, 255);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 0.5rem 1.4rem;
  border-radius: 100px;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.footer-contact-link svg {
  opacity: 0.55;
  flex-shrink: 0;
  transition: opacity 0.25s ease;
}

.footer-contact-link:hover {
  color: var(--blush);
  background: rgba(240, 198, 198, 0.06);
}

.footer-contact-link:hover svg {
  opacity: 1;
}

.footer-contact-sep {
  width: 1px;
  height: 18px;
  background: rgba(212, 132, 142, 0.18);
  align-self: center;
  flex-shrink: 0;
}

/* ── SOCIAL ICON CIRCLES ── */
.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgb(255, 255, 255);
  background: rgba(240, 198, 198, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.footer-social-btn:hover {
  background: rgba(212, 132, 142, 0.15);
  border-color: rgba(212, 132, 142, 0.5);
  color: var(--blush);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(83, 8, 47, 0.3);
}

.footer-social-btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* ── COPYRIGHT ── */
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(253, 251, 251, 0.968);
  margin-bottom: 1rem;
}

.footer-copy {
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  color: rgb(255, 255, 255);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-copy span {
  color: rgba(254, 254, 254, 0.55);
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .footer-contact {
    flex-direction: column;
    gap: 0.2rem;
  }

  .footer-contact-sep {
    display: none;
  }

  .footer-logo {
    font-size: 1.6rem;
  }

  .footer-inner {
    padding: 4rem 1.5rem 2.5rem;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .masonry-grid {
    columns: 3;
  }
}
@media (max-width: 1024px) {
  .day-slide {
    flex: 0 0 calc(50vw - 2.5rem);
  }
  .day-slide-img {
    height: 200px;
  }
}
@media (max-width: 900px) {
  .hero-content {
    padding: 0 1.5rem;
  }
  .for-cards {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .agenda-wrap {
    grid-template-columns: 1fr;
  }
  .agenda-note {
    grid-column: span 1;
  }
  footer {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
  .program-section {
    padding: 5rem 1.5rem;
  }
  .days-carousel-section,
  .people-section {
    padding: 5rem 0;
  }
  .for-section {
    padding: 5rem 1.5rem;
  }
  .masonry-grid {
    columns: 2;
    padding: 0 1.5rem;
  }
  .association-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}
@media (max-width: 768px) {
  .day-slide {
    flex: 0 0 calc(100vw - 4rem);
    max-width: 100%;
  }
  .day-slide-img {
    height: 220px;
  }
  .hero-content {
    margin-top: -4rem;
  }
}
@media (max-width: 540px) {
  .masonry-grid {
    columns: 2;
    padding: 0 1rem;
    column-gap: 0.75rem;
  }
  .masonry-item img,
  .masonry-item.masonry-item--tall img,
  .masonry-item.masonry-item--wide img {
    height: 160px;
  }
  .masonry-item:nth-child(3) img,
  .masonry-item:nth-child(7) img {
    height: 200px;
  }
}

/* ── FLOWCHART ── */
.flowchart-wrap {
  margin: 0.8rem 0 0.5rem;
}

.flowchart-step {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  position: relative;
}

.flowchart-step + .flowchart-step {
  margin-top: 0.15rem;
}

.flowchart-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.flowchart-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rose-deep);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(176, 90, 102, 0.35);
}

.flowchart-line {
  width: 2px;
  flex: 1;
  min-height: 10px;
  background: linear-gradient(
    to bottom,
    var(--rose-deep),
    rgba(176, 90, 102, 0.2)
  );
  margin: 2px 0;
}

.flowchart-step:last-child .flowchart-line {
  display: none;
}

.flowchart-content {
  padding-top: 4px;
  padding-bottom: 12px;
}

.flowchart-content strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--plum);
  display: block;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.flowchart-sub {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}

.flowchart-sub li {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--plum-mid);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.flowchart-sub li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--rose);
  font-size: 0.85rem;
  top: 0;
}

/* ── CURATED SUB-LIST (indented inside curated-list) ── */
.curated-sublist {
  list-style: none;
  padding: 0;
  margin: 0.2rem 0 0.4rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.curated-sublist li {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #5a8ec4;
  padding-left: 0.9rem;
  position: relative;
  line-height: 1.45;
}

.curated-sublist li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #7aaee8;
  font-size: 0.7rem;
}

/* ── NAV LOGO IMAGE ── */
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  /* blend out the black background against the white nav pill */
  mix-blend-mode: multiply;
  border-radius: 4px;
}

/* ── FOOTER LOGO IMAGE ── */
.footer-logo-img {
  height: 8rem;
  width: auto;
  display: block;
  /* invert so it reads well on the dark rose footer */
}

/* ── ASSOCIATION LOGO IMAGES ── */
.assoc-logo-img {
  height: 64px;
  width: auto;
  max-width: 180px;
  display: block;
  margin-left: -2rem;
  object-fit: contain;
  border-radius: 8px;
}
