:root {
  --ink: #0b0b0b;
  --muted: #5f5850;
  --red: #8b0000;
  --gold: #c9a24d;
  --champagne: #f6e7c8;
  --ivory: #f8f3ea;
  --shadow: 0 22px 60px rgba(11, 11, 11, 0.08);
  --shadow-soft: 0 10px 28px rgba(11, 11, 11, 0.055);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 0 28%, rgba(201, 162, 77, 0.08), transparent 24%),
    radial-gradient(circle at 100% 22%, rgba(201, 162, 77, 0.08), transparent 24%),
    linear-gradient(180deg, #fff 0%, var(--ivory) 62%, #fff 100%);
  font-family: Manrope, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(201, 162, 77, 0.18) 1px, transparent 1px);
  background-size: 100% 220px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 68%);
}

a { color: inherit; }

.page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.topbar::after {
  content: "✦";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 22px;
  background: linear-gradient(90deg, var(--gold) 0 45%, transparent 45% 55%, var(--gold) 55% 100%);
  background-size: 100% 1px;
  background-position: center;
  background-repeat: no-repeat;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  text-decoration: none;
}

.mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: #fff;
  border-radius: 50%;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  box-shadow: 0 10px 28px rgba(201, 162, 77, 0.14);
}

.brand strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: lowercase;
}

.nav {
  display: flex;
  justify-content: flex-end;
  flex: 1;
  gap: 24px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--red);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, #8b0000, #b00000);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(139, 0, 0, 0.16);
}

.hero {
  position: relative;
  margin-top: 34px;
  padding: 62px 46px;
  overflow: hidden;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  border: 1px solid rgba(201, 162, 77, 0.22);
  box-shadow: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -82px;
  top: -92px;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(201, 162, 77, 0.28),
    0 0 0 38px rgba(201, 162, 77, 0.035),
    0 0 0 76px rgba(201, 162, 77, 0.026),
    inset 0 0 0 68px rgba(201, 162, 77, 0.035);
}

.hero::before {
  content: "";
  position: absolute;
  left: -110px;
  top: 118px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(201, 162, 77, 0.26),
    0 0 0 34px rgba(201, 162, 77, 0.035),
    0 0 0 72px rgba(201, 162, 77, 0.026),
    inset 0 0 0 58px rgba(201, 162, 77, 0.035);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

h1 {
  max-width: 820px;
  margin-inline: auto;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.96;
}

h2 {
  font-size: 38px;
  line-height: 1;
}

.lead {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.section {
  margin-top: 28px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  border: 1px solid rgba(201, 162, 77, 0.22);
  box-shadow: none;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 24px;
  padding-top: 10px;
  background: linear-gradient(90deg, var(--gold), transparent 40%, transparent 60%, var(--gold));
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: center top;
}

.section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid + .grid {
  margin-top: 12px;
}

.card {
  position: relative;
  padding: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(201, 162, 77, 0.25);
  border-radius: 8px;
}

.card::before {
  content: "";
  position: absolute;
  inset: 7px;
  pointer-events: none;
  border: 1px solid rgba(201, 162, 77, 0.12);
  border-radius: 6px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.2;
}

.card p,
.card li {
  color: var(--muted);
  font-size: 14px;
}

.card p {
  margin: 0 0 10px;
}

.card p:last-child {
  margin-bottom: 0;
}

.card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.metric {
  padding: 12px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(201, 162, 77, 0.22);
  border-radius: 8px;
}

.metric strong {
  display: block;
  color: var(--red);
  font-size: 23px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 14px;
  padding: 0 16px;
  color: #fff;
  background: linear-gradient(135deg, #8b0000, #b00000);
  border-radius: 5px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(139, 0, 0, 0.14);
}

.text-link {
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.legal {
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  margin-top: 34px;
  padding: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 8% 20%, rgba(246, 231, 200, 0.14), transparent 22%),
    radial-gradient(circle at 92% 35%, rgba(246, 231, 200, 0.14), transparent 22%),
    linear-gradient(135deg, #7d0000, #a40000);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 22px 60px rgba(139, 0, 0, 0.16);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) minmax(260px, 1.2fr);
  gap: 18px;
}

.site-footer h3 {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.site-footer p {
  margin: 0 0 7px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 14px;
}

.footer-links a {
  text-decoration: none;
}

.footer-bottom {
  margin-top: 16px;
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(246, 231, 200, 0.28);
  font-size: 12px;
}

.document-body {
  display: grid;
  gap: 12px;
}

.document-body .card {
  background: rgba(255, 250, 242, 0.76);
}

.document-body h2 {
  margin-bottom: 12px;
}

@media (max-width: 860px) {
  .topbar,
  .section-head {
    display: grid;
  }

  .brand {
    min-width: 0;
  }

  .nav {
    justify-content: start;
    flex-wrap: wrap;
    gap: 14px;
  }

  .nav-cta {
    width: fit-content;
  }

  .hero {
    padding: 28px;
  }

  .hero::before,
  .hero::after {
    opacity: 0.45;
  }

  .grid,
  .grid.two,
  .metrics,
  .footer-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 24px, 1120px);
    padding-top: 12px;
  }

  .brand small {
    letter-spacing: 0.18em;
  }

  .hero,
  .section {
    padding: 18px;
  }
}
