* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #161616;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-disclosure {
  background: #1c1c1c;
  color: #f7f3ee;
  padding: 6px 10px;
  border-radius: 16px;
  font-size: 0.82rem;
}

.nav a {
  font-size: 0.95rem;
  padding: 6px 8px;
  border-radius: 8px;
}

.nav a:hover,
.nav a:focus {
  background: #e8e2da;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 24px 6vw 80px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content,
.split .media {
  flex: 1 1 320px;
  min-width: 280px;
}

.media {
  background: #e4dfd8;
  padding: 12px;
  border-radius: 18px;
}

.media figure {
  margin: 0;
  background: #dcd5cd;
  border-radius: 14px;
  overflow: hidden;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #6a625b;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 12px 0 20px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 16px;
}

h3 {
  font-size: 1.2rem;
  margin: 0 0 12px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1a1a1a;
  background: #1a1a1a;
  color: #f6f4f1;
  font-weight: 600;
  cursor: pointer;
}

.btn.light {
  background: transparent;
  color: #1a1a1a;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.inline-link {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.card figure {
  margin: 0;
  background: #e0dad2;
  border-radius: 12px;
  overflow: hidden;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 12px;
  background: #ede7df;
  font-size: 0.8rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fbfaf8;
  border: 1px solid #eee7df;
}

.form-shell {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: #58524d;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8d2cc;
  font-size: 1rem;
  background: #fffdfb;
}

footer {
  padding: 48px 6vw 60px;
  background: #1b1b1b;
  color: #f4f1ec;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  width: 100%;
  background: #111;
  color: #fff;
  padding: 12px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.notice {
  padding: 16px;
  border-radius: 14px;
  background: #efe9e2;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.muted {
  color: #6a625b;
}
