:root {
  --ink: #1f2328;
  --muted: #5a6672;
  --accent: #c35a2b;
  --accent-dark: #a44a23;
  --paper: #f6f3ef;
  --panel: #ffffff;
  --sand: #f1e7dc;
  --stone: #e3e0da;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a.link-inline {
  color: var(--accent-dark);
  text-decoration: underline;
}

header {
  background: var(--panel);
  border-bottom: 1px solid #e5e0d8;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 4px 10px;
  background: var(--sand);
  border-radius: 999px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 28px 0 60px;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  gap: 24px;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1 1 320px;
  min-width: 280px;
  background: var(--panel);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(31, 35, 40, 0.08);
}

.split-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--stone);
}

.split-media img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.tone-warm {
  background: #e9e2d6;
}

.tone-sand {
  background: #efe5d9;
}

.tone-stone {
  background: #e4ded2;
}

.tone-clay {
  background: #eadfd2;
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  background: #f7efe5;
  margin-top: 18px;
}

.mini-card img {
  width: 120px;
  height: 90px;
  border-radius: 10px;
  object-fit: cover;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

h1, h2, h3 {
  margin-top: 0;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.btn:focus {
  outline: 2px solid var(--accent-dark);
  outline-offset: 2px;
}

.list-clean {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-tag {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-card {
  background: var(--panel);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e8e1d6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d9d0c3;
  border-radius: 10px;
  font-size: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

.notice {
  background: var(--sand);
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
}

footer {
  background: var(--panel);
  padding: 28px 24px 60px;
  border-top: 1px solid #e5e0d8;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--panel);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  z-index: 30;
  display: none;
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.split-note {
  background: var(--sand);
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
