/*
Theme Name: Ressa Health Coming Soon Minimal
Theme URI: https://ressahealth.com/
Author: Ressa Health
Description: A minimal full-screen coming soon theme for Ressa Health.
Version: 1.0.0
Text Domain: ressa-coming-soon-minimal
*/

:root {
  --ressa-ink: #163c3b;
  --ressa-teal: #0c8f8c;
  --ressa-cream: #fbfaf6;
  --ressa-yellow: #f7bf16;
  --ressa-mint: #dcefea;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--ressa-cream);
  color: var(--ressa-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ressa-coming-soon {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(28px, 5vw, 72px);
  isolation: isolate;
}

.ressa-coming-soon::before,
.ressa-coming-soon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
}

.ressa-coming-soon::before {
  width: clamp(260px, 34vw, 560px);
  aspect-ratio: 1;
  top: -15%;
  right: -8%;
  background: radial-gradient(circle at 50% 50%, rgba(220, 239, 234, .82), rgba(220, 239, 234, 0) 68%);
}

.ressa-coming-soon::after {
  width: clamp(180px, 24vw, 420px);
  aspect-ratio: 1;
  left: -7%;
  bottom: -14%;
  background: radial-gradient(circle at 50% 50%, rgba(247, 191, 22, .17), rgba(247, 191, 22, 0) 70%);
}

.ressa-content {
  width: min(980px, 100%);
  text-align: center;
  transform: translateY(-2vh);
}

.ressa-eyebrow {
  margin: 0 0 clamp(18px, 2vw, 28px);
  color: var(--ressa-teal);
  font-size: clamp(12px, 1.15vw, 15px);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ressa-title {
  max-width: 900px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7.4vw, 112px);
  line-height: .97;
  letter-spacing: -.045em;
  font-weight: 400;
  text-wrap: balance;
}

.ressa-title em {
  color: var(--ressa-teal);
  font-weight: 400;
}

.ressa-copy {
  max-width: 720px;
  margin: clamp(28px, 3.5vw, 46px) auto 0;
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.65;
  color: #456462;
  text-wrap: balance;
}

@media (max-width: 640px) {
  .ressa-coming-soon {
    padding: 28px 24px;
  }

  .ressa-content {
    transform: none;
  }

  .ressa-title {
    font-size: clamp(46px, 14vw, 72px);
    line-height: 1.02;
  }

  .ressa-copy {
    font-size: 17px;
    line-height: 1.6;
  }
}
