* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --accent: #b1492d;
  --accent-dark: #8c3621;
  --paper: #f8f4ef;
  --mist: #eef1f3;
  --night: #1c1c1f;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  padding: 24px 0 10px;
}

.nav-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-ghost {
  background: #fff;
  color: var(--night);
  border: 1px solid #e1d9d2;
}

.link-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.hero {
  background: url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?q=80&w=1600&auto=format&fit=crop") center/cover no-repeat;
  color: #fff;
  padding: 90px 0 120px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 31, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: min(620px, 92vw);
}

.section {
  padding: 70px 0;
  position: relative;
}

.layered {
  background: var(--paper);
}

.contrast {
  background: var(--night);
  color: #fff;
}

.mist {
  background: var(--mist);
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.asym-offset {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.asym-photo {
  border-radius: 20px;
  overflow: hidden;
}

.split-band {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card {
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 16px;
  height: 170px;
  object-fit: cover;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.tagline {
  color: var(--muted);
  font-size: 0.95rem;
}

.highlight {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  border: 1px solid #e6ddd5;
}

.quote {
  font-style: italic;
  border-left: 4px solid var(--accent);
  padding-left: 18px;
}

.flow {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8cfc7;
  font-size: 1rem;
  width: 100%;
}

.footer {
  padding: 50px 0 70px;
  background: #111114;
  color: #e8e2dc;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #e6ddd5;
  padding: 14px 0;
  z-index: 9;
}

.sticky-cta .container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  width: min(360px, 90vw);
  z-index: 99;
  display: none;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 900px) {
  .hero-content {
    padding-left: 60px;
  }

  .asym-row,
  .split-band {
    flex-direction: row;
    align-items: center;
  }

  .asym-row.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .flow {
    flex-direction: row;
  }

  .flow > div {
    flex: 1;
  }
}
