:root {
  --cream: #f7f3ef;
  --ink: #1f1b16;
  --soft: #efe6dd;
  --accent: #b56b55;
  --accent-dark: #8f4d3b;
  --sage: #d7dfd7;
  --sand: #f1e6d9;
  --stone: #e6e0d6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

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

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

header {
  padding: 24px 6vw;
  background: var(--cream);
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

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

.ad-label {
  font-size: 0.85rem;
  background: #fff;
  border: 1px solid var(--stone);
  padding: 6px 12px;
}

nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  padding: 72px 6vw;
}

.section.alt {
  background: var(--cream);
}

.section.sage {
  background: var(--sage);
}

.section.sand {
  background: var(--sand);
}

.section.stone {
  background: var(--stone);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

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

.split > div {
  flex: 1 1 320px;
}

.hero {
  position: relative;
  color: #fff;
  padding: 0;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg.bg-hero {
  background-image: url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?w=1400&q=80');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 27, 22, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 96px 6vw;
  max-width: 720px;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin: 0 0 16px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

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

.cta.secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid #fff;
}

.cta.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

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

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 32px rgba(0,0,0,0.08);
}

.card .card-body {
  padding: 20px;
}

.card .price {
  font-weight: 700;
  margin-top: 10px;
}

.highlight {
  background: #fff;
  padding: 22px;
  border-left: 4px solid var(--accent);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.badge {
  font-size: 0.85rem;
  background: var(--accent-dark);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
}

.form-shell {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input, select, textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8d0c8;
  font-size: 1rem;
  font-family: inherit;
}

footer {
  background: var(--ink);
  color: #fff;
  padding: 48px 6vw;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-grid > div {
  flex: 1 1 220px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  z-index: 9;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  color: var(--ink);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  max-width: 320px;
  z-index: 10;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1 1 auto;
}

.notice {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #e2d8cc;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e1d7cc;
}

.frame {
  border-radius: 18px;
  overflow: hidden;
}

.frame-1 { background-color: #d8c3b5; }
.frame-2 { background-color: #e2d7cf; }
.frame-3 { background-color: #d8d4cd; }
.frame-4 { background-color: #cfc8be; }
.frame-5 { background-color: #c8d0c7; }
.frame-6 { background-color: #d6cec4; }
.frame-7 { background-color: #d2c8be; }
.frame-8 { background-color: #d8cfc5; }
.frame-9 { background-color: #d8cdbf; }

.media-1 { background-color: #d9c5bb; }
.media-2 { background-color: #d7c0b3; }
.media-3 { background-color: #d3c7bf; }
.media-4 { background-color: #d9c9be; }
.media-5 { background-color: #d1c0b5; }
.media-6 { background-color: #d5cbbf; }
.media-7 { background-color: #d9cfc6; }
.media-8 { background-color: #cec5bc; }

@media (max-width: 720px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
