:root {
  --ink: #07100f;
  --panel: #0a1716;
  --cream: #f3ead2;
  --muted: #a9b8af;
  --gold: #d9ad58;
  --gold-2: #f3d48d;
  --teal: #35bcb1;
  --line: rgba(220, 184, 107, .25);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { background: var(--ink); scroll-behavior: smooth; }
body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(53, 188, 177, .1), transparent 25%),
    var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 50% 0, rgba(124, 47, 29, .09), transparent 30%), var(--ink);
  content: "";
}
body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .16;
  background-image: repeating-linear-gradient(135deg, transparent 0 34px, rgba(231, 194, 115, .14) 35px, transparent 36px 70px);
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
  content: "";
  pointer-events: none;
}
a { color: var(--gold-2); text-underline-offset: 4px; }
a:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 4px; }
.topbar {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px max(24px, calc((100vw - 960px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(4, 12, 11, .94);
}
.topbar-tools { display: flex; align-items: center; justify-content: flex-end; gap: 18px; }
.language-switcher { position: relative; }
.language-switcher::before { color: var(--gold); content: "◆"; font-size: 8px; }
.language-switcher select {
  min-height: 38px;
  margin-left: 8px;
  padding: 0 30px 0 11px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #07110f;
  color: var(--cream);
  font: 800 10px/1 var(--sans);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.skiptranslate, .goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }
.brand img { display: block; width: 150px; height: 56px; object-fit: contain; }
.topnav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px; }
.topnav a {
  color: #e9e5d9;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
}
.topnav a:hover { color: var(--gold-2); }
main { width: min(900px, calc(100% - 34px)); margin: 0 auto; padding: 72px 0 80px; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 400;
  line-height: 1;
}
.lede { max-width: 720px; margin: 20px 0 38px; color: #d9e0dc; font-size: 17px; line-height: 1.7; }
.updated { margin-bottom: 30px; color: var(--muted); font-size: 12px; }
.toc, .callout {
  margin: 26px 0;
  padding: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(100deg, rgba(10, 23, 22, .96), rgba(10, 23, 22, .66));
  box-shadow: inset 3px 0 var(--gold);
}
.toc strong, .callout strong { color: var(--gold-2); }
.toc ul { columns: 2; margin: 14px 0 0; padding-left: 20px; }
.toc li { margin: 8px 0; }
section { position: relative; padding: 31px 0 31px 22px; border-top: 1px solid rgba(255, 255, 255, .1); }
section::before { position: absolute; top: 39px; left: 0; width: 7px; height: 7px; border: 1px solid var(--gold); transform: rotate(45deg); content: ""; }
h2 { margin: 0 0 14px; color: var(--gold-2); font-family: var(--serif); font-size: 29px; font-weight: 400; }
h3 { margin: 22px 0 10px; color: var(--cream); font-size: 16px; }
p, li { color: #c5cfca; line-height: 1.72; }
ul, ol { padding-left: 23px; }
.contact-list { list-style: none; padding: 0; }
.contact-list li { margin: 8px 0; }
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 6px 8px 6px 0;
  padding: 0 18px;
  border: 1px solid var(--line);
  color: #fffaf0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.button.primary { border-color: #e0bb6e; background: linear-gradient(135deg, #e0b75f, #8c5b22); color: #120d06; }
footer {
  padding: 28px 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: #040c0b;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}
@media (max-width: 660px) {
  .topbar { align-items: flex-start; flex-direction: column; padding-block: 12px; }
  .topnav { justify-content: flex-start; }
  .topbar-tools { width: 100%; align-items: flex-start; flex-direction: column-reverse; gap: 12px; }
  main { padding-top: 52px; }
  .toc ul { columns: 1; }
}
