/* ============================================================
   ODACOVA HEALTH — COMING SOON LANDING PAGE
   Standalone page, background color matched to the hero graphic
   so the image blends seamlessly into the page.
   ============================================================ */

:root {
  --bg:       #A7DFDA; /* matches the hero graphic's background */
  --ink:      #12312C; /* dark teal-black, headline */
  --ink-soft: #33534C; /* secondary text */
  --gold:     #C4943D; /* accent — eyebrow label */

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', system-ui, -apple-system, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

.coming-soon {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}
.brand-logo { height: 40px; width: auto; display: block; }

.hero-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  max-width: 900px;
  margin-bottom: 40px;
}

.hero-text {
  flex: 0 1 400px;
  max-width: 400px;
  text-align: left;
}

.hero-graphic {
  flex: 0 1 220px;
  width: 100%;
  max-width: 220px;
  height: auto;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin: 0;
}

h1 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.22;
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
}

.foot-note {
  margin-top: 56px;
  font-size: 0.78rem;
  color: var(--ink-soft);
  max-width: 56ch;
  line-height: 1.6;
}
.foot-note a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
}
.foot-note a:hover { text-decoration: underline; }
.foot-note p { margin: 0; opacity: 0.75; }

@media (max-width: 700px) {
  .hero-row { flex-direction: column; gap: 32px; }
  .hero-text { flex: 0 0 auto; text-align: center; max-width: 480px; }
  .hero-graphic { flex: 0 0 auto; max-width: 200px; }
}
