@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --surface: #eee8e3;
  --surface-dark: #ebdaca;
  color: #1b7739;
  background: radial-gradient(
    circle at center,
    var(--surface) 0%,
    var(--surface-dark) 100%
  );
  line-height: 1.5;
  font-weight: 400;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: transparent;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 2rem;
}

.brand-lockup {
  display: grid;
  justify-items: center;
  gap: 0;
  width: min(78vw, 28rem);
}

.logo-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
}

.logo-image {
  display: block;
  width: 100%;
  height: auto;
}

.logo-wordmark {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  justify-items: center;
  margin: 0;
  padding-bottom: 0.2rem;
  color: var(--surface);
  font-family: "Alfa Slab One", serif;
  font-size: clamp(2.4rem, 15vw, 6.5rem);
  line-height: 1;
  letter-spacing: 0.015em;
  text-shadow: 0 3px 10px rgba(255, 255, 255, 0.16);
}

.tagline {
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1b7739;
  font-family: "Roboto", sans-serif;
  font-size: clamp(0.92rem, 2.2vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.contact-block {
  width: 100%;
  margin-top: 1.6rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(27, 119, 57, 0.18);
  color: rgba(27, 119, 57, 0.88);
  font-family: "Roboto", sans-serif;
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  font-weight: 400;
  text-align: center;
}

.contact-block p {
  margin: 0.28rem 0;
}

@media (max-width: 840px) {
  .page-shell {
    padding: 2rem;
  }

  .logo-stage {
    width: 100%;
  }

  .logo-wordmark {
    font-size: clamp(1.9rem, 17vw, 5rem);
    padding-bottom: 0.2em;
  }

  .tagline {
    font-size: clamp(1.4rem, 3vw, 3rem);
    letter-spacing: 0.04em;
  }

  .contact-block {
    margin-top: 1.2rem;
    padding-top: 1rem;
    font-size: 0.95rem;
  }
}
