* {
  box-sizing: border-box;
}

:root {
  --ink: #1f1d1a;
  --muted: #6b625c;
  --sand: #f7f1ea;
  --taupe: #e7ddd4;
  --clay: #d4b8a4;
  --espresso: #3c2f28;
  --accent: #9b5d43;
  --soft: #fff9f3;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background: var(--soft);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--taupe);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--accent);
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  padding: 70px 6vw;
  gap: 40px;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1 1 340px;
  min-width: 280px;
}

.split-media {
  background: var(--taupe);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.75rem;
  color: var(--accent);
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  margin: 18px 0 16px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.ghost {
  background: var(--ink);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
}

.media-shell {
  background: var(--taupe);
  border-radius: 14px;
  overflow: hidden;
}

.media-shell img {
  width: 100%;
  height: 180px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(31, 29, 26, 0.08);
}

.card h3 {
  margin: 16px 0 8px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.banner {
  background: var(--sand);
  border-radius: 24px;
  padding: 36px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0 0;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
}

.form-section {
  background: var(--taupe);
  border-radius: 24px;
  padding: 34px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d0c5bc;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.divider {
  height: 1px;
  background: #d8ccc2;
  margin: 0 6vw;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw 70px;
  background: var(--espresso);
  color: #f5ede6;
}

.footer a {
  color: #f5ede6;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.disclaimer {
  margin-top: 18px;
  font-size: 0.85rem;
  color: #e7ddd4;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-cta span {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 10;
}

.cookie-banner p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  padding: 70px 6vw 40px;
}

.page-hero h1 {
  margin-bottom: 12px;
}

.content-block {
  padding: 30px 6vw 60px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.simple-list div {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
}

.mt-18 {
  margin-top: 18px;
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
