* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1b16;
  --muted: #5b5348;
  --paper: #f6f2ec;
  --sand: #efe6da;
  --clay: #e3d2bf;
  --deep: #2d2520;
  --accent: #7b4d2a;
  --accent-soft: #b08968;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0 20px;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav a {
  font-size: 14px;
  color: var(--muted);
}

.nav a:hover,
.nav a:focus {
  color: var(--accent);
}

.ad-disclosure {
  background: var(--clay);
  color: var(--deep);
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 999px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1618341415451-c691d6ca19a5?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 50px 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.75));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.btn.secondary {
  background: var(--deep);
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: var(--sand);
}

.section-title {
  font-size: 28px;
  margin-bottom: 20px;
}

.magazine-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.magazine-row.reverse {
  flex-direction: row-reverse;
}

.magazine-col {
  flex: 1 1 280px;
}

.image-frame {
  background: var(--clay);
  padding: 10px;
}

.image-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.stat {
  background: #fff;
  padding: 16px;
  flex: 1 1 150px;
  border-left: 4px solid var(--accent);
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  padding: 20px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(31, 27, 22, 0.08);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid rgba(123, 77, 42, 0.4);
}

.inline-link:hover,
.inline-link:focus {
  color: var(--deep);
}

.strip {
  background-image: url("https://images.unsplash.com/photo-1648245812093-7d29c6af8acf?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.strip .section-title {
  color: #fff;
}

.strip .overlay {
  background: rgba(31, 27, 22, 0.7);
  padding: 40px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 8px;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.testimonial {
  flex: 1 1 220px;
  background: #fff;
  padding: 18px;
  border-left: 4px solid var(--accent-soft);
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(31, 27, 22, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid #d2c5b7;
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-row .field {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sticky-cta {
  background: var(--deep);
  color: #fff;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: sticky;
  bottom: 0;
  z-index: 10;
}

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid #dcccbc;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.legal-list {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(31, 27, 22, 0.2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .btn {
  padding: 8px 16px;
  font-size: 13px;
}

.hero-sub {
  background: var(--sand);
  padding: 40px 0;
}

.hero-sub .page {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-sub img {
  width: 100%;
  height: 260px;
}

.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 0 60px;
}

.legal h2 {
  font-size: 22px;
  margin: 24px 0 12px;
}

.legal p,
.legal li {
  color: var(--muted);
}

.contact-block {
  background: #fff;
  padding: 26px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 880px) {
  .hero {
    min-height: 360px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 0 20px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-content {
    max-width: 100%;
  }
}
