* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #141414;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  padding: 18px 36px;
  border-bottom: 1px solid #e4e0da;
  background: #fffaf3;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.nav-left,
.nav-right {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 4px 10px;
  border: 1px solid #cbbfb0;
  border-radius: 999px;
  background: #f2e9db;
}

.content {
  flex: 1;
}

.section {
  padding: 48px 36px;
}

.section-alt {
  background: #fffaf3;
}

.section-dark {
  background: #1f1f1f;
  color: #f6f4f1;
}

.section-photo {
  background-image: url("https://images.unsplash.com/photo-1617343586189-c552f971aa5a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f6f4f1;
  position: relative;
}

.section-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.section-photo > * {
  position: relative;
  z-index: 1;
}

.mag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.mag-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mag-col.wide {
  flex: 2 1 420px;
}

.mag-col.narrow {
  flex: 1 1 240px;
}

.hero-title {
  font-size: 42px;
  line-height: 1.1;
  margin: 0 0 12px;
}

.subtle {
  color: #6e6b66;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border: 1px solid #e7e2da;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
}

.price {
  font-weight: 600;
  font-size: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  border: none;
  background: #141414;
  color: #f6f4f1;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
}

.button.secondary {
  background: #f2e9db;
  color: #141414;
  border: 1px solid #cbbfb0;
}

.inline-link {
  text-decoration: underline;
}

.image-frame {
  background: #e9e3da;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 320px;
}

.image-frame.small img {
  height: 220px;
}

.split-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split-banner .image-frame {
  flex: 1 1 320px;
}

.split-banner .text {
  flex: 1 1 320px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #fffaf3;
  border-top: 1px solid #e4e0da;
  padding: 14px 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e7e2da;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-row input,
.form-row select,
.form-row textarea {
  flex: 1 1 200px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7d0c6;
  font-size: 14px;
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 36px;
  background: #141414;
  color: #f6f4f1;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-columns > div {
  flex: 1 1 200px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.disclaimer {
  margin-top: 16px;
  font-size: 13px;
  color: #c9c4bd;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid #e7e2da;
  border-radius: 14px;
  padding: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.notice {
  background: #f2e9db;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #d7d0c6;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.meta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 720px) {
  .hero-title {
    font-size: 32px;
  }

  .top-bar,
  .section,
  .sticky-cta,
  .footer {
    padding: 24px;
  }
}
