* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f4ef;
  --ink: #1f1f1f;
  --muted: #5f5f5f;
  --accent: #4c6b4a;
  --accent-soft: #dde7da;
  --sand: #f0ece4;
  --clay: #d7cdbf;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  background: #fff;
  padding: 28px 22px;
  border-right: 1px solid #ece7df;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.6px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a,
.nav button {
  background: none;
  border: none;
  text-align: left;
  font: inherit;
  cursor: pointer;
  padding: 4px 0;
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.button {
  background: var(--accent);
  color: #fff;
}

.button-secondary {
  background: var(--accent-soft);
  color: var(--accent);
}

.main {
  flex: 1;
  padding: 32px 48px 72px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: flex;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: 38px;
  line-height: 1.2;
}

.hero-media {
  flex: 1 1 320px;
  border-radius: 28px;
  overflow: hidden;
  background-color: var(--clay);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-frame {
  background-color: #dcd3c7;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tag-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}

.story {
  background: var(--sand);
  border-radius: 26px;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.story-text {
  flex: 1 1 280px;
}

.story-media {
  flex: 1 1 240px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #d9d0c2;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-section .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-section .media {
  flex: 1 1 260px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #d7dfe0;
}

.split-section .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card .image-frame {
  height: 180px;
  background-color: #cdd5cc;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-list {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #efe8dd;
  padding-bottom: 12px;
}

.price-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ambient {
  background-image: url("https://images.pexels.com/photos/35743701/pexels-photo-35743701.jpeg");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 36px;
  color: #fff;
  box-shadow: var(--shadow);
}

.ambient-inner {
  background: rgba(18, 24, 18, 0.6);
  border-radius: 20px;
  padding: 24px;
  max-width: 520px;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonial {
  flex: 1 1 240px;
  background: var(--accent-soft);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-link {
  text-decoration: underline;
}

.form-section {
  background: #fff;
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8d2c6;
  font-size: 14px;
  background: #fff;
}

.footer {
  border-top: 1px solid #ece7df;
  padding-top: 18px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-title {
  font-size: 32px;
  margin-bottom: 12px;
}

.simple-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-block {
  background: var(--sand);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .sidebar-cta {
    width: 100%;
  }
}
