/* =============================================
   DECCAN QUEEN ON RAILS — Home Page Styles
   ============================================= */

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  /* Fill exactly the visible viewport on every device.
     100dvh = dynamic viewport height (excludes mobile browser chrome).
     100svh = small viewport height (safe fallback for older browsers).
     100vh  = legacy fallback. */
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  /* Subtract fixed nav so content sits inside the visible window */
  height: calc(100vh - var(--nav-height));
  height: calc(100svh - var(--nav-height));
  height: calc(100dvh - var(--nav-height));
  min-height: 480px; /* floor for very short landscape phones */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 4vh, 5rem) 1.5rem clamp(2rem, 5vh, 6rem);
  overflow: hidden;
  background-color: var(--color-background);
  text-align: center;
}

/* Hero background image overlay — keeps text readable */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    hsl(40 30% 96% / 0.72) 0%,
    hsl(38 28% 92% / 0.82) 100%
  );
}

[data-theme="dark"] .hero-bg-overlay {
  background: linear-gradient(
    180deg,
    hsl(20 12% 7% / 0.65) 0%,
    hsl(20 10% 10% / 0.75) 100%
  );
}

/* Background decorations */
.background-decorations {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.gem-1 { top: 5rem;    left: 8%;   width: 2rem;   height: 2.5rem; opacity: 0.2;  animation-delay: 0s; }
.gem-2 { top: 9rem;    right: 12%; width: 3rem;   height: 4rem;   opacity: 0.15; animation-delay: 1s; }
.gem-3 { bottom: 9rem; left: 18%;  width: 5rem;   height: 6rem;   opacity: 0.1;  animation-delay: 2s; }
.gem-4 { bottom: 13rem;right: 9%;  width: 2.2rem; height: 2.75rem;opacity: 0.15; animation-delay: 0.5s; }

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(52px);
}

.orb-left {
  top: 20%; left: -7rem;
  width: 18rem; height: 18rem;
  background: hsl(348 70% 35% / 0.09);
}

.orb-right {
  bottom: 20%; right: -8rem;
  width: 22rem; height: 22rem;
  background: hsl(40 80% 50% / 0.09);
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 54rem;
  width: 100%;
}

.hero-logo {
  width: clamp(52px, 8vw, 72px);
  height: clamp(52px, 8vw, 72px);
  border-radius: 1rem;
  border: 2px solid var(--color-border);
  margin-bottom: clamp(0.75rem, 2vh, 1.25rem);
  object-fit: contain;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin: clamp(0.4rem, 1.5vh, 0.75rem) 0 clamp(0.25rem, 1vh, 0.5rem);
}

.hero-date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 600;
  color: var(--color-foreground-soft);
  margin-bottom: clamp(0.75rem, 2vh, 1.25rem);
}

.hero-date svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-ruby);
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  color: var(--color-foreground-soft);
  max-width: 42rem;
  line-height: 1.65;
  margin-bottom: clamp(1.25rem, 3vh, 2rem);
}

.hero-subtitle strong {
  color: var(--color-foreground);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: clamp(1rem, 2.5vh, 2rem);
}

/* Social proof */
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.avatars {
  display: flex;
}

.avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 2px solid var(--color-card);
  object-fit: cover;
  margin-left: -0.6rem;
  background: var(--color-secondary);
}

.avatar:first-child { margin-left: 0; }

.waitlist-count {
  font-size: 0.92rem;
  color: var(--color-muted-foreground);
}

.count-number {
  color: var(--color-primary);
  font-weight: 700;
}

/* Social links */
.hero-socials {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.hero-socials a {
  color: var(--color-muted-foreground);
  transition: color 0.2s ease;
}

.hero-socials a:hover { color: var(--color-primary); }

.hero-socials svg {
  width: 1.35rem;
  height: 1.35rem;
}

.bottom-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--color-background-alt), transparent);
  pointer-events: none;
}

/* ===================================================
   STAT BAR
   =================================================== */
.stat-bar-wrapper {
  background: var(--color-card);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* ===================================================
   JOURNEY SECTION
   =================================================== */
.journey-section {
  background: var(--color-background);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

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

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

.journey-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.journey-card h3 {
  font-size: 1.15rem;
  font-family: var(--font-display);
}

.journey-card p {
  font-size: 0.9rem;
  color: var(--color-muted-foreground);
  line-height: 1.65;
  flex: 1;
}

.journey-day-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.journey-date {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.journey-day-num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-ruby);
}

.journey-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  background: hsl(348 70% 35% / 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ruby);
}

.journey-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.journey-card-rails-girls .journey-icon {
  background: hsl(348 70% 35% / 0.06);
}

.journey-card-retreat .journey-icon {
  background: hsl(40 80% 50% / 0.1);
  color: var(--color-gold);
}

/* ===================================================
   ABOUT
   =================================================== */
.about-section {
  background: var(--color-background-alt);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 800px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.about-text p {
  color: var(--color-muted-foreground);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.about-text .section-heading {
  margin-bottom: 1.25rem;
}

.about-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.callout-card {
  padding: 1.5rem;
}

.callout-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.callout-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.callout-card p {
  font-size: 0.88rem;
  color: var(--color-muted-foreground);
  line-height: 1.65;
}

/* ===================================================
   SPEAKERS
   =================================================== */
.speakers-section {
  background: var(--color-background);
}

.speakers-coming-soon {
  max-width: 42rem;
  margin: 0 auto;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 0 auto 1.5rem;
}

.speaker-card {
  padding: 0;
  overflow: hidden;
  text-align: center;
  border-radius: 0.5rem;
}

.speaker-card-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: calc(0.5rem - 1px) calc(0.5rem - 1px) 0 0;
}

.speaker-card-body {
  padding: 1rem 1rem 1.25rem;
}

.speaker-card-name {
  font-size: 0.82rem;
  font-weight: 700;
  margin: 0 0 0.3rem;
  color: var(--color-foreground);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.speaker-card-role {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-muted-foreground);
  margin: 0;
}

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

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

.speakers-placeholder {
  text-align: center;
  padding: 3.5rem 2rem;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.placeholder-gems {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.ph-gem {
  width: 3rem;
  height: 3.5rem;
  animation: float 3s ease-in-out infinite;
}

.ph-gem-2 { animation-delay: 0.8s; }
.ph-gem-3 { animation-delay: 1.6s; }

.speakers-placeholder h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.speakers-placeholder p {
  color: var(--color-muted-foreground);
  font-size: 0.95rem;
}

/* ===================================================
   CFP STRIP
   =================================================== */
.cfp-strip {
  background: linear-gradient(135deg, hsl(348 70% 35% / 0.04) 0%, hsl(40 80% 50% / 0.04) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 4rem 0;
}

.cfp-strip-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .cfp-strip-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.cfp-strip-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 0.75rem 0 1rem;
}

.cfp-strip-text p {
  color: var(--color-muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.cfp-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.topic-tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--color-secondary);
  color: var(--color-secondary-foreground);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
}

[data-theme="dark"] .topic-tag {
  background: var(--color-muted);
  color: var(--color-muted-foreground);
}

.cfp-info-card {
  padding: 1.5rem;
}

.cfp-format {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.cfp-format-item {
  text-align: center;
  padding: 0.875rem 0.5rem;
  border-radius: var(--radius-md);
  background: var(--color-muted);
}

.cfp-format-duration {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-ruby);
}

.cfp-format-type {
  font-size: 0.75rem;
  color: var(--color-muted-foreground);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cfp-perk {
  font-size: 0.85rem;
  color: var(--color-muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  padding: 0.75rem;
  background: hsl(348 70% 35% / 0.05);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-ruby);
}

/* ===================================================
   RAILS GIRLS
   =================================================== */
.rails-girls-section {
  background: var(--color-background-alt);
}

.rails-girls-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 800px) {
  .rails-girls-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.rails-girls-text p {
  color: var(--color-muted-foreground);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.rails-girls-visual {
  padding: 2rem;
}

.rg-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-md);
  background: hsl(348 70% 35% / 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ruby);
  margin-bottom: 1rem;
}

.rg-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.rails-girls-visual h3 {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.rg-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rg-points li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--color-foreground-soft);
}

.rg-points svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-success);
  flex-shrink: 0;
}

/* ===================================================
   RETREAT TEASER
   =================================================== */
.retreat-teaser {
  background: linear-gradient(135deg, hsl(40 30% 96%) 0%, hsl(35 35% 90%) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 4.5rem 0;
}

[data-theme="dark"] .retreat-teaser {
  background: linear-gradient(135deg, hsl(20 15% 9%) 0%, hsl(25 12% 12%) 100%);
}

.retreat-teaser-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 800px) {
  .retreat-teaser-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.retreat-teaser-text p {
  color: var(--color-muted-foreground);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
  max-width: 38rem;
}

.retreat-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.retreat-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  padding: 1rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.retreat-emoji {
  font-size: 1.75rem;
}

.retreat-icon-item span:last-child {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-muted-foreground);
  line-height: 1.3;
}

/* ===================================================
   SPONSORS
   =================================================== */
.sponsors-section {
  background: var(--color-background);
}

.sponsor-tiers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.sponsor-tier {
  text-align: center;
}

.sponsor-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.sponsor-tier-badge--platinum {
  color: var(--color-ruby);
  background: hsl(348 70% 35% / 0.08);
  border: 1px solid hsl(348 70% 35% / 0.18);
}

.sponsor-tier-badge--wifi {
  color: var(--color-gold);
  background: hsl(40 80% 50% / 0.1);
  border: 1px solid hsl(40 80% 50% / 0.22);
}

[data-theme="dark"] .sponsor-tier-badge--platinum {
  background: hsl(348 68% 58% / 0.12);
  border-color: hsl(348 68% 58% / 0.25);
}

[data-theme="dark"] .sponsor-tier-badge--wifi {
  background: hsl(40 78% 56% / 0.12);
  border-color: hsl(40 78% 56% / 0.25);
}

.sponsor-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.sponsor-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(40, 25%, 98%);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sponsor-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-border-strong);
}

.sponsor-card--platinum {
  width: 320px;
  height: 128px;
  padding: 1.5rem 2.5rem;
}

.sponsor-card--wifi {
  width: 220px;
  height: 96px;
  padding: 1.25rem 2rem;
}

.sponsor-logo-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.sponsor-more-note {
  text-align: center;
  color: var(--color-muted-foreground);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 3.5rem;
}

@media (max-width: 480px) {
  .sponsor-card--platinum {
    width: 260px;
    height: 104px;
    padding: 1.25rem 1.75rem;
  }

  .sponsor-card--wifi {
    width: 180px;
    height: 84px;
    padding: 1rem 1.5rem;
  }
}

.sponsor-interest {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2.5rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-card);
}

.sponsor-interest-text {
  flex: 1;
  min-width: 16rem;
}

.sponsor-interest-text h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.sponsor-interest-text p {
  font-size: 0.95rem;
  color: var(--color-muted-foreground);
  margin: 0;
}

.sponsor-interest-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 640px) {
  .sponsor-interest { flex-direction: column; align-items: flex-start; }
  .sponsor-interest-actions { width: 100%; }
  .sponsor-interest-actions .btn { flex: 1; justify-content: center; }
}

/* ===================================================
   WAITLIST SECTION
   =================================================== */
.waitlist-section {
  background: var(--color-background-alt);
}

.waitlist-inner {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.waitlist-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

@media (min-width: 560px) {
  .waitlist-form { flex-wrap: nowrap; }
}

.waitlist-form input {
  flex: 1;
  min-width: 0;
  height: 52px;
  padding: 0 1rem;
  font-size: 1rem;
  font-family: var(--font-sans);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-card);
  color: var(--color-foreground);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-form input::placeholder {
  color: var(--color-muted-foreground);
}

.waitlist-form input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px hsl(348 70% 35% / 0.15);
}

.waitlist-form .btn {
  height: 52px;
  white-space: nowrap;
  flex-shrink: 0;
}

.form-message {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.form-message.success { color: var(--color-success); }
.form-message.error   { color: var(--color-destructive); }

/* ===================================================
   TRAIN (already in components.css, kept for reference)
   =================================================== */

/* ===================================================
   SPEAKERS SECTION
   =================================================== */
.speaker-formats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .speaker-formats { grid-template-columns: 1fr; }
}

.speaker-format-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
}

.sf-duration {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.sf-type {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted-foreground);
  margin-bottom: 0.75rem;
}

.sf-desc {
  font-size: 0.88rem;
  color: var(--color-muted-foreground);
  line-height: 1.6;
}

/* ===================================================
   SCHEDULE SECTION
   =================================================== */
.schedule-section {
  background: var(--color-background-alt);
}

.schedule-coming-soon {
  margin-top: 2.5rem;
  text-align: center;
}

.schedule-coming-soon p {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-muted-foreground);
  font-size: 0.92rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-card);
}

.schedule-coming-soon svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--color-ruby);
}

.schedule-coming-soon a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===================================================
   EXPLORE PUNE SECTION
   =================================================== */
.explore-pune-section {
  background: var(--color-background-alt);
}

.explore-pune-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

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

@media (max-width: 520px) {
  .explore-pune-grid { grid-template-columns: 1fr; }
}

.explore-pune-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.explore-pune-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.explore-pune-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.explore-pune-card:hover .explore-pune-img {
  transform: scale(1.04);
}

.explore-pune-card-body {
  padding: 0.85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.explore-pune-card-body .badge-pill {
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
}

.explore-pune-card-body h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0;
}

.explore-pune-card-body p {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  line-height: 1.65;
  margin: 0;
}

.explore-pune-also-visit {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-muted-foreground);
  margin-top: 1rem;
}

/* ===================================================
   CFP SECTION
   =================================================== */
.cfp-section {
  background: var(--color-background);
}

.cfp-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .cfp-inner { grid-template-columns: 1fr; }
}

.cfp-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin: 0.75rem 0 1rem;
}

.cfp-text > p {
  color: var(--color-muted-foreground);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.cfp-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.topic-tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--color-secondary);
  color: var(--color-secondary-foreground);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
}

[data-theme="dark"] .topic-tag {
  background: var(--color-muted);
  color: var(--color-muted-foreground);
}

.cfp-perks h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.cfp-perks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cfp-perks-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--color-foreground-soft);
}

.cfp-perks-list svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-success);
  flex-shrink: 0;
}

.cfp-card {
  padding: 1.5rem;
}

.cfp-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.cfp-formats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.cfp-format-item {
  text-align: center;
  padding: 0.875rem 0.5rem;
  border-radius: var(--radius-md);
  background: var(--color-muted);
}

.cfp-format-duration {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-ruby);
}

.cfp-format-type {
  font-size: 0.7rem;
  color: var(--color-muted-foreground);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cfp-faq-card {
  padding: 1.5rem;
}

.cfp-faq-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.cfp-faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 0.75rem 0;
}

.cfp-faq-item:last-child { border-bottom: none; }

.cfp-faq-item summary {
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-foreground);
}

.cfp-faq-item summary::-webkit-details-marker { display: none; }

.cfp-faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--color-muted-foreground);
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.cfp-faq-item[open] summary::after { content: '−'; }

.cfp-faq-item p {
  margin-top: 0.5rem;
  font-size: 0.87rem;
  color: var(--color-muted-foreground);
  line-height: 1.6;
}

/* ===================================================
   RAILS GIRLS COACHES
   =================================================== */
.rg-coaches-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--color-border);
}

.rg-coaches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .rg-coaches-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   RETREAT SECTION
   =================================================== */
.retreat-section {
  background: var(--color-background-alt);
}

.retreat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

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

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

.retreat-activity-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.retreat-activity-emoji {
  font-size: 2rem;
}

.retreat-activity-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.retreat-activity-card p {
  font-size: 0.88rem;
  color: var(--color-muted-foreground);
  line-height: 1.65;
}

.retreat-info-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
}

@media (max-width: 700px) {
  .retreat-info-bar { grid-template-columns: 1fr; }
}

.retreat-info-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-ruby);
  margin-bottom: 0.4rem;
}

.retreat-info-item p {
  font-size: 0.88rem;
  color: var(--color-muted-foreground);
  line-height: 1.6;
}

/* ===================================================
   VENUE SECTION
   =================================================== */
.venue-section {
  background: var(--color-background);
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

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

.venue-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.venue-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  background: hsl(348 70% 35% / 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ruby);
  font-size: 1.4rem;
}

.venue-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.venue-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.venue-card p {
  font-size: 0.88rem;
  color: var(--color-muted-foreground);
  line-height: 1.65;
}

.venue-tbd {
  display: inline-block;
  font-size: 0.78rem !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold) !important;
  background: hsl(40 80% 50% / 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.25rem;
}

.venue-card-train {
  background: linear-gradient(135deg, hsl(348 70% 35% / 0.04) 0%, hsl(40 80% 50% / 0.04) 100%);
  border-color: hsl(348 70% 35% / 0.15);
}

.venue-train-note {
  font-size: 0.78rem !important;
  color: var(--color-ruby) !important;
  font-weight: 600;
}

.venue-video {
  margin-bottom: 3rem;
}

/* Facade — thumbnail + overlay, no iframe until clicked */
.venue-video-facade {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  background: var(--color-foreground);
}

.venue-video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.venue-video-facade:hover .venue-video-thumb {
  transform: scale(1.03);
}

.venue-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    hsl(0 0% 0% / 0.65) 0%,
    hsl(0 0% 0% / 0.15) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: background 0.2s ease;
}

.venue-video-facade:hover .venue-video-overlay {
  background: linear-gradient(
    to top,
    hsl(0 0% 0% / 0.72) 0%,
    hsl(0 0% 0% / 0.25) 50%,
    transparent 100%
  );
}

.venue-video-play {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: hsl(0 0% 100% / 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ruby);
  box-shadow: 0 4px 24px hsl(0 0% 0% / 0.3);
  transition: transform 0.2s ease, background 0.2s ease;
}

.venue-video-play svg {
  width: 1.75rem;
  height: 1.75rem;
  margin-left: 3px; /* optical centre for play icon */
}

.venue-video-facade:hover .venue-video-play {
  transform: scale(1.1);
  background: hsl(0 0% 100% / 1);
}

.venue-video-meta {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  text-align: left;
}

.venue-video-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.3rem;
}

.venue-video-meta p {
  color: hsl(0 0% 100% / 0.9);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

/* Active iframe (injected by JS) */
.venue-video-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.venue-video-caption {
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-muted-foreground);
  margin-top: 0.75rem;
}

.venue-group-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-ruby);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.venue-group-label::before {
  content: '';
  width: 2rem;
  height: 2px;
  background: var(--color-ruby);
  border-radius: 2px;
  flex-shrink: 0;
}

.venue-group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.venue-visa-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.75rem 2rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
}

.venue-visa-text h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.venue-visa-text p {
  font-size: 0.88rem;
  color: var(--color-muted-foreground);
  line-height: 1.65;
  max-width: 44rem;
}

.venue-visa-text a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===================================================
   CONTACT SECTION
   =================================================== */
.contact-section {
  background: var(--color-background-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

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

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  background: hsl(348 70% 35% / 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ruby);
}

.contact-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.contact-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-foreground);
}

.contact-card p {
  font-size: 0.88rem;
  color: var(--color-muted-foreground);
}

.contact-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 0.25rem;
}

.coc-section {
  padding: 2.5rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
}

.coc-section h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.coc-section p {
  font-size: 0.92rem;
  color: var(--color-muted-foreground);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.coc-section p:last-child { margin-bottom: 0; }

.coc-section a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===================================================
   HERITAGE — Kolam dot pattern layered over hero image
   =================================================== */
.hero {
  background-image:
    radial-gradient(circle, hsl(348 70% 35% / 0.055) 1.5px, transparent 1.5px),
    radial-gradient(circle, hsl(40 80% 50% / 0.04) 1px, transparent 1px),
    url("/dqor/hero-bg.jpg");
  background-size: 28px 28px, 14px 14px, cover;
  background-position: 0 0, 7px 7px, center center;
  background-repeat: repeat, repeat, no-repeat;
}

/* ===================================================
   HERITAGE — Arch / Mehrab divider between sections
   Used at bottom of a section; fill matches section below
   =================================================== */
.arch-divider {
  line-height: 0;
  position: relative;
  display: block;
  overflow: hidden;
}

.arch-divider svg {
  display: block;
  width: 100%;
  height: 48px;
}

.arch-divider--to-bg     { color: var(--color-background); }
.arch-divider--to-bg-alt { color: var(--color-background-alt); }
.arch-divider--to-card   { color: var(--color-card); }

/* Section label saffron variant — for culture/heritage sections */
.section-label--saffron {
  color: var(--color-saffron);
}
.section-label--saffron::before {
  background: var(--color-saffron);
}

/* Section label gold variant */
.section-label--gold {
  color: var(--color-gold);
}
.section-label--gold::before {
  background: var(--color-gold);
}

/* ===================================================
   HERITAGE — Marathi welcome text in hero
   =================================================== */
.hero-marathi {
  font-family: 'Noto Sans Devanagari', 'Mangal', sans-serif;
  font-size: 0.95rem;
  color: var(--color-saffron);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

/* ===================================================
   HERITAGE — Marathi inline word with hover tooltip
   Usage: <span class="mr" data-en="English meaning">मराठी शब्द</span>
   =================================================== */
.mr {
  font-family: 'Noto Sans Devanagari', 'Mangal', sans-serif;
  color: var(--color-saffron);
  font-weight: 600;
  cursor: help;
  position: relative;
  text-decoration: underline dotted;
  text-decoration-color: hsl(28 88% 50% / 0.5);
  text-underline-offset: 3px;
  white-space: nowrap;
}

.mr::after {
  content: attr(data-en);
  position: absolute;
  bottom: calc(100% + 7px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-foreground);
  color: var(--color-background);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  transform: translateX(-50%) translateY(3px);
  z-index: 20;
}

.mr:hover::after,
.mr:focus::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.mr::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%) translateY(3px);
  border: 5px solid transparent;
  border-top-color: var(--color-foreground);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 20;
}

.mr:hover::before,
.mr:focus::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===================================================
   HERITAGE — Decorative paithani border motif
   Thin repeating geometric border, top of sections
   =================================================== */
.heritage-border-top {
  border-top: 3px solid transparent;
  border-image: repeating-linear-gradient(
    90deg,
    var(--color-saffron) 0px,
    var(--color-saffron) 6px,
    var(--color-gold) 6px,
    var(--color-gold) 10px,
    transparent 10px,
    transparent 14px,
    var(--color-ruby) 14px,
    var(--color-ruby) 18px,
    transparent 18px,
    transparent 22px
  ) 1;
}

/* ===================================================
   TICKETS SECTION
   =================================================== */
.tickets-section {
  background: var(--color-background);
  padding: 5rem 0 0;
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .tickets-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

.ticket-card {
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--color-border);
  background: var(--color-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.2s ease, border-color 0.2s ease;
}

.ticket-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.ticket-card--conference { border-top: 4px solid var(--color-ruby); }
.ticket-card--rails-girls { border-top: 4px solid var(--color-saffron); }
.ticket-card--retreat { border-top: 4px solid var(--color-gold); }

.ticket-card--featured {
  border-color: var(--color-ruby);
  box-shadow: var(--shadow-ruby);
  position: relative;
}

.ticket-card-header {
  padding: 1.75rem 1.75rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.ticket-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

.ticket-type-badge--conference {
  background: hsl(348 70% 35% / 0.08);
  color: var(--color-ruby);
}

.ticket-type-badge--rails-girls {
  background: hsl(28 88% 50% / 0.1);
  color: var(--color-saffron);
}

.ticket-type-badge--retreat {
  background: hsl(40 80% 50% / 0.1);
  color: hsl(35, 65%, 35%);
}

[data-theme="dark"] .ticket-type-badge--retreat {
  color: var(--color-gold);
}

.ticket-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-foreground);
  margin-bottom: 0.3rem;
}

.ticket-card-date {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-muted-foreground);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ticket-card-date svg {
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
}

.ticket-card-body {
  padding: 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ticket-card-desc {
  font-size: 0.9rem;
  color: var(--color-muted-foreground);
  line-height: 1.65;
}

.ticket-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ticket-includes li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.87rem;
  color: var(--color-foreground-soft);
}

.ticket-includes li svg {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
}

.ticket-check--conference svg { color: var(--color-ruby); }
.ticket-check--rails-girls svg { color: var(--color-saffron); }
.ticket-check--retreat svg { color: var(--color-gold); }

.ticket-card-footer {
  padding: 1.25rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ticket-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.ticket-price-amount {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-foreground);
}

.ticket-price-note {
  font-size: 0.8rem;
  color: var(--color-muted-foreground);
}

.ticket-price-free {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-saffron);
}

/* ===================================================
   HERITAGE — Pune at a Glance (About section addition)
   =================================================== */
.pune-glance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (max-width: 1024px) {
  .pune-glance { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .pune-glance { grid-template-columns: 1fr !important; }
}

.pune-glance-item {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--color-muted);
  border-left: 3px solid var(--color-saffron);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.pune-glance-item .pg-emoji {
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}

.pune-glance-item strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-foreground);
}

.pune-glance-item p {
  font-size: 0.82rem;
  color: var(--color-muted-foreground);
  line-height: 1.5;
  margin: 0;
}

/* ===================================================
   RAILS GIRLS — Application boxes
   =================================================== */
/* Unified Rails Girls notice bar */
.rg-notice {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding: 1.25rem 1.75rem;
  background: hsl(28 88% 50% / 0.06);
  border: 1px solid hsl(28 88% 50% / 0.2);
  border-radius: var(--radius-xl);
}

.rg-notice p {
  flex: 1;
  min-width: 16rem;
  font-size: 0.95rem;
  color: var(--color-foreground-soft);
  margin: 0;
}

.rg-apply-section {
  margin-top: 2.5rem;
}

.rg-apply-card {
  padding: 2rem 2rem 2rem;
}

.rg-apply-header {
  margin-bottom: 1.5rem;
}

.rg-apply-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0.25rem 0 0.5rem;
}

.rg-apply-header p {
  color: var(--color-muted-foreground);
  font-size: 0.95rem;
  max-width: 44rem;
}

.rg-apply-coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  padding: 2rem;
  background: hsl(28 88% 50% / 0.05);
  border-radius: var(--radius-lg);
  border: 1px dashed hsl(28 88% 50% / 0.25);
}

.rg-apply-coming-soon p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-foreground);
}

/* ===================================================
   RETREAT — CTA bar
   =================================================== */
.retreat-cta-bar {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.75rem 2rem;
  background: hsl(40 80% 50% / 0.06);
  border: 1px solid hsl(40 80% 50% / 0.2);
  border-radius: var(--radius-xl);
}

.retreat-cta-text {
  flex: 1;
  min-width: 16rem;
}

.retreat-cta-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: hsl(35, 65%, 35%);
  margin-bottom: 0.25rem !important;
}

[data-theme="dark"] .retreat-cta-label {
  color: var(--color-gold);
}

.retreat-cta-text p:last-child {
  color: var(--color-muted-foreground);
  font-size: 0.9rem;
  margin: 0;
}

.retreat-cta-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
