* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1b4f72;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  background: #fff;
  border-bottom: 1px solid #e4e0da;
  padding: 18px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-disclosure {
  font-size: 0.85rem;
  color: #6b4e3d;
  padding: 6px 10px;
  background: #f2e9dd;
  border-radius: 12px;
}

.main {
  flex: 1;
  padding: 32px 6% 60px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.magazine-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: stretch;
}

.column-wide {
  flex: 2 1 480px;
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
}

.column-narrow {
  flex: 1 1 260px;
  background: #fff7ef;
  padding: 22px;
  border-radius: 18px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
}

.hero-visual {
  flex: 1 1 320px;
  border-radius: 18px;
  background: #e0e7ec;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.subtle {
  color: #5b5b5b;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eaf0f4;
  font-size: 0.85rem;
}

.card-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .img-frame {
  border-radius: 14px;
  overflow: hidden;
  background: #e8ded2;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  background: #1b4f72;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.button.secondary {
  background: #f2e9dd;
  color: #6b4e3d;
}

.inline-link {
  text-decoration: underline;
}

.form-section {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d7d1c9;
  border-radius: 10px;
  font-size: 0.95rem;
}

.footer {
  background: #1b1b1b;
  color: #f7f5f2;
  padding: 32px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f2e9dd;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.footer-column {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: none;
  gap: 12px;
  align-items: center;
  max-width: 860px;
  width: calc(100% - 32px);
  z-index: 20;
}

.cookie-banner.visible {
  display: flex;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 90px;
  background: #6b4e3d;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-1491553895911-0055eca6402d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2c3238;
  border-radius: 18px;
  color: #ffffff;
  padding: 32px;
}

.background-panel .panel-inner {
  background: rgba(0, 0, 0, 0.45);
  padding: 20px;
  border-radius: 14px;
}

.img-frame {
  background: #e4e0da;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.split-block {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.split-block .panel {
  flex: 1 1 280px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

.notice {
  background: #fff7ef;
  padding: 16px;
  border-radius: 12px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 6px 10px;
  background: #eaf0f4;
  border-radius: 999px;
  font-size: 0.82rem;
}
