* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1b1b;
  --muted: #5a5a5a;
  --sand: #f4efe9;
  --clay: #e7ddd2;
  --stone: #cdbcae;
  --accent: #2b5f5a;
  --accent-soft: #d3e4e0;
  --paper: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
}

a {
  color: inherit;
  text-decoration: none;
}

.site {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 270px;
  padding: 28px 24px;
  background: var(--clay);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.menu-toggle {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 10px 14px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--paper);
}

.sidebar-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  background: var(--paper);
  padding: 12px 14px;
  border-radius: 14px;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 48px 56px;
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.section.soft {
  background: var(--paper);
}

.section.wide {
  padding: 60px 56px;
}

.section.stacked {
  flex-direction: column;
}

.section.split {
  align-items: center;
}

.section.reverse {
  flex-direction: row-reverse;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.2;
}

p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.button.alt {
  background: var(--ink);
}

.link-cta {
  font-weight: 600;
  color: var(--accent);
}

.image-frame {
  background: var(--stone);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex: 1;
  min-height: 240px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: var(--paper);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 220px;
}

.card-media {
  height: 180px;
  flex: none;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.price {
  font-weight: 700;
  color: var(--ink);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: var(--accent-soft);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.quote {
  background: var(--paper);
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  border-radius: 12px;
  font-style: italic;
}

.form-wrap {
  background: var(--paper);
  padding: 22px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d7d2cb;
  font-size: 14px;
}

.footer {
  padding: 32px 56px;
  background: var(--clay);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--paper);
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #d6cfc6;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-button {
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: var(--stone);
  color: var(--ink);
}

.hide {
  display: none;
}

@media (max-width: 980px) {
  .site {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .nav {
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .section {
    padding: 36px 24px;
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
