:root {
  --bg-dark: #080808;
  --bg-footer: #251f2c;
  --bg-light: #ded9cb;
  --bg-white: #f3f3f3;
  --surface: #fbfbfd;
  --text: #2b2d30;
  --muted: #555d68;
  --heading: #2e3136;
  --brand: #f3a316;
  --ink: #0c2f62;
  --border: #c8ccd3;
  --header-text: #ffffff;
  --nav-hover: #ffcb67;
  --footer-gradient-start: #2a232e;
  --footer-gradient-end: #1f1a25;
  --footer-text: #f4f4f4;
  --footer-heading: #ffffff;
  --footer-copyright: #d1ced6;
  --radius: 10px;
  --font-display: "Orbitron", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --h1-size: clamp(2rem, 4.2vw, 4rem);
  --h2-size: clamp(1.9rem, 3.2vw, 3.2rem);
  --h3-size: clamp(1.4rem, 2.3vw, 2.1rem);
  --container-max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.45;
}

main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--ink);
}

a:hover {
  text-decoration-thickness: 2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.65rem;
  line-height: 1.15;
  color: var(--heading, #2e3136);
  font-family: var(--font-display) !important;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-synthesis: none;
}

h1 {
  font-size: var(--h1-size);
}

h2 {
  font-size: var(--h2-size);
}

h3 {
  font-size: var(--h3-size);
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(var(--container-max-width), 92%);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 9999;
  background: #fff;
  color: #000;
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
}
