* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1c1b1a;
  --muted: #5a5754;
  --accent: #b63b2a;
  --accent-dark: #812518;
  --soft: #f6f1ed;
  --cream: #fff8f2;
  --line: #e7dfd8;
}

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

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

a:hover {
  color: var(--accent-dark);
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 24px 20px 10px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

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

.nav a {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-color: var(--accent);
}

main {
  flex: 1;
}

.section {
  padding: 50px 20px;
  border-bottom: 1px solid var(--line);
}

.section--contrast {
  background: var(--soft);
}

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

.section--image {
  background: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: #fff;
  position: relative;
}

.section--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 27, 26, 0.6);
}

.section--image .section-inner {
  position: relative;
  z-index: 1;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.magazine-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.col--side {
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: 16px;
}

.badge {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--accent-dark);
}

.hero-title {
  font-size: 2.4rem;
  line-height: 1.1;
  margin: 0;
}

.subtle {
  color: var(--muted);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-primary {
  background: var(--accent);
  color: #fff;
}

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

.cta-inline {
  font-weight: 600;
  color: var(--accent-dark);
  border-bottom: 1px solid var(--accent);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 14px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  font-style: italic;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

button {
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer {
  padding: 40px 20px;
  background: #141312;
  color: #f6f1ed;
}

.footer a {
  color: #f6f1ed;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

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

.cookie-actions button {
  flex: 1;
  padding: 10px 14px;
  border-radius: 999px;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  border: 1px solid var(--line);
  background: #fff;
}

@media (min-width: 900px) {
  header {
    padding: 30px 60px 16px;
  }

  .section {
    padding: 70px 60px;
  }

  .section-inner {
    gap: 34px;
  }

  .magazine-row {
    flex-direction: row;
  }

  .col--main {
    flex: 2.1;
  }

  .col--side {
    flex: 1;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .hero-title {
    font-size: 3.3rem;
  }
}
