:root {
  --page-width: 72rem;
  --text: #1d1d1d;
  --muted: #5a5a5a;
  --border: #cfcfcf;
  --panel: #f1f1f1;
  --button: #222;
  --button-text: #fff;
  --focus: #005fcc;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

a { color: #0645ad; text-underline-offset: 0.16em; }
a:hover { text-decoration-thickness: 0.14em; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.page-width { width: min(var(--page-width), calc(100% - 2rem)); margin-inline: auto; }
.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-180%);
  padding: 0.6rem 0.9rem;
  background: #fff;
  border: 2px solid #000;
}
.skip-link:focus { transform: translateY(0); }

.site-header { padding: 2.2rem 0 1.4rem; text-align: center; }
h1 { margin: 0; font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.12; }
.subtitle { margin: 0.55rem 0 1.5rem; color: var(--muted); font-size: clamp(1.05rem, 2.5vw, 1.35rem); }

.executive-summary {
  margin: 1.25rem 0;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 0.35rem;
  text-align: left;
}
.executive-summary h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.35rem, 2.8vw, 1.8rem);
  line-height: 1.25;
}
.executive-summary ul, .section-list, .more-information-list {
  margin: 0;
  padding-left: 1.35rem;
  list-style-type: disc;
  list-style-position: outside;
}
.executive-summary li, .section-list li, .more-information-list li { margin-bottom: 0.35rem; }
.executive-summary li:last-child, .section-list li:last-child, .more-information-list li:last-child { margin-bottom: 0; }
.navigation { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1rem; margin: 0; padding: 0; list-style: none; }
.navigation a { display: inline-block; padding: 0.35rem 0.15rem; font-weight: 700; }

main { padding-bottom: 2rem; }
.content-section {
  margin: 1.25rem 0;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 0.35rem;
}
.content-section h2 { margin-top: 0; font-size: clamp(1.45rem, 3vw, 2rem); line-height: 1.25; }
.content-section p:last-of-type { margin-bottom: 0; }
.return-top { margin-top: 1.6rem !important; text-align: right; font-size: 0.95rem; }

.contact-section { background: #fff; }
.more-information-link { margin: 1.5rem 0; text-align: center; }
.more-information-link a { display: inline-block; padding: 0.7rem 1rem; border: 2px solid #0645ad; border-radius: 0.2rem; font-weight: 700; }
.more-information-link a:hover { background: #edf4ff; }
.contact-details { margin-bottom: 1.4rem; }
form { max-width: 46rem; }
.form-row { margin-bottom: 1rem; }
label { display: block; margin-bottom: 0.25rem; font-weight: 700; }
.optional { color: var(--muted); font-weight: 400; }
input, textarea {
  width: 100%;
  padding: 0.72rem;
  border: 1px solid #777;
  border-radius: 0.2rem;
  background: #fff;
  color: var(--text);
  font: inherit;
}
textarea { resize: vertical; }
button {
  min-height: 2.75rem;
  padding: 0.65rem 1.1rem;
  border: 2px solid var(--button);
  border-radius: 0.2rem;
  background: var(--button);
  color: var(--button-text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
button:hover { filter: brightness(1.18); }
.secondary-button { background: #fff; color: #111; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-status { min-height: 1.5em; font-weight: 700; }
.form-status.error { color: #a40000; }
.form-status.success { color: #176b21; }

.site-footer { border-top: 1px solid var(--border); padding: 1.5rem 0; text-align: center; color: var(--muted); }
.site-footer p { margin: 0; }

.cookie-notice {
  position: fixed;
  inset: auto 0 0;
  z-index: 999;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.82);
}
.cookie-inner {
  width: min(60rem, 100%);
  margin-inline: auto;
  padding: 1rem;
  background: #fff;
  border-radius: 0.3rem;
}
.cookie-inner h2 { margin: 0 0 0.35rem; font-size: 1.25rem; }
.cookie-inner p { margin: 0 0 0.8rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

@media (max-width: 36rem) {
  .site-header { padding-top: 1.5rem; }
  .navigation { flex-direction: column; gap: 0.15rem; }
  .navigation a { padding: 0.45rem; }
  .content-section { margin: 0.9rem 0; }
  .return-top { text-align: left; }
}

@media (orientation: landscape) and (max-height: 32rem) {
  .site-header { padding-top: 1rem; }
  .subtitle { margin-bottom: 0.7rem; }
  .navigation { gap: 0.25rem 0.8rem; }
}

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