* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1f1f;
  --muted: #5b5b5b;
  --cream: #f7f3ee;
  --stone: #e6e1dc;
  --clay: #cda98b;
  --forest: #2e3a34;
  --accent: #9c5c3b;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  padding: 28px 0 18px;
  position: relative;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav .ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--stone);
  padding: 6px 10px;
}

.hero {
  position: relative;
  margin: 24px 0 90px;
}

.hero-frame {
  background: var(--stone);
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
}

.hero-card {
  position: absolute;
  right: 6%;
  bottom: -50px;
  background: #ffffff;
  padding: 28px;
  max-width: 420px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.hero-card h1 {
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--forest);
  color: #ffffff;
  font-size: 14px;
}

.cta.secondary {
  background: transparent;
  border: 1px solid var(--forest);
  color: var(--forest);
}

.section {
  margin: 86px 0;
}

.background-section {
  background-color: var(--stone);
  background-image: url("https://images.unsplash.com/photo-1780571249151-3baafcc7b061?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 72px 0;
  border-radius: 22px;
}

.section-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.text-block {
  flex: 1;
  min-width: 0;
}

.image-block {
  flex: 1;
  min-width: 0;
  background: var(--stone);
  border-radius: 16px;
  overflow: hidden;
}

.offset-panel {
  background: var(--cream);
  border-radius: 18px;
  padding: 32px;
  margin-left: 10%;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border: 1px solid var(--stone);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-body strong {
  font-size: 18px;
}

.price {
  color: var(--accent);
  font-weight: 600;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.note {
  color: var(--muted);
}

.form-wrap {
  background: var(--forest);
  color: #ffffff;
  padding: 36px;
  border-radius: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  font-size: 14px;
}

button {
  border: none;
  cursor: pointer;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.section-actions {
  margin-top: 20px;
}

.center-actions {
  justify-content: center;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  z-index: 100;
}

.footer {
  background: var(--stone);
  padding: 48px 0;
}

.footer-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-grid div {
  flex: 1 1 200px;
}

.legal-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  max-width: 320px;
  z-index: 120;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--forest);
  color: #ffffff;
  font-size: 12px;
}

.cookie-actions button.secondary {
  background: transparent;
  border: 1px solid var(--forest);
  color: var(--forest);
}

.page-hero {
  background: var(--cream);
  padding: 48px 0;
  margin-bottom: 60px;
}

.page-hero h1 {
  font-size: 34px;
}

.center {
  text-align: center;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.disclaimer {
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .hero-card {
    position: static;
    margin-top: -40px;
  }

  .offset-panel {
    margin-left: 0;
  }
}
