:root {
  --ink: #1a1020;
  --paper: #fff6ea;
  --sun: #ffd23f;
  --coral: #ff4d6d;
  --lime: #b8ff3c;
  --violet: #6c2bd9;
  --card: #ffffff;
  --shadow: 8px 8px 0 #1a1020;
  --radius: 18px;
  --font-d: "Syne", system-ui, sans-serif;
  --font-b: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-b);
  line-height: 1.55;
}

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

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

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus { left: 1rem; background: var(--sun); padding: 0.5rem; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 6vw;
  background: var(--coral);
  border-bottom: 4px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  font-family: var(--font-d);
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.2rem;
  background: var(--sun);
  padding: 0.35rem 0.7rem;
  transform: rotate(-2deg);
}

.nav-toggle {
  font: inherit;
  font-weight: 700;
  border: 3px solid var(--ink);
  background: var(--lime);
  padding: 0.4rem 0.8rem;
  cursor: pointer;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  align-items: center;
}

.nav a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.nav-cta {
  background: var(--sun);
  padding: 0.35rem 0.7rem;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

@media (max-width: 860px) {
  .nav[hidden] { display: none !important; }
  .nav:not([hidden]) {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--sun);
    padding: 1rem 6vw 1.5rem;
    border-bottom: 4px solid var(--ink);
  }
}

@media (min-width: 861px) {
  .nav-toggle { display: none; }
  .nav[hidden] { display: flex !important; }
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  padding: 3rem 6vw 4rem;
  align-items: end;
}

.hero h1 {
  font-family: var(--font-d);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.95;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.kicker {
  display: inline-block;
  background: var(--lime);
  border: 3px solid var(--ink);
  padding: 0.2rem 0.6rem;
  font-weight: 700;
  transform: rotate(-1deg);
  margin-bottom: 1rem;
}

.hero-visual {
  border: 4px solid var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
  border-radius: var(--radius);
  transform: rotate(2deg);
}

.hero-visual img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.lede {
  font-size: 1.15rem;
  max-width: 38rem;
}

.btn {
  display: inline-block;
  background: var(--violet);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 0.75rem 1.2rem;
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  margin-top: 1rem;
}

.btn-ghost {
  background: var(--paper);
  color: var(--ink);
}

section { padding: 3rem 6vw; }

.band-sun { background: var(--sun); border-block: 4px solid var(--ink); }
.band-coral { background: var(--coral); border-block: 4px solid var(--ink); }
.band-lime { background: var(--lime); border-block: 4px solid var(--ink); }
.band-violet { background: var(--violet); color: #fff; border-block: 4px solid var(--ink); }
.band-violet a { color: var(--sun); }

h2 {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  margin: 0 0 1.2rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--card);
  border: 4px solid var(--ink);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.card-body { padding: 1rem 1.1rem 1.3rem; }
.card h3 { font-family: var(--font-d); margin: 0 0 0.4rem; }

.quote {
  background: var(--card);
  border: 4px solid var(--ink);
  padding: 1.2rem;
  box-shadow: var(--shadow);
  margin: 0;
}

.quote p { margin-top: 0; }
.quote footer { font-weight: 700; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.prose { max-width: 46rem; }
.prose h1 { font-family: var(--font-d); font-size: clamp(2rem, 5vw, 3.4rem); }

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

th, td {
  border: 3px solid var(--ink);
  padding: 0.6rem;
  text-align: left;
}

form {
  display: grid;
  gap: 0.9rem;
  max-width: 36rem;
}

label { font-weight: 700; display: grid; gap: 0.3rem; }

input, textarea, select {
  font: inherit;
  padding: 0.6rem;
  border: 3px solid var(--ink);
  background: #fff;
}

button[type="submit"] {
  font: inherit;
  font-weight: 700;
  background: var(--coral);
  border: 3px solid var(--ink);
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--ink);
  width: fit-content;
}

.field-error { color: #9b0030; font-weight: 700; min-height: 1.2em; }
.form-status { font-weight: 700; }

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 2.5rem 6vw;
}

.site-footer a { color: var(--sun); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
}
.footer-brand { font-family: var(--font-d); font-size: 1.4rem; }

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 42rem;
  background: var(--sun);
  border: 4px solid var(--ink);
  box-shadow: var(--shadow);
  padding: 1rem;
  z-index: 40;
}

.cookie-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.cookie-actions button {
  font: inherit;
  font-weight: 700;
  border: 3px solid var(--ink);
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  background: var(--violet);
  color: #fff;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 3px dashed var(--ink);
  padding: 0.8rem 0;
}

@media (max-width: 800px) {
  .hero, .split, .footer-grid { grid-template-columns: 1fr; }
  .hero-visual { transform: none; }
}

.page-hero img {
  width: 100%;
  max-height: 22rem;
  object-fit: cover;
  border: 4px solid var(--ink);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.img-miss {
  background: repeating-linear-gradient(45deg, var(--sun), var(--sun) 12px, var(--lime) 12px, var(--lime) 24px);
  min-height: 12rem;
  border: 4px dashed var(--ink);
}
