:root {
  --bg: #f6f1e6;
  --bg-soft: #fbf8ef;
  --green: #163a33;
  --green-2: #24463d;
  --text: #1f1f1f;
  --muted: #67645d;
  --line: #ded7c7;
  --accent: #c9d86a;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 78% 72%, rgba(201, 216, 106, 0.22), transparent 24rem),
    radial-gradient(circle at 20% 18%, rgba(22, 58, 51, 0.06), transparent 26rem),
    var(--bg);
}

.site {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.header {
  min-height: 94px;
  display: flex;
  align-items: center;
  padding: 24px clamp(24px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background: rgba(246, 241, 230, 0.86);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  display: block;
  border-radius: 50%;
}

.brand span {
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0;
}

.hero {
  min-height: calc(100vh - 94px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(400px, 1.08fr);
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
  padding: clamp(34px, 5vw, 72px) clamp(24px, 5vw, 76px) clamp(24px, 4vw, 48px);
}

.content {
  max-width: 860px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 30px;
  color: var(--green);
  font-size: clamp(0.95rem, 1.4vw, 1.22rem);
  font-weight: 800;
  letter-spacing: 0.28em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 84px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--green);
}

h1 {
  max-width: 820px;
  margin: 0;
  color: var(--text);
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(3.45rem, 6.15vw, 6.35rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
}

.lead {
  max-width: 760px;
  margin: 32px 0 0;
  color: var(--muted);
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.35vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
}

.soon {
  width: fit-content;
  margin: 34px 0 0;
  padding: 19px 32px;
  border-radius: 999px;
  color: var(--bg-soft);
  background: var(--green);
  box-shadow: 0 14px 30px rgba(22, 58, 51, 0.18);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 800;
  line-height: 1.2;
}

.visual {
  align-self: end;
  justify-self: end;
  width: min(900px, 56vw);
  margin-right: clamp(-34px, -2vw, -16px);
  margin-bottom: clamp(-44px, -4vw, -22px);
}

.visual img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 18px;
    padding-top: 36px;
  }

  .content {
    max-width: 760px;
  }

  .visual {
    width: min(680px, 92vw);
    justify-self: center;
    margin: -18px auto -42px;
  }
}

@media (max-width: 640px) {
  .site {
    overflow: visible;
  }

  .header {
    min-height: 78px;
    padding: 18px 20px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand span {
    font-size: 1.65rem;
  }

  .hero {
    min-height: calc(100vh - 78px);
    padding: 42px 20px 0;
  }

  .eyebrow {
    gap: 14px;
    margin-bottom: 24px;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
  }

  .eyebrow::before {
    width: 46px;
  }

  h1 {
    font-size: clamp(3.08rem, 16vw, 4.6rem);
  }

  .lead {
    margin-top: 28px;
    font-size: clamp(1.35rem, 7vw, 1.9rem);
  }

  .soon {
    margin-top: 30px;
    padding: 17px 24px;
    font-size: 1rem;
  }

  .visual {
    width: min(520px, 112vw);
    margin: -8px -24px -28px auto;
  }
}
