:root{
  --orange:#FF8200;
  --navy:#0B1F35;
  --bg:#ffffff;

  /* Tennessee iris purple */
  --iris:#6A1B9A;
}

*{
  box-sizing:border-box;
}

html, body{
  height:100%;
}

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--navy);
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(255,130,0,.18), transparent 55%),
    radial-gradient(900px 500px at 85% 30%, rgba(11,31,53,.10), transparent 55%),
    var(--bg);
}

/* Main wrapper */
.wrap{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px 16px;
}

/* Card */
.card{
  width:min(720px, 100%);
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(11,31,53,.10);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(11,31,53,.12);
  padding: 24px 20px 22px;
  text-align:center;

  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}

/* Headline */
.spring-headline{
  margin:0;
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 800;
  letter-spacing:-.4px;
  font-size: clamp(24px, 4.2vw, 38px);
  text-align:center;
}



@media (max-width:480px){
  .iris{
    width:18px;
    height:18px;
  }
  .iris-row{
    gap:8px;
  }
}

/* Logo */
.logo{
  width:100%;
  max-width:240px;
  max-height:38vh;
  height:auto;
  display:block;
}

/* Sub text */
.sub{
  margin:0;
  max-width: 60ch;
  color: rgba(11,31,53,.78);
  font-size: 15px;
  line-height:1.55;
}

/* Immediate needs line */
.urgent{
  margin-top: 28px; /* ≈ 2 lines of space */
  margin-bottom: 4px;
  max-width: 60ch;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
  color: rgba(11,31,53,.92);
}

/* Call to action */
.cta{
  margin-top:4px;
  display:inline-block;
  background: var(--orange);
  color: var(--navy);
  text-decoration:none;
  font-weight: 800;
  padding: 13px 18px;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(255,130,0,.28);
}

.cta:hover{
  filter: brightness(.97);
}

.phone{
  white-space:nowrap;
}

/* Fine print */
.fine{
  margin-top:6px;
  font-size: 13px;
  color: rgba(11,31,53,.70);
}

/* Footer */
.foot{
  position:fixed;
  bottom:10px;
  width:100%;
  text-align:center;
  font-size:12px;
  color: rgba(11,31,53,.55);
}

/* Motion safety */
@media (prefers-reduced-motion: reduce){
  *{
    transition:none !important;
    animation:none !important;
  }
}
