* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1b1a;
  --muted: #5b5854;
  --sand: #f6f1ea;
  --warm: #efe4d7;
  --stone: #ece8e1;
  --accent: #8b5e34;
  --accent-dark: #6e4726;
  --accent-soft: #c8a07c;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 8vw;
  background: var(--sand);
}

.nav-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-bottom-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 40px;
  padding: 60px 8vw;
  background: var(--stone);
}

.hero-text {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.button:hover,
.button:focus {
  background: var(--accent-dark);
}

.button-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.button-outline:hover,
.button-outline:focus {
  background: var(--accent);
  color: #ffffff;
}

.hero-image {
  flex: 1 1 45%;
  display: flex;
}

.img-frame {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background-color: var(--warm);
  display: flex;
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section {
  padding: 70px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split .visual {
  flex: 1 1 45%;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border: 1px solid #e8e1d8;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 1.2rem;
}

.card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.highlight {
  background: var(--sand);
}

.quote-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  padding: 18px 22px;
  border-left: 4px solid var(--accent);
  background: #ffffff;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.form-wrap {
  background: #ffffff;
  border: 1px solid #e8e1d8;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d8d0c6;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  background: var(--ink);
  color: #f7f4ef;
  padding: 40px 8vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f7f4ef;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d9d2c9;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.sticky-cta a {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid #d8d0c6;
  border-radius: 16px;
  padding: 18px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .button {
  padding: 8px 14px;
  font-size: 0.9rem;
}

.banner-secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.two-column {
  display: flex;
  flex-direction: row;
  gap: 26px;
}

.two-column .column {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.list li {
  margin-left: 10px;
}

.page-title {
  font-size: 2.2rem;
}

.spacer {
  height: 18px;
}

@media (max-width: 960px) {
  .hero,
  .split,
  .split.reverse,
  .two-column {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
