* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1d1a;
  --muted: #5a564f;
  --sand: #f6f1ea;
  --clay: #e2d6c9;
  --stone: #c9c2b8;
  --accent: #8c6a4f;
  --accent-dark: #6e503b;
  --white: #ffffff;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

button {
  border: none;
  cursor: pointer;
  font: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  padding: 18px 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 1px solid var(--clay);
}

.brand {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid var(--clay);
  border-radius: 999px;
}

.hero {
  padding: 70px 8vw 40px;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: stretch;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.hero-card {
  align-self: flex-start;
  background: var(--white);
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(31, 29, 26, 0.12);
  max-width: 340px;
}

.hero-image {
  flex: 1;
  background: var(--clay);
  border-radius: 22px;
  overflow: hidden;
  transform: translateY(20px);
}

.primary-btn {
  background: var(--accent);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.secondary-btn {
  background: transparent;
  color: var(--accent-dark);
  padding: 12px 20px;
  border: 1px solid var(--accent-dark);
  border-radius: 999px;
}

.section {
  padding: 60px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--white);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.split {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  background: var(--clay);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel.light {
  background: var(--sand);
  border: 1px solid var(--clay);
}

.panel-image {
  flex: 1;
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(31, 29, 26, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-image {
  border-radius: 14px;
  overflow: hidden;
  background: var(--clay);
  height: 140px;
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.form-block {
  background: var(--white);
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 16px 36px rgba(31, 29, 26, 0.08);
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row input,
.form-row select,
.form-row textarea {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid var(--clay);
  border-radius: 10px;
  font-size: 0.95rem;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 26px;
  bottom: 26px;
  background: var(--accent-dark);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 10;
}

.footer {
  padding: 40px 8vw 60px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--clay);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(31, 29, 26, 0.12);
  max-width: 340px;
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
}

.cookie-accept {
  background: var(--accent);
  color: var(--white);
}

.cookie-reject {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-details {
  background: var(--white);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--clay);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 900px) {
  .hero,
  .split {
    flex-direction: column;
  }

  .hero-image {
    transform: translateY(0);
  }
}
