* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f2f0;
  --bg-alt: #ffffff;
  --ink: #2a2421;
  --muted: #6d5f57;
  --accent: #b96f7f;
  --accent-dark: #8f4f5d;
  --frame: #e8d9d4;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent-dark);
  outline-offset: 2px;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 12px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--frame);
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 22px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  padding-top: 8px;
}

.hero {
  padding: 48px 0 60px;
  background: var(--bg-alt);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
}

.image-frame {
  background: var(--frame);
  padding: 8px;
  border-radius: 16px;
}

.image-frame img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: var(--bg-alt);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--frame);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.form-wrapper {
  background: var(--bg-alt);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--frame);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid label {
  font-weight: 600;
  font-size: 14px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--frame);
  font-size: 15px;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f1e6e2;
  border-top: 1px solid var(--frame);
  padding: 12px 0;
  z-index: 10;
}

.sticky-cta .container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.footer {
  padding: 32px 0 80px;
  background: var(--bg-alt);
  margin-top: auto;
  border-top: 1px solid var(--frame);
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  top: 12px;
  right: 12px;
  left: 12px;
  background: #ffffff;
  border: 1px solid var(--frame);
  border-radius: 16px;
  padding: 16px;
  z-index: 20;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-column > div {
  flex: 1 1 280px;
}

.reference-list a {
  color: var(--accent-dark);
}
