* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: #1b5f5b;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #efe9e2;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  background: #1b5f5b;
  color: #fef8f0;
  padding: 10px 12px;
  font-size: 13px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-links a {
  padding: 6px 4px;
}

.sidebar-cta {
  margin-top: auto;
  padding: 12px 14px;
  background: #c96f4a;
  color: #fff7f0;
  text-align: center;
  border-radius: 18px;
}

.main {
  flex: 1;
  padding: 32px 40px 80px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #efe9e2;
  padding: 28px;
  border-radius: 26px;
}

.hero-visual {
  height: 360px;
  border-radius: 22px;
  overflow: hidden;
  background: #d8d0c6;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: #1b5f5b;
  color: #fff7f0;
  font-size: 12px;
  width: fit-content;
}

.section {
  margin-top: 42px;
  padding: 24px;
  background: #ffffff;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.tone {
  background: #f0f4f3;
}

.section.dark {
  background: #1f2b2a;
  color: #fef8f0;
}

.split {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split .visual {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  background: #d8d0c6;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  min-width: 220px;
  background: #faf7f2;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  background: #d8d0c6;
}

.pricing {
  font-weight: 600;
  color: #1b5f5b;
}

.inline-cta {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 18px;
  background: #1b5f5b;
  color: #fff7f0;
  width: fit-content;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea,
button {
  font-size: 16px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cfc8bd;
  font-family: inherit;
}

button {
  background: #c96f4a;
  color: #fff7f0;
  cursor: pointer;
  border: none;
}

.form-note {
  font-size: 13px;
  color: #47413c;
}

.sticky-cta {
  position: fixed;
  bottom: 26px;
  right: 26px;
  background: #1b5f5b;
  color: #fff7f0;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 10;
}

.footer {
  margin-top: 50px;
  padding: 24px;
  background: #efe9e2;
  border-radius: 22px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  max-width: 360px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  flex: 1;
}

.cookie-actions .reject {
  background: #5a544e;
}

.contact-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-card {
  flex: 1 1 220px;
  background: #faf7f2;
  border-radius: 18px;
  padding: 16px;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .sidebar-cta {
    margin-top: 0;
  }

  .main {
    padding: 24px;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
