* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1c1c;
  --muted: #5b5f66;
  --paper: #f7f4ef;
  --accent: #2e5d67;
  --accent-soft: #e3eef0;
  --warm: #f0e6da;
  --shadow: rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.topbar {
  background: var(--paper);
  border-bottom: 1px solid #e0ddd7;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.2)), url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?w=1400&q=80") center/cover no-repeat;
  color: #fff;
  padding: 90px 0;
}

.hero-inner {
  display: flex;
  gap: 28px;
  align-items: flex-end;
  justify-content: space-between;
}

.hero h1 {
  font-size: clamp(34px, 4vw, 54px);
  max-width: 520px;
}

.hero p {
  max-width: 420px;
  font-size: 17px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.magazine-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
  margin: 60px 0;
}

.magazine-row.reverse {
  flex-direction: row-reverse;
}

.column {
  flex: 1;
  min-width: 0;
}

.column.narrow {
  flex: 0.7;
}

.column.wide {
  flex: 1.3;
}

.image-frame {
  background: var(--warm);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px var(--shadow);
}

.section-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.muted {
  color: var(--muted);
}

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card .price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.breakout {
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80") center/cover no-repeat;
  color: #fff;
  padding: 60px 0;
}

.breakout .overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 32px;
  border-radius: 20px;
}

.testimonial {
  background: var(--paper);
  padding: 22px;
  border-radius: 16px;
  font-style: italic;
}

.form-section {
  background: var(--accent-soft);
  padding: 36px;
  border-radius: 24px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cfd7d8;
  font-size: 15px;
}

.footer {
  background: var(--paper);
  padding: 40px 0;
  margin-top: 60px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  font-size: 14px;
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 26px var(--shadow);
  font-weight: 600;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #d7d7d7;
  box-shadow: 0 12px 30px var(--shadow);
  border-radius: 18px;
  padding: 16px 20px;
  display: none;
  gap: 12px;
  align-items: center;
  max-width: 680px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #ececec;
  color: var(--ink);
}

.notice {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-inner,
  .magazine-row {
    flex-direction: column;
  }

  .cta-floating {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
