:root {
  --paper: #fffdf7;
  --ink: #123d37;
  --muted: #65746f;
  --green: #0c6659;
  --green-deep: #073d37;
  --sun: #dca845;
  --line: rgba(18, 61, 55, 0.14);
  --shadow: 0 28px 80px rgba(7, 61, 55, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 15% 12%, rgba(156, 175, 141, 0.24), transparent 34%),
    linear-gradient(135deg, #fffdf7 0%, #f6f1e8 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.coming-page {
  min-height: calc(100vh - 74px);
}

.coming-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  gap: 54px;
  align-items: center;
  width: min(var(--max), calc(100% - 36px));
  min-height: calc(100vh - 74px);
  margin: 0 auto;
  padding: 54px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(54px, 10vh, 104px);
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: var(--green-deep);
  color: var(--sun);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(52px, 7vw, 102px);
  line-height: 0.92;
  letter-spacing: 0;
}

.lede {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
}

.button.primary {
  border-color: var(--green-deep);
  background: var(--green-deep);
  color: white;
}

.button.light {
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-deep);
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
}

.contact-lines a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.coming-image {
  position: relative;
}

.coming-image::before {
  position: absolute;
  inset: 8% -2% -4% 6%;
  z-index: -1;
  border-radius: 8px;
  background: rgba(12, 102, 89, 0.1);
  content: "";
  transform: rotate(-2deg);
}

.coming-image img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.site-footer {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 28px;
  color: var(--muted);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .coming-hero {
    grid-template-columns: 1fr;
    padding-top: 28px;
  }

  .coming-image {
    order: -1;
  }

  .brand {
    margin-bottom: 38px;
  }
}

@media (max-width: 560px) {
  .coming-hero,
  .site-footer {
    width: calc(100% - 24px);
  }

  h1 {
    font-size: 48px;
  }

  .actions,
  .contact-lines {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
