:root {
  color-scheme: light;
  --bg: #f7f4ef;
  --ink: #1f1d1a;
  --muted: #6b645b;
  --accent: #c05a2c;
  --accent-dark: #8c3f1e;
  --cream: #fff6e8;
  --sage: #dce3d2;
  --sand: #efe5d6;
  --stone: #e2ded6;
  --shadow: 0 18px 40px rgba(31, 29, 26, 0.12);
  --radius: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 28px 6vw 80px;
}

.mag-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 0 8px;
  border-bottom: 1px solid rgba(31, 29, 26, 0.1);
}

.top-strip {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-block h1,
.brand-block h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
}

.brand-block p {
  margin: 0;
  color: var(--muted);
  max-width: 460px;
}

.nav-split {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-split a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav-split a:hover {
  border-color: var(--ink);
}

.hero-mag {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-mag .hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-mag .hero-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--cream);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-mag .hero-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-mag .hero-visual img {
  border-radius: 24px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  box-shadow: var(--shadow);
}

.sticky-cta button {
  background: var(--accent-dark);
}

.columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.column-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.column-card h3 {
  margin: 0;
}

.stripe-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--sage);
}

.mag-story {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--stone);
  padding: 30px;
  border-radius: var(--radius);
}

.mag-story .story-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  font-size: 1.1rem;
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  color: var(--ink);
}

.services {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--sand);
  padding: 32px;
  border-radius: var(--radius);
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  background: #fff;
  border-radius: 14px;
}

.service-item span {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(31, 29, 26, 0.2);
  font-size: 1rem;
  font-family: inherit;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(31, 29, 26, 0.12);
  font-size: 0.95rem;
  color: var(--muted);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.muted {
  color: var(--muted);
}

.mini-badge {
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.85rem;
  border: 1px solid rgba(31, 29, 26, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mag-columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mag-columns .column {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.section-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  background: #fff;
  padding: 22px;
  border-radius: 16px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news-board {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--cream);
  padding: 28px;
  border-radius: var(--radius);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (min-width: 860px) {
  .hero-mag .hero-grid {
    flex-direction: row;
  }

  .hero-mag .hero-panel,
  .hero-mag .hero-visual {
    flex: 1;
  }

  .columns {
    flex-direction: row;
  }

  .column-card {
    flex: 1;
  }

  .mag-story .story-grid {
    flex-direction: row;
  }

  .mag-story .story-grid > div {
    flex: 1;
  }

  .image-row {
    flex-direction: row;
  }

  .two-col {
    flex-direction: row;
  }

  .two-col > div {
    flex: 1;
  }

  .mag-columns {
    flex-direction: row;
  }

  .mag-columns .column {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-grid > div {
    flex: 1;
  }
}
