* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f2ee;
  --ink: #1f2328;
  --accent: #2a5b8f;
  --accent-2: #6b4d8b;
  --muted: #6a7179;
  --panel: #ffffff;
  --soft: #efe7df;
  --sand: #e5d7cb;
  --leaf: #e0e7e1;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  display: flex;
  min-height: 100vh;
}

aside {
  width: 260px;
  padding: 28px 22px;
  background: var(--panel);
  border-right: 1px solid #e2d9cf;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

main {
  flex: 1;
  padding: 32px 36px 60px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand h1 {
  font-size: 22px;
  margin: 0;
  letter-spacing: 0.4px;
}

.ad-disclosure {
  font-size: 12px;
  color: var(--muted);
  padding: 10px 12px;
  border: 1px solid #e6e0d8;
  border-radius: 10px;
  background: var(--soft);
}

nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--bg);
}

.sidebar-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  background: var(--accent);
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
}

.cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 600;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border-radius: 20px;
  background: var(--panel);
}

.section.soft {
  background: var(--soft);
}

.section.sand {
  background: var(--sand);
}

.section.leaf {
  background: var(--leaf);
}

.split {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
  min-width: 240px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1;
  min-width: 220px;
  background: var(--panel);
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e6ded5;
}

.image-frame {
  background: #d8d0c7;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.inline-link {
  color: var(--accent-2);
  text-decoration: underline;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc6be;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
}

.form-panel button {
  padding: 12px 18px;
  border-radius: 12px;
  border: none;
  background: var(--accent-2);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 26px;
  bottom: 22px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 18px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.footer {
  padding: 24px;
  background: var(--panel);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  background: var(--panel);
  border: 1px solid #e6ded5;
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #e9e2da;
  color: var(--ink);
}

@media (max-width: 900px) {
  body {
    flex-direction: column;
  }

  aside {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e2d9cf;
  }

  .sticky-cta {
    right: 18px;
    bottom: 18px;
  }
}
