* {
  box-sizing: border-box;
}

:root {
  --ink: #1d1b1a;
  --muted: #5a534d;
  --sand: #f6f1ec;
  --clay: #e7d9cc;
  --sage: #dfe8df;
  --night: #2c2a29;
  --accent: #c46b3b;
  --accent-soft: #f2d7c5;
  --bg: #faf7f4;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  overflow: hidden;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  background: white;
  border-bottom: 1px solid #eee0d2;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  padding: 4px 10px;
  background: var(--accent-soft);
  border-radius: 999px;
}

.hero {
  display: flex;
  align-items: stretch;
  gap: 4vw;
  padding: 40px 6vw 10px;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-visual {
  flex: 1;
  position: relative;
  background: var(--clay);
  border-radius: 26px;
  overflow: hidden;
  min-height: 320px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.hero-badge {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  border: none;
  background: var(--accent);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn-alt {
  background: var(--night);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.section {
  padding: 48px 6vw;
  position: relative;
}

.section.light {
  background: white;
}

.section.clay {
  background: var(--clay);
}

.section.sage {
  background: var(--sage);
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 14px;
}

.asym-row {
  display: flex;
  gap: 4vw;
  align-items: center;
  flex-wrap: wrap;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1.1;
  min-width: 260px;
}

.asym-image {
  flex: 0.9;
  min-width: 240px;
  background: var(--sand);
  border-radius: 20px;
  overflow: hidden;
}

.offset-card {
  background: white;
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(30, 20, 10, 0.08);
  position: relative;
  top: -24px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1;
  min-width: 220px;
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(30, 20, 10, 0.08);
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 180px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-tag {
  font-weight: 700;
  color: var(--accent);
}

.floating-note {
  background: var(--accent-soft);
  padding: 16px;
  border-radius: 14px;
  display: inline-block;
}

.selector-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.selector-btn {
  background: white;
  border: 1px solid #d8c6b8;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.form-wrap {
  display: flex;
  gap: 4vw;
  flex-wrap: wrap;
}

.form-panel {
  flex: 1;
  min-width: 260px;
  background: white;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 18px 34px rgba(30, 20, 10, 0.1);
}

.form-panel label {
  display: block;
  margin: 12px 0 6px;
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d6c7bb;
  font-size: 1rem;
}

.form-panel textarea {
  min-height: 110px;
  resize: vertical;
}

.form-action {
  margin-top: 16px;
  width: 100%;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--night);
  color: white;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  z-index: 10;
}

.footer {
  padding: 32px 6vw 50px;
  background: #1f1c1b;
  color: #f8f2ec;
}

.footer a {
  color: inherit;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  font-size: 0.95rem;
}

.legal-note {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #e5d8ce;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #e8d9cc;
  padding: 14px 6vw;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.split-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.split-list ul {
  padding-left: 18px;
  margin: 0;
}

.notice-box {
  background: var(--sand);
  padding: 18px;
  border-radius: 16px;
}

.muted {
  color: var(--muted);
}

.text-center {
  text-align: center;
}

@media (max-width: 880px) {
  .hero {
    flex-direction: column;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
