* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1c1a;
  --muted: #6b675f;
  --sand: #f6f1ea;
  --stone: #e6ded4;
  --accent: #4b2e2b;
  --accent-strong: #2e1b18;
  --gold: #b08a4c;
  --white: #ffffff;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  background: var(--accent);
  color: var(--white);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
}

.nav-links a {
  color: var(--white);
  opacity: 0.9;
}

.nav-links a:hover {
  opacity: 1;
}

.sidebar-footer {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: auto;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 56px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--white);
}

.section.dense {
  padding: 40px 8vw;
}

.section-title {
  font-size: 28px;
  letter-spacing: 1px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pill {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent-strong);
  background: var(--accent-strong);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.btn.light {
  background: transparent;
  color: var(--accent-strong);
}

.btn.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.06);
}

.card .price {
  font-weight: 600;
  color: var(--accent-strong);
}

.quote {
  background: var(--stone);
  border-radius: 18px;
  padding: 24px;
  font-style: italic;
}

.inline-link {
  color: var(--accent-strong);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.image-stack {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.image-stack img {
  height: 240px;
  object-fit: cover;
}

.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d2c7bb;
  font-size: 14px;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 50;
  background: var(--accent-strong);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.footer {
  padding: 28px 8vw;
  background: var(--accent-strong);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(29, 28, 26, 0.96);
  color: var(--white);
  padding: 18px 8vw;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal {
  padding: 48px 8vw;
  background: var(--white);
}

.legal h1 {
  margin-bottom: 18px;
}

.legal h2 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.contact-card {
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge {
  background: var(--stone);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .split,
  .image-stack {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
  }
}
