* {
  box-sizing: border-box;
}

:root {
  --ink: #1c1b1a;
  --muted: #5f5b56;
  --paper: #f7f3ef;
  --accent: #c27b5f;
  --accent-dark: #9b5a44;
  --olive: #d8d2c7;
  --sand: #efe7de;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 0 12px;
}

.brand {
  font-size: 22px;
  letter-spacing: 0.4px;
  font-weight: 700;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px 0 10px;
}

.hero-copy {
  flex: 1 1 380px;
  padding: 28px;
  background: var(--sand);
  border-radius: 18px;
}

.hero-image {
  flex: 1 1 420px;
  min-height: 360px;
  border-radius: 22px;
  overflow: hidden;
  background: #cfd5d1;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

h1 {
  font-size: clamp(32px, 4vw, 46px);
  margin: 10px 0 12px;
}

h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 14px;
}

h3 {
  margin: 0 0 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-size: 14px;
  background: transparent;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn.primary:hover {
  background: var(--accent-dark);
}

.inline-link {
  border-bottom: 1px solid var(--accent);
}

.section {
  padding: 60px 0;
  position: relative;
}

.section.alt {
  background: var(--olive);
}

.section.split {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1 1 320px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
}

.split .media {
  flex: 1 1 320px;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
  background: #d7d2ca;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card .img-wrap {
  border-radius: 14px;
  overflow: hidden;
  background: #d1ccc4;
}

.card .img-wrap img {
  width: 100%;
  height: 160px;
}

.price {
  font-weight: 700;
}

.highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
}

.highlight .note {
  flex: 1 1 260px;
}

.highlight .img-wrap {
  flex: 1 1 260px;
  border-radius: 16px;
  overflow: hidden;
  background: #cbd2d1;
}

.highlight .img-wrap img {
  width: 100%;
  height: 240px;
}

.form-block {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

label {
  font-size: 13px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d1ccc4;
  font-size: 14px;
  font-family: inherit;
}

.footer {
  padding: 40px 0 70px;
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border: 1px solid #d1ccc4;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 50;
}

.sticky-cta a:hover {
  color: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid #d1ccc4;
  border-radius: 16px;
  padding: 16px;
  width: min(360px, 88%);
  z-index: 60;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.legal-hero {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px 0 20px;
}

.legal-hero .media {
  flex: 1 1 300px;
  border-radius: 18px;
  overflow: hidden;
  background: #d7d2ca;
  min-height: 220px;
}

.legal-hero .media img {
  width: 100%;
  height: 100%;
}

.legal-hero .copy {
  flex: 1 1 300px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.callout {
  background: var(--sand);
  padding: 16px;
  border-radius: 14px;
}

@media (max-width: 760px) {
  .top-bar {
    flex-direction: column;
    gap: 12px;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
