* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f2ee;
  --ink: #1d1b1a;
  --muted: #5b5753;
  --accent: #b65a3a;
  --accent-soft: #e7d5c9;
  --panel: #ffffff;
  --line: #e1d9d2;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6%;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.nav .brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav .links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav .ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 220px;
  text-align: right;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  min-height: 520px;
  border-bottom: 1px solid var(--line);
}

.hero .copy,
.hero .media {
  flex: 1 1 320px;
  min-height: 320px;
}

.hero .copy {
  padding: 60px 8%;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero .media {
  background: #c9b9ad;
}

.hero .media img {
  width: 100%;
  height: 100%;
}

.section {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.section.reverse {
  flex-direction: row-reverse;
}

.section .media,
.section .content {
  flex: 1 1 320px;
  min-height: 280px;
}

.section .media {
  background: #d9c8bd;
  display: flex;
  align-items: stretch;
}

.section .media img {
  width: 100%;
  height: 100%;
}

.section .content {
  padding: 50px 8%;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section.alt .content {
  background: var(--accent-soft);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--muted);
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 20px;
}

p {
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 30px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.card .card-media {
  width: 110px;
  min-width: 110px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  background: #d5c7bb;
}

.card .card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price {
  font-weight: 700;
  color: var(--ink);
}

.form-wrap {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

.footer {
  padding: 30px 6%;
  background: #ece5df;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.disclaimer {
  font-size: 12px;
  color: #6a625b;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #1f1d1b;
  color: #fff;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions .button {
  padding: 8px 14px;
  font-size: 14px;
}

.cookie-actions .button.secondary {
  color: #fff;
  border-color: #fff;
}

.plain-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.notice {
  background: #fff6ef;
  border: 1px solid #e8cdbf;
  padding: 16px;
  border-radius: 12px;
  color: #5b3d2c;
}

@media (max-width: 900px) {
  .hero .copy,
  .hero .media,
  .section .media,
  .section .content {
    flex: 1 1 100%;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav .links {
    flex-wrap: wrap;
  }
}
