:root {
  color-scheme: light;
  --paper: #f4efe6;
  --ink: #26313f;
  --muted: #6b6258;
  --line: #d8cfc2;
  --green: #1f6f5b;
  --gold: #d3953f;
  --deep: #151c25;
}
* { box-sizing: border-box; }
html { min-height: 100%; background: var(--paper); }
body {
  min-height: 100%;
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(216, 207, 194, 0.42) 1px, transparent 1px),
    linear-gradient(0deg, rgba(216, 207, 194, 0.36) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  letter-spacing: 0;
}
.shell {
  display: flex;
  min-height: 100vh;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 34px;
  flex-direction: column;
  justify-content: space-between;
}
.brand-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--paper);
  font-size: 0.92rem;
  font-weight: 800;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  min-height: 58vh;
  gap: 42px;
}
.hero-copy { max-width: 720px; }
.status {
  margin: 0 0 20px;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
}
h1 {
  max-width: 760px;
  margin: 0;
  font-size: 4.4rem;
  line-height: 1.04;
  font-weight: 800;
  text-wrap: balance;
}
.lead {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: 1.45rem;
  line-height: 1.55;
  color: var(--muted);
}
.visual {
  min-height: 380px;
  aspect-ratio: 1.16;
  background: url("/assets/site-visual.svg?v=20260707-final") center / contain no-repeat;
  opacity: 0.98;
}
.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 600;
}
.home-link {
  display: inline-flex;
  margin-top: 30px;
  color: var(--ink);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.compact .hero { min-height: 54vh; }
@media (max-width: 820px) {
  .shell {
    width: min(100% - 28px, 680px);
    min-height: 100svh;
    padding: 24px 0 24px;
  }
  .hero {
    display: flex;
    min-height: 62vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
  }
  .visual {
    width: 100%;
    min-height: 190px;
    aspect-ratio: 1.28;
  }
  h1 { font-size: 2.7rem; line-height: 1.08; }
  .lead { margin-top: 22px; font-size: 1.18rem; line-height: 1.5; }
  .footer { flex-direction: column; gap: 8px; font-size: 0.9rem; }
}
@media (max-width: 390px) {
  h1 { font-size: 2.35rem; }
  .lead { font-size: 1.08rem; }
  .brand-line { font-size: 0.94rem; }
}

