:root {
  color-scheme: light;
  --ink: #25382f;
  --paper: #f5efe2;
  --accent: #bd4b2f;
  --soft: #ddd4bd;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 15%, rgba(189, 75, 47, .12), transparent 32rem),
    var(--paper);
}

.shell {
  width: min(1080px, calc(100% - 40px));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 34px 0 64px;
}

.brand {
  color: inherit;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-decoration: none;
}

.hero {
  display: grid;
  align-content: center;
  min-height: 56vh;
  padding: 60px 0 32px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 10vw, 7.2rem);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .86;
}

.lead {
  max-width: 580px;
  margin: 30px 0 0;
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
  padding: 26px 0;
}

.card {
  min-height: 170px;
  padding: 24px;
  color: inherit;
  background: rgba(255, 255, 255, .35);
  border: 1px solid var(--soft);
  border-radius: 20px;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.card:hover { transform: translateY(-3px); background: rgba(255, 255, 255, .7); }
.card span { display: block; color: var(--accent); font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.card strong { display: block; margin-top: 38px; font-family: Georgia, serif; font-size: 1.65rem; font-weight: 500; }

.back {
  display: inline-block;
  margin-top: 44px;
  color: var(--accent);
  font-weight: 750;
  text-decoration: none;
}

.notice {
  max-width: 680px;
  margin-top: 44px;
  padding: 22px 24px;
  border: 1px solid var(--soft);
  border-radius: 16px;
  line-height: 1.55;
}

footer {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid var(--soft);
  font-size: .82rem;
}

.placeholder-page .brand,
.placeholder-page footer {
  display: none;
}

.placeholder-page .shell {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}

.placeholder {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 9vw, 6.5rem);
  letter-spacing: -.04em;
}

@media (max-width: 600px) {
  .shell { width: min(100% - 28px, 1080px); padding-top: 24px; }
  .hero { min-height: 48vh; padding-top: 54px; }
  .grid { grid-template-columns: 1fr 1fr; }
  .card { min-height: 140px; padding: 18px; }
  .card strong { margin-top: 28px; font-size: 1.25rem; }
}
