:root {
  color-scheme: dark;
  --ink: #f7ebc9;
  --muted: rgba(247, 235, 201, 0.7);
  --wood: #3d2718;
  --wood-light: #7b5635;
  --gold: #d6a450;
  --gold-light: #f7e3a3;
  --line: rgba(225, 177, 92, 0.35);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: #090806;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(214, 164, 80, 0.18), transparent 35rem),
    linear-gradient(180deg, #17100b 0%, #090806 44%, #050504 100%);
}

a {
  color: var(--gold-light);
}

a:hover {
  color: #fff3c4;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(10, 8, 6, 0.86);
  backdrop-filter: blur(16px);
}

.site-header__inner,
.page,
.site-footer__inner {
  width: min(100% - 2rem, 880px);
  margin-inline: auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  border-radius: 12px;
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  font-size: 0.73rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brand span {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem;
  font-size: 0.8rem;
}

.site-nav a {
  text-decoration: none;
}

.page {
  padding-block: clamp(3rem, 8vw, 6rem);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 8vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.lede {
  max-width: 720px;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  margin: 1.6rem 0 0;
  color: rgba(247, 235, 201, 0.56);
  font-size: 0.85rem;
}

.notice {
  margin-top: 2rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(123, 86, 53, 0.18);
  color: rgba(247, 235, 201, 0.82);
  line-height: 1.6;
}

.content {
  display: grid;
  gap: 2.5rem;
  margin-top: clamp(3rem, 7vw, 5.5rem);
}

.content section {
  padding-top: 0.25rem;
  border-top: 1px solid var(--line);
}

h2 {
  margin: 1.25rem 0 0.8rem;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 500;
}

h3 {
  margin: 1.5rem 0 0.45rem;
  font-size: 1rem;
}

p,
li {
  color: rgba(247, 235, 201, 0.76);
  line-height: 1.7;
}

ul {
  padding-left: 1.35rem;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.action-card {
  display: block;
  min-height: 150px;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.18)),
    linear-gradient(145deg, rgba(123, 86, 53, 0.55), rgba(61, 39, 24, 0.58));
  text-decoration: none;
}

.action-card strong {
  display: block;
  color: var(--gold-light);
  font-size: 1.05rem;
}

.action-card span {
  display: block;
  margin-top: 0.65rem;
  color: var(--muted);
  line-height: 1.55;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(5, 5, 4, 0.7);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem 2.5rem;
  color: rgba(247, 235, 201, 0.5);
  font-size: 0.8rem;
}

@media (max-width: 640px) {
  .site-header__inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 0.9rem;
  }

  .site-nav {
    justify-content: flex-start;
  }
}
