:root {
  color-scheme: light;
  --navy: #123c50;
  --teal: #5b9baa;
  --orange: #ef7b35;
  --ink: #1c3441;
  --paper: #fbfcfa;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(91, 155, 170, 0.22), transparent 32rem),
    linear-gradient(150deg, #f8fbfb, var(--paper));
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

.landing-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem;
}

.welcome {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1fr);
  align-items: center;
  width: min(100%, 960px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(18, 60, 80, 0.15);
  border-radius: 1.25rem;
  box-shadow: 0 1.25rem 3.5rem rgba(18, 60, 80, 0.12);
}

.parish-logo {
  display: block;
  width: min(100%, 380px);
  max-height: 490px;
  margin: auto;
  object-fit: contain;
}

.content {
  padding: clamp(2rem, 6vw, 5rem) clamp(2rem, 6vw, 5.5rem) clamp(2.5rem, 7vw, 6rem) 0;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--navy);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.5rem, 6vw, 4.7rem);
  font-weight: 400;
  line-height: 0.98;
}

.message {
  max-width: 33rem;
  margin: 1.8rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.coming-soon {
  display: inline-block;
  margin: 2rem 0 0;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--orange);
  color: white;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

@media (max-width: 680px) {
  .landing-page {
    padding: 1rem;
  }

  .welcome {
    grid-template-columns: 1fr;
  }

  .parish-logo {
    width: min(100%, 280px);
    max-height: 345px;
    margin-top: 1.5rem;
  }

  .content {
    padding: 1.5rem 2rem 2.5rem;
    text-align: center;
  }
}
