
:root {
  --bg: #f2eadf;
  --green: #25644f;
  --green-dark: #25644f;
  --text: #39413e;
  --muted: #6e746f;
  --accent: #b48b55;
  --line: rgba(77, 125, 104, 0.22);
  --content: 1440px;
}

* { box-sizing: border-box; }

html {
  background: var(--bg);
  color-scheme: light;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100svh;
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

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

.shell {
  width: min(calc(100% - 96px), var(--content));
  margin-inline: auto;
}

.site-header {
  padding-top: clamp(28px, 4vw, 56px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(180px, 14.5vw, 208px);
  text-decoration: none;
}

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

.domain {
  margin: 0;
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero {
  min-height: 0;
  display: grid;
  align-items: center;
  padding-block: clamp(34px, 4.8vw, 76px) clamp(34px, 4vw, 64px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

h1 {
  margin: 0;
  max-width: 650px;
  color: var(--green-dark);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(56px, 5vw, 76px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 > span { display: block; }

.intro {
  max-width: 535px;
  margin: clamp(24px, 2.5vw, 36px) 0 0;
  font-size: clamp(18px, 1.42vw, 22px);
  line-height: 1.72;
  letter-spacing: -0.012em;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(24px, 2.2vw, 34px);
  color: var(--green-dark);
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 700;
}

.status-icon {
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.hero-media {
  margin: 0;
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  isolation: isolate;
}

.hero-media::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.26) 0 38%, rgba(255,255,255,0) 72%);
  filter: blur(10px);
}

.hero-image {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  object-fit: contain;
  filter: saturate(.95) contrast(.99);
  user-select: none;
  -webkit-user-drag: none;
}

@media (min-width: 1100px) {
  .site-header { padding-top: clamp(30px, 2.35vw, 36px); }
  .brand { margin-left: 20px; }

  .hero {
    align-items: start;
    padding-top: 8px;
  }

  .hero-copy {
    align-self: start;
    top: 143px;
    left: 30px;
  }

  .intro { max-width: 400px; }

  .hero-media {
    top: -48px;
    right: -68px;
    width: min(64vw, 920px);
    justify-self: end;
  }

  .hero-image { max-width: none; }
}

.site-footer {
  padding-bottom: clamp(24px, 3vw, 42px);
}

.footer-inner {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: var(--green-dark);
  font-size: 13px;
  line-height: 1.5;
}

.footer-inner p { margin: 0; }

@media (max-width: 1040px) {
  .shell { width: min(calc(100% - 56px), var(--content)); }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
    gap: 28px;
  }

  h1 { font-size: clamp(52px, 6.2vw, 68px); }
  h1 > span { display: block; }

  .intro { font-size: 18px; }
}

@media (max-width: 820px) {
  .page { overflow: visible; }
  .shell { width: min(calc(100% - 40px), 680px); }
  .site-header { padding-top: 24px; }
  .brand { width: 188px; }
  .domain { display: none; }

  .hero {
    align-items: start;
    padding-block: 44px 28px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-copy { max-width: 620px; }

  h1 {
    max-width: 100%;
    font-size: clamp(44px, 10.5vw, 58px);
    line-height: 1.04;
  }

  h1 > span { display: block; }

  .intro {
    max-width: 600px;
    margin-top: 24px;
    font-size: clamp(17px, 4.4vw, 19px);
    line-height: 1.65;
  }

  .status { margin-top: 22px; }

  .hero-media {
    width: min(100%, 590px);
    margin-inline: auto;
  }

  .hero-image { max-width: none; }

  .site-footer { padding-bottom: 24px; }
  .footer-inner { padding-top: 18px; }
}

@media (max-width: 480px) {
  .shell { width: calc(100% - 32px); }
  .site-header { padding-top: 18px; }
  .brand { width: 160px; }

  .hero { padding-top: 34px; }

  h1 {
    font-size: clamp(42px, 11.5vw, 52px);
    letter-spacing: -0.04em;
  }

  h1 > span { display: block; }

  .intro {
    margin-top: 20px;
    font-size: 16px;
  }

  .status {
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.45;
  }

  .status-icon { width: 24px; height: 24px; }
  .hero-grid { gap: 26px; }
  .footer-inner { font-size: 12px; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy { animation: appear .55s ease-out both; }
  .hero-media { animation: appear .7s .08s ease-out both; }

  @keyframes appear {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
