@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --bg-1: #fff2d9;
  --bg-2: #ffd8bf;
  --bg-3: #ffbf9b;
  --ink: #24211e;
  --muted: #6d655f;
  --card: rgba(255, 255, 255, 0.84);
  --card-strong: rgba(255, 255, 255, 0.94);
  --brand: #ff7b2c;
  --brand-deep: #f2542d;
  --brand-soft: #ffc15e;
  --ok: #3aaf85;
  --radius-xl: 26px;
  --radius-lg: 18px;
  --shadow-1: 0 12px 30px rgba(153, 72, 16, 0.15);
  --shadow-2: 0 18px 36px rgba(153, 72, 16, 0.22);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 123, 44, 0.28) 0, rgba(255, 123, 44, 0) 28%),
    radial-gradient(circle at 86% 10%, rgba(67, 170, 139, 0.25) 0, rgba(67, 170, 139, 0) 32%),
    radial-gradient(circle at 70% 82%, rgba(239, 71, 111, 0.2) 0, rgba(239, 71, 111, 0) 30%),
    linear-gradient(145deg, var(--bg-1), var(--bg-2) 42%, var(--bg-3));
  overflow-x: hidden;
}

body.consent-visible {
  padding-bottom: 126px;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(6px);
  z-index: -1;
}

body::before {
  left: -80px;
  top: 24vh;
  background: radial-gradient(circle, rgba(255, 193, 94, 0.9), rgba(255, 193, 94, 0));
  animation: floatBlob 16s ease-in-out infinite;
}

body::after {
  right: -100px;
  top: 60vh;
  background: radial-gradient(circle, rgba(58, 175, 133, 0.75), rgba(58, 175, 133, 0));
  animation: floatBlob 19s ease-in-out infinite reverse;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  background: rgba(255, 242, 217, 0.8);
  border-bottom: 1px solid rgba(117, 83, 60, 0.18);
  z-index: 12;
}

.site-header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Baloo 2", "Trebuchet MS", sans-serif;
  font-size: clamp(1.25rem, 2.8vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
}

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

.pill-link {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(153, 72, 16, 0.16);
  font-size: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button.pill-link {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.pill-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(97, 58, 20, 0.15);
}

.glass {
  background: var(--card);
  border: 1px solid rgba(150, 91, 47, 0.2);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-1);
}

.section-title {
  font-family: "Baloo 2", "Trebuchet MS", sans-serif;
  font-size: clamp(1.6rem, 3.8vw, 2.35rem);
  line-height: 1.1;
  margin: 0;
}

.section-subtitle {
  color: var(--muted);
  margin: 0.45rem 0 0;
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  margin-top: 3rem;
  padding: 2.2rem 0 2.8rem;
  border-top: 1px solid rgba(117, 83, 60, 0.24);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.footer-links a {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(117, 83, 60, 0.22);
}

@keyframes floatBlob {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-28px) scale(1.07);
  }
}

@media (max-width: 760px) {
  .site-header-inner {
    min-height: 64px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .nav-links {
    gap: 0.4rem;
  }

  .pill-link {
    font-size: 0.82rem;
    padding: 0.42rem 0.7rem;
  }

  body.consent-visible {
    padding-bottom: 178px;
  }
}

.consent-bar {
  position: fixed;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 44;
  border-radius: 16px;
  border: 1px solid rgba(120, 71, 33, 0.28);
  background: rgba(255, 250, 244, 0.95);
  box-shadow: 0 14px 26px rgba(88, 52, 22, 0.25);
  backdrop-filter: blur(10px);
}

.consent-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.8rem 0.95rem;
}

.consent-text strong {
  font-family: "Baloo 2", "Trebuchet MS", sans-serif;
  font-size: 1.1rem;
}

.consent-text p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.consent-links {
  margin-top: 0.35rem;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.consent-links a {
  font-size: 0.82rem;
  text-decoration: underline;
  color: #8a4a1f;
}

.consent-actions {
  display: inline-flex;
  gap: 0.45rem;
  flex-shrink: 0;
}

.consent-accept {
  background: linear-gradient(120deg, var(--brand), var(--brand-deep));
  color: #fff;
  border: 0;
}

@media (max-width: 760px) {
  .consent-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .consent-actions {
    width: 100%;
  }

  .consent-actions .pill-link {
    flex: 1;
  }
}
