* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4ef;
  --ink: #1f1c1a;
  --muted: #5f5a54;
  --accent: #b86a3b;
  --accent-2: #2f5d50;
  --line: #ded8d0;
  --paper: #ffffff;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent-2);
  text-decoration: none;
}

button,
select,
input,
textarea {
  font: inherit;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 6vw;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 60px 6vw 40px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 720px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

.hero-media {
  display: flex;
  flex-direction: column;
  background: #e2ddd6;
  padding: 14px;
  border-radius: 12px;
}

.hero-media img {
  border-radius: 10px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
}

.btn-alt {
  background: var(--accent-2);
}

.btn-ghost {
  background: transparent;
  color: var(--accent-2);
  border: 1px solid var(--accent-2);
}

.section {
  display: flex;
  flex-direction: column;
  padding: 50px 6vw;
  gap: 24px;
}

.section.alt {
  background: var(--paper);
}

.section.bg-image {
  color: #fff;
  position: relative;
  background-size: cover;
  background-position: center;
}

.bg-home {
  background-image: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1400&q=80");
}

.section.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 24, 23, 0.55);
}

.section.bg-image > * {
  position: relative;
  z-index: 1;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row.reverse {
  flex-direction: column-reverse;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--paper);
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.card-image {
  background: #ddd4cb;
  border-radius: 12px;
  overflow: hidden;
}

.image-frame {
  background: #d7cfc6;
  border-radius: 12px;
  overflow: hidden;
}

.price-tag {
  font-weight: 700;
  color: var(--accent-2);
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--paper);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-grid label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.sticky-cta button {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.footer {
  padding: 40px 6vw 60px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 0.92rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-inner {
    max-width: 520px;
  }

  .split-row,
  .split-row.reverse {
    flex-direction: row;
    align-items: center;
  }

  .split-row.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .form-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .form-grid > div {
    flex: 1 1 240px;
  }
}
