:root {
  color-scheme: light;
  --ink: #1f1b16;
  --muted: #5a4f45;
  --cream: #f7f2ec;
  --sand: #efe5db;
  --copper: #b8693f;
  --moss: #39524a;
  --rose: #f1d8c8;
  --shadow: 0 18px 40px rgba(28, 24, 20, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header {
  padding: 28px 6vw 10px;
}

.nav-shell {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.brand {
  font-size: 1.6rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--muted);
}

.ad-label {
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--moss);
  font-weight: 600;
}

main {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 0 6vw 120px;
}

.section {
  display: flex;
  gap: 40px;
  position: relative;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.section-title {
  font-size: 2.2rem;
  line-height: 1.15;
  margin: 0;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

.hero {
  min-height: 520px;
}

.hero-text {
  background: var(--sand);
  padding: 40px 38px;
  box-shadow: var(--shadow);
  max-width: 520px;
}

.hero-media {
  flex: 1.2;
  align-self: flex-end;
  margin-top: 60px;
  position: relative;
}

.image-frame {
  background: #d8cabd;
  padding: 12px;
  box-shadow: var(--shadow);
}

.image-frame.tall {
  max-width: 520px;
  margin-left: auto;
}

.layer-card {
  background: var(--rose);
  padding: 26px;
  max-width: 360px;
  position: absolute;
  bottom: -40px;
  left: -40px;
  box-shadow: var(--shadow);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--copper);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #f1e8df;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
}

.card .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--moss);
}

.card .mini {
  color: var(--muted);
  font-size: 0.95rem;
}

.mosaic {
  background: var(--moss);
  color: #f8f4ef;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mosaic .button {
  background: #f5c2a7;
  color: #2a1e16;
}

.form-zone {
  background: #fff;
  padding: 36px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  gap: 6px;
  flex: 1 1 220px;
}

input, select {
  padding: 10px 12px;
  border: 1px solid #d9cfc4;
  border-radius: 8px;
  font-size: 1rem;
}

fieldset {
  border: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

fieldset label {
  display: flex;
  gap: 10px;
  align-items: center;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 28px;
  bottom: 28px;
  background: var(--moss);
  color: #fdf9f5;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 20;
}

footer {
  background: #1f1b16;
  color: #f5efe8;
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #c7b9aa;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #c7b9aa;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 16px 18px;
  max-width: 320px;
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--moss);
  color: #fff;
}

.cookie-actions .reject {
  background: #e9dfd5;
  color: var(--ink);
}

.simple-hero {
  background: var(--sand);
  padding: 40px;
  display: flex;
  gap: 30px;
  align-items: center;
}

.simple-hero .image-frame {
  max-width: 420px;
}

.list-block {
  background: #fff;
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 960px) {
  .section,
  .section.reverse,
  .simple-hero {
    flex-direction: column;
  }

  .hero-media {
    margin-top: 0;
  }

  .layer-card {
    position: static;
    margin-top: 20px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
