/* ============================================
   STEADI — Coming Soon Page
   ============================================ */

/* ----- Announcement Hero ----- */

.cs-hero {
  background-color: var(--color-ivory);
  padding: 160px 24px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cs-hero__pattern {
  position: absolute;
  inset: 0;
  background-image: url('../assets/patterns/waves pattern.svg');
  background-size: 800px auto;
  background-repeat: repeat;
  opacity: 0.06;
  pointer-events: none;
}

.cs-hero__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  position: relative;
}

.cs-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-garden-green);
  margin-bottom: 32px;
  padding: 7px 20px;
  border: 1px solid var(--color-garden-green);
  border-radius: 50px;
}

.cs-hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6.5vw, 76px);
  font-weight: 500;
  color: var(--color-carbon);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.cs-hero__subtext {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  color: #666;
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cs-hero__subtext strong {
  color: var(--color-garden-green);
  font-weight: 700;
}

/* ----- Notify Button ----- */

.cs-notify {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cs-notify__hint {
  font-family: var(--font-body);
  font-size: 12px;
  color: #aaa;
  letter-spacing: 0.02em;
}

/* ----- Quotes Section ----- */

.cs-quotes {
  background-color: var(--color-white);
  padding: 100px 24px;
}

.cs-quotes__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.cs-quotes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 28px;
}

.cs-quote {
  padding: 40px 32px 36px;
  border-top: 3px solid var(--color-garden-green);
  background-color: var(--color-ivory);
  border-radius: 2px;
}

.cs-quote:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}

.cs-quote:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.cs-quote:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.cs-quote__text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-carbon);
  margin-bottom: 22px;
}

.cs-quote__source {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-garden-green);
  font-style: normal;
}

/* ----- Wellness Nuggets Section ----- */

.cs-nuggets {
  background-color: var(--color-ivory);
  padding: 120px 24px;
}

.cs-nuggets__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ----- Lifestyle images — face-focused crop ----- */

.cs-lifestyle,
.cs-lifestyle img {
  height: 520px;
  max-height: 520px;
}

/* Three women — faces sit in the upper-middle of the image */
.cs-lifestyle img:first-child {
  object-position: center 22%;
}

/* Woman with coffee — face is higher up, near the top quarter */
.cs-lifestyle img:last-child {
  object-position: center 12%;
}

/* ----- Nav back link ----- */

.cs-back-link {
  font-size: 13px !important;
  color: var(--color-carbon) !important;
  opacity: 0.55;
  transition: opacity 0.2s ease;
  letter-spacing: 0.02em;
}

.cs-back-link:hover {
  opacity: 1;
  color: var(--color-carbon) !important;
}

/* ----- Responsive ----- */

@media (max-width: 1024px) {
  .cs-quotes__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .cs-lifestyle,
  .cs-lifestyle img {
    height: 320px;
    max-height: 320px;
  }

  .cs-hero {
    padding: 140px 24px 100px;
  }

  .cs-hero__subtext {
    font-size: 16px;
  }

  .cs-quotes {
    padding: 80px 24px;
  }

  .cs-nuggets {
    padding: 80px 24px;
  }
}
