/* Adjustify Now Open – Centered, Jane-aligned, Brand-forward */

:root {
  --accent: #1f7f86;
  --bg: #f4f6f7;
  --white: #ffffff;
  --text: #1d1d1d;
  --muted: #5f6b6f;
  --border: #e4e8ea;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  text-align: center;
}

.topbar {
  height: 56px;
  background: var(--accent);
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 50px 20px 60px 20px;
}

.logo {
  width: 260px;
  height: auto;
  margin-bottom: 40px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 50px 40px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

.headline {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
}

.slogan {
  margin: 16px 0 22px 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 1.4;
}

.subhead {
  margin: 0 0 16px 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.cta-note {
  margin: 0 0 26px 0;
  font-size: 15px;
  color: var(--muted);
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  padding: 18px 46px;
  border-radius: 8px;
  font-size: 16px;
  letter-spacing: 1px;
  transition: 0.2s ease;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.site-footer {
  margin-top: 46px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.site-footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  text-decoration: underline;
}

.small {
  font-size: 12px;
  margin-top: 14px;
}

@media (max-width: 600px) {
  .headline {
    font-size: 34px;
  }

  .slogan {
    font-size: 19px;
  }

  .logo {
    width: 220px;
  }

  .btn-primary {
    width: 100%;
  }
}
