:root {
  --ink: #1c1613;
  --muted: #4a3b34;
  --paper: #fff6ea;
  --coral: #c4452e;
  --shadow: 0 18px 40px rgba(28, 22, 19, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, #ffe1c4 0%, transparent 55%),
    radial-gradient(900px 480px at 100% 0%, #d9f5ef 0%, transparent 50%),
    var(--paper);
  min-height: 100vh;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  z-index: 20;
}

.skip-link:focus {
  top: 12px;
}

.eyebrow {
  font-family: "Fredoka", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 8px;
}

h1,
h2 {
  font-family: "Fredoka", sans-serif;
}

.doc {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 24px 48px;
}

.doc h1 {
  font-size: clamp(32px, 6vw, 48px);
  margin: 8px 0 16px;
}

.doc h2 {
  margin: 28px 0 10px;
}

.doc p,
.doc li {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.doc ul {
  padding-left: 20px;
}

.site-footer {
  max-width: 920px;
  margin: 0 auto;
  padding: 16px 24px 40px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: center;
  margin-bottom: 8px;
}

.site-footer a {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  max-width: 560px;
  margin: 0 auto;
  background: #1c1613;
  color: #fff8f2;
  border-radius: 18px;
  padding: 16px 18px;
  z-index: 50;
  box-shadow: var(--shadow);
}

.cookie-banner p {
  margin-bottom: 10px;
  line-height: 1.4;
}

.cookie-banner a {
  color: #ffd7c8;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.cookie-actions button {
  font-family: "Fredoka", sans-serif;
  border: 0;
  background: #ffd7c8;
  color: #1c1613;
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
}
