/*
  TIA EASTERLY — COMING SOON
  Trimmed to only what this single page needs.
  Colors and type pulled from the site's design tokens
  (teal primary, wine secondary, brass ornament, Fraunces + Public Sans).
*/

:root{
  --bg:            #ffffff;
  --ink:           #23262b;
  --ink-soft:      #5b6066;

  --teal:          #1f8fc4;
  --wine:          #d6336c;
  --brass:         #f0a93a;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  --step-4:  clamp(2.6rem, 1.9rem + 3vw, 4.2rem);

  --max-width: 34rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding-top: 18vh;
}

.page-main{ width: 100%; }
.wrap{
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  text-align: center;
}

h1{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.5em;
  color: var(--teal);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
}

.eyebrow{
  display: inline-block;
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wine);
  font-weight: 600;
  margin-bottom: 0.5em;
}

.intro{
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
