/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, sans-serif;
  color: #1b1b1f;
  background: #f7f7f8;
}

:root {
  --brand: #0f5132;    /* dark green */
  --accent: #6c757d;   /* muted */
  --almond: #c19a6b;   /* almond brown-beige */
}

.title-main {
  font-size: clamp(2rem, 3vw + 1rem, 3.5rem);
  line-height: 1.2;
  margin: 1rem 0 .5rem;
  font-weight: 700;
  color: var(--almond);
}

.subtitle {
  color: #2b2f31;
  font-weight: 600;
  margin: 0 0 .75rem;
}

.slogan {
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.6rem);
  font-weight: 600;
  color: var(--brand); /* dark green */
  margin: 0.25rem 0 1.25rem;
}

.comingsoon {
  font-size: clamp(1rem, 1.2vw + 0.6rem, 1.4rem);
  font-weight: 500;
  color: var(--accent);
  margin: 1rem 0 1.5rem;
  font-style: italic;
}

/* --- Layout --- */
.wrap {
  min-height: 80dvh;
  display: grid;
  place-items: center;
  padding: 4rem 1.25rem;
}
.card {
  width: min(920px, 100%);
  background: white;
  border-radius: 24px;
  padding: clamp(1.5rem, 2vw + 1rem, 3rem);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.06);
  text-align: center;
}
.logo {
  width: min(520px, 80vw);
  height: auto;
  display:block;
  margin: 0 auto 1.25rem;
}
h1 {
  font-size: clamp(1.5rem, 2.2vw + 1rem, 2.75rem);
  line-height: 1.15;
  margin: .25rem 0 .5rem;
  color: var(--brand);
  letter-spacing: .2px;
}
.tagline { color: var(--accent); margin: 0 auto; max-width: 60ch; }

/* Footer */
footer { margin-top: 1.5rem; font-size: .9rem; color:#6b7280; }
footer a { color: var(--brand); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* Hover effect */
@media (prefers-reduced-motion:no-preference) {
  .card { transition: transform .6s cubic-bezier(.2,.8,.2,1), box-shadow .6s; }
  .card:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(0,0,0,.12); }
}

/* Visually hidden but accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

