/* ============================================================
   HOME PAGE
   ============================================================ */

/* ===== HERO SPINNING BADGE ===== */
.hero-spin-badge {
  width: 170px;
  height: 170px;
  background: var(--color-yellow);
  border-radius: 50%;
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero-spin-badge:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(28, 15, 10, 0.12);
}

.hero-spin-badge__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: hero-badge-spin 13s linear infinite;
}

.hero-spin-badge__ring text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  fill: var(--color-brown);
}

@keyframes hero-badge-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-spin-badge__icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hero-spin-badge {
    width: 130px;
    height: 130px;
    bottom: 16px;
    right: 16px;
  }

  .hero-spin-badge__ring text {
    font-size: 12.5px;
  }

  .hero-spin-badge__icon {
    transform: scale(0.75);
  }
}

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 90vh;
  height: 90dvh;
  min-height: 600px;
}

.hero-text {
  background: var(--color-pale-pink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 80px;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-coral);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(60px, 9vw, 110px);
  line-height: 0.88;
  color: var(--color-brown);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-body {
  font-size: 18px;
  color: var(--color-brown);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 32px;
}

.hero-image {
  background: var(--color-coral);
  overflow: hidden;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1280px) {
  .hero {
    min-height: auto;
    height: auto;
  }

  .hero-text {
    padding: 100px 48px 60px;
  }

  .hero-title {
    font-size: clamp(52px, 7vw, 90px);
  }
}

@media (max-width: 1024px) {
  .hero-text {
    padding: 100px 40px 60px;
  }

  .hero-title {
    font-size: clamp(48px, 6.5vw, 72px);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
  }

  .hero-image {
    order: -1;
    height: 50vh;
    height: 50dvh;
    min-height: 320px;
  }

  .hero-image img {
    width: 120%;
    max-width: none;
    margin-left: -10%;
  }

  .hero-text {
    padding: 60px 48px 80px;
  }

  .hero-title {
    font-size: clamp(52px, 10vw, 80px);
  }
}

@media (max-width: 768px) {
  .hero-image {
    height: 40vh;
    height: 40dvh;
    min-height: 280px;
  }

  .hero-text {
    padding: 48px 28px 60px;
  }

  .hero-title {
    font-size: clamp(52px, 14vw, 80px);
  }
}

.hero-cta {
  display: inline-block;
  align-self: flex-start;
}

@media (max-width: 767px) {
  .hero-cta {
    display: block;
    align-self: stretch;
  }
}

/* ===== FEELING SECTION ===== */
.feeling {
  background: var(--color-blush);
}

.feeling-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.feeling-inner h2 {
  color: var(--color-coral);
  margin-bottom: 36px;
}

.feeling-inner p {
  font-size: 20px;
  line-height: 1.7;
  color: var(--color-brown);
}

.feeling-squiggle {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ===== RETREATS ===== */
.retreats {
  background: var(--color-brown);
}

.retreats h2 {
  color: var(--color-yellow);
  text-align: center;
}

.retreat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.retreat-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
              box-shadow 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Live card — fully clickable with hover */
.retreat-card--live:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
}

.retreat-card--live:hover .retreat-card-image {
  transform: scale(1.03);
}

/* Sold out card — muted, not clickable */
.retreat-card--sold-out {
  opacity: 1;
}

.retreat-card-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.retreat-card-body {
  padding: 28px 28px 32px;
}

.retreat-card-badge {
  margin-bottom: 16px;
}

.retreat-card-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  color: var(--color-brown);
  margin-bottom: 8px;
}

.retreat-card-dates {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-coral);
  margin-bottom: 4px;
}

.retreat-card-location {
  font-size: 14px;
  color: var(--color-brown);
  opacity: 0.7;
  margin-bottom: 16px;
}

.retreat-card-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-brown);
  margin-bottom: 24px;
}

.retreat-card .btn {
  width: 100%;
}

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


/* ===== EMAIL POP-UP (Editorial) ===== */
