:root {
  color-scheme: light;
  --ink: #1f2528;
  --muted: #5c666b;
  --line: #d8dedc;
  --paper: #f7f4ed;
  --band: #e8eee9;
  --copper: #8a5a36;
  --green: #315f50;
  --blue: #28556d;
  --white: #fffdf8;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(247, 244, 237, 0.96), rgba(232, 238, 233, 0.98)),
    var(--paper);
}

.page-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  gap: 56px;
  align-items: center;
  padding: 54px 0 36px;
  border-bottom: 1px solid var(--line);
}

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

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: 0;
  color: var(--green);
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
  max-width: 860px;
}

.lede {
  max-width: 670px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.56;
}

.identity-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.identity-line span {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.68);
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 700;
}

.hero-mark {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mark img {
  width: min(100%, 420px);
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 30px rgba(31, 37, 40, 0.22));
}

.summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.summary h2 {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 1.06rem;
  line-height: 1.25;
}

.summary p,
.details p {
  color: var(--muted);
  line-height: 1.55;
}

.details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 28px 0 44px;
}

.details p {
  margin-bottom: 0;
}

.details p:not(.label) {
  color: var(--ink);
  font-weight: 700;
}

.label {
  margin-bottom: 4px;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 28px, 680px);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 36px;
  }

  .hero-mark {
    justify-content: flex-start;
  }

  .hero-mark img {
    width: min(78vw, 340px);
  }

  .summary,
  .details {
    grid-template-columns: 1fr;
  }
}
