* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f4f1ed;
  --panel: #ffffff;
  --ink: #1f2428;
  --muted: #6c6f73;
  --accent: #2f6d5c;
  --accent-soft: #e3f0ec;
  --warm: #d9c7b8;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #efe8e1;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  background: #f6d9c8;
  color: #6b3a20;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-self: flex-start;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a,
.sidebar .cta-link {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}

.nav a:hover,
.sidebar .cta-link:hover {
  color: var(--accent);
}

.sidebar .cta-link {
  margin-top: 12px;
  background: var(--accent);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  text-align: center;
}

.sidebar .meta {
  font-size: 13px;
  color: var(--muted);
}

.main {
  flex: 1;
  padding: 32px 48px 64px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.hero {
  display: flex;
  gap: 24px;
  align-items: stretch;
  background: var(--panel);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 32px rgba(31, 36, 40, 0.08);
}

.hero-media {
  flex: 1;
  min-height: 320px;
  background: #d7d0c8;
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-content {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-content h1 {
  font-size: 34px;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 10px;
  padding: 10px 16px;
}

.button {
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
}

.button:hover {
  background: #285b4e;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--panel);
  border-radius: 20px;
  padding: 28px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-media {
  flex: 1;
  min-height: 220px;
  border-radius: 18px;
  overflow: hidden;
  background: #e2ddd6;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight {
  background: var(--accent-soft);
  padding: 22px;
  border-radius: 16px;
}

.card-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--panel);
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(31, 36, 40, 0.06);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  background: #d9d3cb;
}

.prices {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  align-items: center;
  gap: 12px;
}

.price-item span {
  font-weight: 600;
}

.form-panel {
  background: var(--panel);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

select,
input,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d1cbc5;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  background: #fff7f1;
  border: 1px solid #e3d3c7;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.image-frame {
  background: #ded5cd;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #d7d0c8;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.footer a {
  text-decoration: none;
  color: var(--muted);
}

.footer a:hover {
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 18px 40px rgba(31, 36, 40, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #e6e0da;
  color: #3a3a3a;
}

.cookie-actions button:hover {
  filter: brightness(0.95);
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .main {
    padding: 24px;
  }

  .hero,
  .split {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
  }
}
