:root {
  color-scheme: light;
  --forest: #173a35;
  --forest-deep: #0e2925;
  --cream: #f4f0e8;
  --paper: #fffdf8;
  --ink: #17312e;
  --muted: #687874;
  --line: rgba(23, 58, 53, 0.16);
  --signal: #a85d50;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 18%, rgba(133, 170, 155, 0.22), transparent 28rem),
    linear-gradient(145deg, var(--paper), var(--cream));
}

body::after {
  position: fixed;
  right: clamp(28px, 6vw, 96px);
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--line);
  content: "";
  pointer-events: none;
}

.shell {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100% - 48px, 1440px);
  min-height: 100svh;
  margin-inline: auto;
  padding: 36px 0 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--paper);
  background: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.brand div {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 500;
}

.brand span:last-child {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  align-self: center;
  padding: clamp(72px, 12vh, 150px) 0;
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--signal);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1 {
  max-width: 1050px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 8.6vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.intro {
  max-width: 640px;
  margin: clamp(34px, 5vw, 60px) 0 0 clamp(0px, 8vw, 120px);
  color: var(--muted);
  font-size: clamp(1.02rem, 1.55vw, 1.34rem);
  line-height: 1.6;
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 32px 0 0 clamp(0px, 8vw, 120px);
  color: var(--forest-deep);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 5px rgba(168, 93, 80, 0.11);
}

footer {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 680px) {
  body::after { right: 18px; }

  .shell {
    width: min(100% - 36px, 1440px);
    padding-top: 24px;
  }

  .hero { padding: 76px 0 62px; }

  h1 {
    font-size: clamp(3.25rem, 15vw, 5.6rem);
    line-height: 0.96;
  }

  .intro, .status { margin-left: 0; }

  footer span:last-child { display: none; }
}
