:root {
  color-scheme: dark;
  --page: #05090c;
  --panel: rgba(7, 12, 15, 0.94);
  --panel-soft: rgba(14, 22, 22, 0.78);
  --text: #e8e1d2;
  --muted: #aaa79a;
  --gold: #d7bd78;
  --gold-dark: #725d32;
  --green: #72cf83;
  --line: rgba(197, 173, 112, 0.25);
  --max-width: 1040px;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.6;
  background:
    radial-gradient(circle at 20% 5%, rgba(62, 119, 83, 0.15), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(196, 157, 79, 0.08), transparent 30rem),
    linear-gradient(rgba(2, 5, 7, 0.82), rgba(2, 5, 7, 0.98)),
    var(--page);
}

a {
  color: var(--gold);
  text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
  color: #f4dda0;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(3, 7, 9, 0.9);
}

.site-header__inner,
.site-footer__inner,
.page {
  width: min(calc(100% - 32px), var(--max-width));
  margin-inline: auto;
}

.site-header__inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 16px;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.page {
  padding-block: 72px 92px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 34%);
  align-items: center;
  gap: 56px;
  min-height: 470px;
}

.hero > * {
  min-width: 0;
  max-width: 100%;
}

.hero h1 span {
  display: block;
}

.hero__mark {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.72));
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: #f0e4c5;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.18;
}

h1 {
  max-width: 800px;
  margin: 0 0 22px;
  font-size: clamp(40px, 7vw, 72px);
}

h2 {
  margin: 2.6em 0 0.65em;
  font-size: clamp(25px, 4vw, 36px);
}

h3 {
  margin: 1.8em 0 0.45em;
  font-size: 21px;
}

p,
ul,
ol {
  max-width: 760px;
}

.lede {
  color: #c7c4b8;
  font-size: clamp(20px, 3vw, 25px);
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 9px 22px;
  border: 1px solid var(--gold-dark);
  background: linear-gradient(#1c1a14, #0b0b09);
  box-shadow: inset 0 0 0 2px #070705, 0 7px 20px rgba(0, 0, 0, 0.35);
  color: #f1e4c2;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 15px;
  text-decoration: none;
}

.button:hover,
.button:focus-visible {
  border-color: var(--gold);
  background: linear-gradient(#2a2418, #11100c);
  color: #fff0c5;
}

.notice,
.card {
  border: 1px solid var(--line);
  background: var(--panel-soft);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}

.notice {
  margin-block: 38px;
  padding: 22px 24px;
  border-left: 3px solid var(--green);
}

.notice strong {
  color: #ddf0de;
}

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

.card {
  padding: 24px;
}

.card h2,
.card h3 {
  margin-top: 0;
}

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

.policy {
  max-width: 820px;
  padding: 42px clamp(22px, 5vw, 58px) 58px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.policy h1 {
  font-size: clamp(36px, 6vw, 58px);
}

.policy li + li {
  margin-top: 0.45em;
}

.meta {
  margin-top: -10px;
  color: var(--muted);
  font-size: 15px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #030709;
  color: var(--muted);
  font-size: 14px;
}

.site-footer__inner {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .site-header__inner,
  .site-footer__inner,
  .page {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .site-header__inner,
  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
  }

  .hero__mark {
    grid-row: 1;
    width: min(58vw, 260px);
    margin-inline: auto;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .hero > div,
  .hero .lede,
  .notice {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .page {
    padding-block: 44px 64px;
  }
}
