* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1b1b1b;
  background: #f6f4f1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

.header {
  background: #f6f4f1;
  border-bottom: 1px solid #d8d3cc;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-cta {
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid #1b1b1b;
  background: #1b1b1b;
  color: #f6f4f1;
  transition: transform 0.2s ease;
}

.btn-outline {
  background: transparent;
  color: #1b1b1b;
}

.btn:hover {
  transform: translateY(-1px);
}

.section {
  padding: 64px 0;
}

.section--paper {
  background: #ffffff;
}

.section--ink {
  background: #141414;
  color: #f7f2ed;
}

.section--tint {
  background: #efe7dc;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8a6c54;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 12px 0 20px;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 620px;
}

.magazine-columns {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.col-wide {
  flex: 2 1 420px;
}

.col-narrow {
  flex: 1 1 220px;
}

.hero-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.18);
}

.inline-image {
  border-radius: 18px;
  overflow: hidden;
}

.pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(27, 27, 27, 0.08);
  font-size: 0.9rem;
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
  border-left: 3px solid #8a6c54;
  padding-left: 16px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  flex: 1 1 220px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin-top: 0;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #8a6c54;
}

.split {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.split > div {
  flex: 1 1 280px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.form label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form input,
.form select,
.form textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d7d1c8;
  font-size: 1rem;
}

.form button {
  border: none;
  cursor: pointer;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1b1b1b;
  color: #f6f4f1;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 5;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.footer {
  padding: 36px 0;
  border-top: 1px solid #d8d3cc;
  background: #f6f4f1;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #d8d3cc;
  padding: 16px;
  display: none;
  z-index: 10;
}

.cookie-inner {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  background: #efe7dc;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(27, 27, 27, 0.15);
  flex-wrap: wrap;
}

.table-row span:first-child {
  font-weight: 600;
}

.align-end {
  text-align: right;
}

@media (max-width: 760px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
