* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1c1c1c;
  background: #f6f5f2;
}

a {
  color: inherit;
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: #efece6;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #7a5d2f;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav a:focus {
  outline: 2px solid #8aa1a8;
  outline-offset: 2px;
}

.content {
  flex: 1;
  padding: 32px 48px 80px;
}

.section {
  margin: 40px 0;
  padding: 24px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.accent {
  background: #e9f2f4;
}

.section.dark {
  background: #1c1c1c;
  color: #f1f1f1;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.media-frame {
  background: #d6dadd;
  padding: 12px;
  border-radius: 16px;
}

.bg-sand { background: #c9d3d6; }
.bg-charcoal { background: #2b2b2b; }
.bg-stone { background: #d7d2c9; }
.bg-mist { background: #e0e5e8; }
.bg-sage { background: #dbe3dd; }
.bg-warm { background: #e6e1d6; }
.bg-cool { background: #d9e1e6; }
.bg-cloud { background: #cfd9de; }
.bg-ice { background: #d7dde3; }
.bg-slate { background: #d1d8dc; }
.bg-fog { background: #d9e2df; }
.bg-ash { background: #d7d6ce; }
.bg-dawn { background: #d0d6d9; }
.bg-silk { background: #dbe4e1; }
.bg-cream { background: #e5e0d6; }
.bg-river { background: #e0e6ea; }
.bg-earth { background: #e4ded1; }
.bg-drift { background: #d6dde1; }
.bg-reception { background: #d9dfe3; }
.bg-thanks { background: #d4dce0; }
.bg-privacy { background: #d7dfe2; }
.bg-gdpr { background: #d2dbe0; }
.bg-cookies { background: #d5dde2; }
.bg-terms { background: #d7dfe1; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  background: #f4efe7;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 16px;
  border-radius: 14px;
  background: #f9f7f2;
  align-items: center;
}

.service-item .service-text {
  flex: 1 1 260px;
}

.price {
  font-weight: 700;
  color: #2b5e66;
  min-width: 140px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  background: #2b5e66;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.button.secondary {
  background: #e0c8a8;
  color: #2b1f0c;
}

.button.ghost {
  background: transparent;
  border: 1px solid #2b5e66;
  color: #2b5e66;
}

.form-card {
  background: #f3f5f7;
  padding: 20px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #c9c9c9;
  font-size: 14px;
}

.inline-note {
  font-size: 13px;
  color: #5f5f5f;
}

.footer {
  margin-top: 60px;
  padding: 24px;
  background: #efece6;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #2b5e66;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .content {
    padding: 24px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
