:root {
  --page-bg: #f5f0e7;
  --page-bg-2: #efe7d7;
  --ink: #1f221c;
  --green: #5f7757;
  --green-deep: #455b42;
  --line: rgba(93, 110, 80, 0.28);
  --button-bg: rgba(255, 251, 244, 0.8);
  --shadow: 0 18px 40px rgba(76, 71, 56, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.75), transparent 34%),
    radial-gradient(circle at bottom right, rgba(174, 188, 160, 0.16), transparent 32%),
    linear-gradient(180deg, var(--page-bg), var(--page-bg-2));
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
}

body::before {
  right: -8vw;
  top: 26vh;
  width: min(62vw, 46rem);
  height: min(62vw, 46rem);
  background: center / contain no-repeat url("favicon.png");
  filter: grayscale(1) sepia(0.25) saturate(0.65) brightness(1.08);
  opacity: 0.13;
}

body::after {
  left: 4vw;
  bottom: 2.75rem;
  width: 28vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(71, 90, 63, 0.16), transparent);
}

.page-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 1.5rem 1.25rem 1rem;
}

.site-header,
.site-footer {
  display: flex;
  justify-content: center;
  text-align: center;
}

.site-header {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.site-eyebrow {
  margin: 0;
  color: rgba(31, 34, 28, 0.88);
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 7vh, 5rem) 0;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 1.5rem;
}

.logo {
  width: min(52vw, 16.5rem);
  height: auto;
  display: block;
  filter: saturate(0.95) contrast(1.02);
}

.content {
  width: min(100%, 46rem);
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

h1 {
  margin: 0;
  color: var(--green-deep);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Baskerville,
    serif;
  font-size: clamp(2rem, 4.6vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.45);
}

.mission {
  margin: 0;
  max-width: 38rem;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.45;
}

.inquiry {
  margin: 0.5rem 0 0;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.cta {
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 100%;
  padding: 0.95rem 1.1rem;
  border: 2px solid rgba(71, 90, 63, 0.8);
  border-radius: 0.75rem;
  background: var(--button-bg);
  color: var(--green-deep);
  text-decoration: none;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  box-shadow: var(--shadow);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 252, 247, 0.95);
  box-shadow: 0 22px 45px rgba(76, 71, 56, 0.16);
}

.cta:focus-visible {
  outline: 3px solid rgba(95, 119, 87, 0.28);
  outline-offset: 3px;
}

.cta-icon {
  display: inline-flex;
  width: 1.55rem;
  height: 1.55rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(71, 90, 63, 0.5);
  border-radius: 0.35rem;
  font-size: 0.95rem;
  line-height: 1;
  background: rgba(244, 240, 232, 0.9);
}

.site-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 720px) {
  body::before {
    right: -16vw;
    top: 29vh;
    width: min(78vw, 28rem);
    height: min(78vw, 28rem);
    opacity: 0.1;
  }

  .page-shell {
    padding-inline: 1rem;
  }

  .site-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.11em;
  }

  .hero {
    padding-block: 2.15rem 2.6rem;
    gap: 1.25rem;
  }

  .logo {
    width: min(64vw, 14rem);
  }

  .cta {
    width: 100%;
    justify-content: center;
  }
}
