
:root {
  --bg: #f8f6f2;
  --surface: #ffffff;
  --text: #26221f;
  --muted: #6c645e;
  --border: #e7ddd6;
  --shadow: 0 14px 35px rgba(33, 27, 23, 0.08);
  --mgd: #a80042;
  --pf: #fd9800;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(168,0,66,0.05), transparent 28%),
    radial-gradient(circle at top right, rgba(253,152,0,0.08), transparent 26%),
    var(--bg);
}
img { max-width: 100%; display: block; }

a { color: inherit; }
.page {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 46px;
}
.hero {
  text-align: center;
  margin-bottom: 24px;
}
.hero-art {
  width: min(124px, 32vw);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 20px;
  margin: 0 auto 14px;
  box-shadow: var(--shadow);
}
.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}
h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.58rem, 2.9vw, 2.45rem);
  line-height: 1.05;
}
.lead {
  width: min(620px, 100%);
  margin: 16px auto 0;
  color: var(--muted);
  font-size: clamp(0.92rem, 1.7vw, 1rem);
  line-height: 1.6;
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
  align-items: stretch;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.card-mgd { border-top: 6px solid rgba(168,0,66,0.18); }
.card-pf { border-top: 6px solid rgba(253,152,0,0.28); }
.card-logo-wrap {
  height: 72px;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.card-logo {
  object-fit: contain;
}
.logo-round {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1px solid var(--border);
}
.logo-square {
  width: 72px;
  height: 72px;
}
.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
h2 {
  margin: 0 0 8px;
  font-size: 1.22rem;
}
.card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.12);
}
.button-mgd {
  background: var(--mgd);
  color: #fff;
}
.button-pf {
  background: var(--pf);
  color: #2f2314;
}
@media (max-width: 760px) {
  .page { width: min(100% - 24px, 720px); padding: 26px 0 38px; }
  .cards { grid-template-columns: 1fr; gap: 14px; }
  .card { padding: 18px; }
  .card-logo-wrap { height: auto; }
  .button { width: 100%; }
}
