:root {
  --bg: #f4f6f8;
  --surface: #ffffff;
  --text: #18222f;
  --muted: #4f6478;
  --brand: #0b6e4f;
  --brand-dark: #08553d;
  --border: #d7dce2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Assistant', 'Heebo', sans-serif;
  line-height: 1.6;
  background: radial-gradient(circle at 20% 0%, #ffffff 0%, var(--bg) 48%);
  color: var(--text);
}

.hero {
  padding: 4rem 1.25rem 2rem;
  text-align: center;
}

.kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--brand);
  font-weight: 700;
}

h1,
h2 {
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.sub {
  margin: 0 auto 1.25rem;
  max-width: 32rem;
  color: var(--muted);
}

.cta {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.cta:hover {
  background: var(--brand-dark);
}

main {
  width: min(960px, 92vw);
  margin: 0 auto;
  padding-bottom: 2rem;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  min-height: 95px;
  border-radius: 10px;
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

footer {
  text-align: center;
  padding: 1rem 1.25rem 2rem;
  color: var(--muted);
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.legal-links a {
  color: var(--brand-dark);
}

.floating-wa {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  z-index: 50;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  left: 1rem;
  bottom: 1rem;
  background: #13191f;
  color: #fff;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: 60;
}

.cookie-actions {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.5rem;
}

.cookie-actions button {
  border: 0;
  border-radius: 10px;
  padding: 0.55rem 0.95rem;
  cursor: pointer;
}

.cookie-actions .ghost {
  background: #2e3944;
  color: #fff;
}

.legal-page {
  width: min(760px, 92vw);
  margin: 2rem auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}

.a11y-trigger {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  border: 0;
  border-radius: 999px;
  background: #1a4d8f;
  color: #fff;
  padding: 0.65rem 0.9rem;
  cursor: pointer;
  z-index: 70;
}

.a11y-panel {
  position: fixed;
  right: 1rem;
  bottom: 4.6rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 260px;
  padding: 0.8rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  z-index: 70;
}

.a11y-panel button {
  width: 100%;
  margin-top: 0.45rem;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  padding: 0.55rem;
  cursor: pointer;
}

body.a11y-contrast {
  filter: contrast(1.24);
}

body.a11y-large-text {
  font-size: 1.1rem;
}

@media (max-width: 640px) {
  .floating-wa {
    left: 0.75rem;
  }

  .a11y-trigger {
    right: 0.75rem;
  }
}
