:root {
  color-scheme: light;
  --ink: #1e1b1c;
  --muted: #5c5557;
  --accent: #8d2336;
  --accent-dark: #681b28;
  --soft: #f5f1f2;
  --sand: #f7f4ef;
  --line: #ded6d8;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Arial", "Helvetica", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 5vw;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--white);
}

.section {
  padding: 70px 8vw;
}

.section.alt {
  background: var(--soft);
}

.section.sand {
  background: var(--sand);
}

.magazine-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.magazine-col {
  flex: 1 1 260px;
  min-width: 240px;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 90px 8vw 80px;
  color: var(--white);
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(18, 12, 12, 0.8), rgba(18, 12, 12, 0.2));
}

.hero-content {
  position: relative;
  max-width: 620px;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--white);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .image {
  flex: 1 1 280px;
}

.quote-block {
  border-left: 4px solid var(--accent);
  padding-left: 18px;
  font-style: italic;
  color: var(--muted);
}

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

.card {
  flex: 1 1 220px;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 30px;
  background: var(--accent);
  color: var(--white);
}

.form-shell {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-shell label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 1rem;
}

.form-shell button {
  border: none;
  cursor: pointer;
}

.footer {
  padding: 50px 8vw;
  background: var(--ink);
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 100;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 200;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

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

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--white);
  color: var(--accent);
  cursor: pointer;
}

.cookie-actions button.primary {
  background: var(--accent);
  color: var(--white);
}

.small-title {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 700;
}

.page-hero {
  padding: 80px 8vw 40px;
  background: var(--soft);
}

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

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}

@media (max-width: 880px) {
  .main-nav {
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .sticky-cta {
    right: 12px;
    bottom: 12px;
    font-size: 0.9rem;
  }
}
