:root {
  color-scheme: light;
  --ink: #1f2428;
  --muted: #5a646b;
  --paper: #f7f4ef;
  --accent: #8a2b3c;
  --accent-dark: #6b1f2d;
  --sand: #e9e1d6;
  --slate: #2d3338;
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

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

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

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

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

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

.ad-label {
  background: var(--slate);
  color: white;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 48px 0 32px;
}

.hero-panel {
  flex: 2 1 520px;
  padding: 36px;
  background-color: #2a2f33;
  color: white;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-panel h1 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  margin: 0 0 12px;
}

.hero-panel p {
  max-width: 480px;
  margin: 0 0 18px;
}

.hero-aside {
  flex: 1 1 280px;
  background: var(--sand);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-aside h2 {
  font-size: 1.1rem;
  margin: 0;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: var(--accent);
  color: white;
}

.button.light {
  background: white;
  color: var(--accent);
}

.section {
  padding: 40px 0;
}

.section.alt {
  background: white;
}

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

.column {
  flex: 1 1 320px;
}

.column.narrow {
  flex: 1 1 240px;
}

.column.wide {
  flex: 2 1 520px;
}

.image-frame {
  background: #d7d0c7;
  padding: 6px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--sand);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.section-bg {
  background-color: #1f2428;
  color: white;
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-bg .overlay {
  background: rgba(31, 36, 40, 0.8);
  padding: 36px;
}

.form-panel {
  background: white;
  padding: 32px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.form-grid label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.form-grid input,
.form-grid select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #c1c1c1;
  font-size: 1rem;
}

.form-field {
  flex: 1 1 220px;
}

.form-note {
  font-size: 0.95rem;
  color: var(--muted);
}

.status {
  margin-top: 12px;
  font-weight: 600;
}

.footer {
  padding: 36px 0 60px;
  font-size: 0.95rem;
  color: var(--muted);
}

.footer a {
  color: var(--muted);
}

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

.footer-col {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: white;
  padding: 14px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 360px;
  background: white;
  border: 1px solid #d1c9bf;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  z-index: 12;
}

.cookie-banner.is-hidden {
  display: none;
}

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

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

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 32px 0 12px;
}

.page-hero h1 {
  margin-top: 0;
}

.page-image {
  flex: 1 1 320px;
}

.page-copy {
  flex: 2 1 520px;
}

.notice {
  background: var(--sand);
  padding: 16px;
}

@media (max-width: 780px) {
  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
