* {
  box-sizing: border-box;
}

:root {
  --ink: #141414;
  --muted: #5b5b5b;
  --paper: #f6f3ee;
  --accent: #3a5a7a;
  --accent-soft: #dbe7f3;
  --line: #dad4cc;
  --warm: #f2e7d8;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

header {
  border-bottom: 1px solid var(--line);
  background: #fffaf3;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 5vw;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.ad-label {
  font-size: 12px;
  color: #6f4c2c;
  padding: 6px 10px;
  border: 1px solid #c9b7a1;
  border-radius: 999px;
  background: #f8efe4;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.page {
  padding: 28px 5vw 80px;
}

.mt-36 {
  margin-top: 36px;
}

.mt-12 {
  margin-top: 12px;
}

.h-360 {
  height: 360px;
}

.h-320 {
  height: 320px;
}

.h-300 {
  height: 300px;
}

.h-280 {
  height: 280px;
}

.h-260 {
  height: 260px;
}

.h-240 {
  height: 240px;
}

.h-160 {
  height: 160px;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.col-55 {
  flex: 1 1 55%;
  min-width: 260px;
}

.col-45 {
  flex: 1 1 45%;
  min-width: 240px;
}

.col-35 {
  flex: 1 1 35%;
  min-width: 220px;
}

.col-65 {
  flex: 1 1 65%;
  min-width: 260px;
}

.feature-title {
  font-size: 38px;
  line-height: 1.15;
  margin: 0 0 16px;
}

.section-title {
  font-size: 24px;
  margin: 0 0 12px;
}

.lede {
  font-size: 18px;
  color: var(--muted);
}

.image-frame {
  background-color: var(--accent-soft);
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  flex: 1 1 240px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7a5b3a;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn:hover,
.btn:focus {
  filter: brightness(0.95);
}

.panel {
  padding: 24px;
  border-radius: 22px;
  background: var(--warm);
  border: 1px solid #e3d4c0;
}

.list-reset {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 5vw 60px;
  background: #fffaf3;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 20;
  box-shadow: 0 12px 30px rgba(20, 20, 20, 0.15);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #1b1b1b;
  color: #f4f4f4;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .btn {
  background: #f4f4f4;
  color: #1b1b1b;
  border-color: #f4f4f4;
}

.cookie-actions .btn.secondary {
  background: transparent;
  color: #f4f4f4;
  border-color: #f4f4f4;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.note {
  font-size: 13px;
  color: #6b5f54;
}

@media (max-width: 820px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-title {
    font-size: 30px;
  }
}
