* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4ef;
  --text: #1c1b19;
  --muted: #6d655c;
  --accent: #c47d2c;
  --accent-dark: #9f5f1e;
  --surface: #ffffff;
  --surface-alt: #efe8df;
  --outline: #ddd3c6;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #e7ddd2;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px 0 64px;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 1.1rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--outline);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff9f2;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
}

.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.split {
  display: flex;
  gap: 28px;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 24px;
  overflow: hidden;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.split .visual {
  flex: 1;
  min-height: 320px;
  background-color: #e7ddd2;
  position: relative;
  overflow: hidden;
}

.split .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero-title {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0;
}

.button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.button.secondary {
  background: var(--surface-alt);
  color: var(--text);
  border: 1px solid var(--outline);
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 8px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 240px;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  height: 160px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 20px;
  padding: 24px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--outline);
  font-family: inherit;
  font-size: 1rem;
}

.inline-cta {
  font-weight: 600;
}

.quote {
  font-style: italic;
  background: var(--surface-alt);
  padding: 16px;
  border-radius: 16px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 999px;
  padding: 10px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(28, 27, 25, 0.12);
  z-index: 10;
}

.sticky-cta a {
  color: var(--text);
  font-weight: 600;
}

.footer {
  padding: 40px 0;
  background: #201d1a;
  color: #f6f0ea;
}

.footer a {
  color: #f6c78c;
}

.footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer small {
  color: #d2c7bc;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff8f0;
  border: 1px solid var(--outline);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  display: none;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.muted-block {
  background: var(--surface-alt);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--outline);
}

.bg-layer {
  background-color: #e7ddd2;
  border-radius: 24px;
  padding: 24px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
