* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1e1d1b;
  --muted: #5b5a57;
  --sand: #f4f1ec;
  --clay: #c8b7a6;
  --sage: #8ca08a;
  --sun: #e6b85c;
  --night: #0f1820;
  --paper: #fffdf9;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 10px;
  border-bottom: 1px solid #ece6de;
  background: var(--paper);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.92rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a {
  padding: 6px 10px;
  border-radius: 16px;
  background: transparent;
}

.nav a:hover {
  background: #efe7dd;
}

.ad-label {
  font-size: 0.75rem;
  color: var(--muted);
  border: 1px dashed #d1c7bb;
  padding: 6px 10px;
  border-radius: 14px;
  background: #faf6f0;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--night);
  color: #fefbf6;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80")
    center/cover no-repeat;
  opacity: 0.85;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 70px 0;
  max-width: 560px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.05rem;
  color: #f7efe4;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button.primary {
  background: var(--sun);
  color: #2b2417;
}

.button.secondary {
  background: transparent;
  border: 1px solid #f1e6d6;
  color: #fefbf6;
}

.button.primary:hover,
.button.secondary:hover {
  transform: translateY(-1px);
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 24px;
  background: var(--sage);
  color: #0d1511;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.sticky-cta:hover {
  transform: translateY(-2px);
}

.section {
  padding: 70px 0;
  position: relative;
}

.section.light {
  background: var(--sand);
}

.section.dark {
  background: #1b2429;
  color: #fefbf6;
}

.section.section-backdrop {
  background: linear-gradient(
      rgba(255, 253, 249, 0.92),
      rgba(255, 253, 249, 0.92)
    ),
    url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80")
      center/cover no-repeat;
}

.asym {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.asym.reverse {
  flex-direction: row-reverse;
}

.asym .text-block {
  flex: 1 1 360px;
  min-width: 280px;
}

.asym .media-block {
  flex: 1 1 380px;
  min-width: 280px;
  background: #d9d1c5;
  padding: 16px;
  border-radius: 24px;
}

.asym .media-block.offset {
  margin-top: -40px;
}

.media-block img {
  width: 100%;
  height: 320px;
  border-radius: 18px;
  object-fit: cover;
}

.tagline {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(35, 31, 24, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card .card-img {
  background: #e5ddd3;
  border-radius: 16px;
  padding: 10px;
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: #6a4d1f;
}

.layered {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.layered .panel {
  flex: 1 1 300px;
  background: #fdf9f3;
  border-radius: 18px;
  padding: 22px;
  position: relative;
}

.layered .panel.accent {
  background: #27323b;
  color: #f9f3ea;
  margin-top: 30px;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.form-shell {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 30px rgba(23, 18, 10, 0.12);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-shell .form-side {
  flex: 1 1 260px;
}

.form-shell label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d9cfc2;
  margin-bottom: 14px;
  font-family: inherit;
}

.form-shell button {
  width: 100%;
}

.form-note {
  font-size: 0.88rem;
  color: var(--muted);
}

.inline-cta {
  color: #6f4c15;
  text-decoration: underline;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(25, 20, 15, 0.08);
}

.footer {
  padding: 40px 0;
  border-top: 1px solid #e7e0d8;
  background: #fefbf6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.footer small {
  color: var(--muted);
}

.references a {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #1f252a;
  color: #fefbf6;
  padding: 18px;
  border-radius: 16px;
  max-width: 320px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1 1 auto;
}

.page-hero {
  padding: 60px 0 40px;
}

.page-hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 820px;
}

.muted {
  color: var(--muted);
}

@media (max-width: 820px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }

  .hero-content {
    padding: 60px 0;
  }
}
