:root {
  color-scheme: light;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff8ee;
  color: #3d2a1a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 92% 2%, rgb(245 168 85 / 22%), transparent 25rem),
    radial-gradient(circle at 5% 32%, rgb(251 191 36 / 10%), transparent 22rem),
    #fff8ee;
  line-height: 1.65;
}

a {
  color: #70441f;
}

a:hover {
  color: #8b5a2b;
}

.site-header,
.page-shell,
.site-footer {
  width: min(840px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #3d2a1a;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 12px 12px 15px 10px;
  background: linear-gradient(145deg, #fbbd70, #f5a855 60%, #e89244);
  box-shadow: 0 7px 18px rgb(139 90 43 / 18%);
  color: #fffaf2;
  font-size: 18px;
}

.language-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid #e5d5c3;
  border-radius: 999px;
  background: rgb(255 252 247 / 88%);
}

.language-switcher a {
  min-width: 44px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.language-switcher a[aria-current="page"] {
  background: #8b5a2b;
  color: #fffaf2;
}

.page-shell {
  margin-bottom: 44px;
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid #e5d5c3;
  border-radius: 28px;
  background: rgb(255 252 247 / 96%);
  box-shadow: 0 22px 62px rgb(107 68 35 / 10%);
}

.status {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid #e89244;
  border-radius: 999px;
  background: #fff3e0;
  color: #70441f;
  font-size: 0.82rem;
  font-weight: 800;
}

h1 {
  max-width: 18ch;
  margin: 0 0 14px;
  font-size: clamp(2rem, 7vw, 3.4rem);
  line-height: 1.07;
  letter-spacing: -0.035em;
}

h2 {
  margin: 34px 0 8px;
  font-size: clamp(1.25rem, 3vw, 1.48rem);
  line-height: 1.25;
}

h3 {
  margin: 24px 0 6px;
  font-size: 1.05rem;
}

p,
li {
  max-width: 70ch;
}

.lead {
  margin-top: 0;
  color: #5a4535;
  font-size: 1.08rem;
}

.notice {
  margin: 22px 0;
  padding: 16px 18px;
  border-left: 4px solid #f5a855;
  border-radius: 0 14px 14px 0;
  background: #fff3e0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fbbd70, #f5a855 62%, #e89244);
  box-shadow: 0 10px 24px rgb(139 90 43 / 16%);
  color: #3d2a1a;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  border: 1px solid #d8c5b0;
  background: #fffaf2;
  box-shadow: none;
}

.compact li {
  margin-block: 7px;
}

.table-wrap {
  overflow-x: auto;
  margin: 20px 0;
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

th,
td {
  padding: 12px;
  border: 1px solid #e5d5c3;
  text-align: left;
  vertical-align: top;
}

th {
  background: #fff3e0;
}

.document-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid #e5d5c3;
}

.document-nav a {
  font-weight: 800;
}

.site-footer {
  padding: 0 0 42px;
  color: #756354;
  font-size: 0.88rem;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid #8b5a2b;
  outline-offset: 4px;
}

@media (max-width: 560px) {
  .site-header {
    padding-top: 18px;
  }

  .page-shell {
    width: min(100% - 20px, 840px);
    border-radius: 22px;
  }

  .site-header,
  .site-footer {
    width: min(100% - 28px, 840px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
