* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f2a2e;
  background-color: #f6f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #2b5f6d;
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.9;
}

header {
  padding: 24px 6vw 12px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a6b72;
}

.container {
  width: min(1200px, 88vw);
  margin: 0 auto;
}

.section {
  padding: 60px 0;
}

.section--light {
  background-color: #fefdfb;
}

.section--dark {
  background-color: #1f2a2e;
  color: #f4f1ec;
}

.section--accent {
  background-color: #d9e6ea;
}

.magazine-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
}

.magazine-row.reverse {
  flex-direction: row-reverse;
}

.col-wide {
  flex: 1 1 52%;
  min-width: 280px;
}

.col-narrow {
  flex: 1 1 38%;
  min-width: 240px;
}

.pull-quote {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 20px;
  border-left: 4px solid #2b5f6d;
  background-color: #f2efe9;
}

.image-frame {
  background-color: #c7d2d6;
  overflow: hidden;
  border-radius: 12px;
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 40%;
  min-width: 260px;
}

.hero-image {
  flex: 1 1 50%;
  min-width: 280px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: #64767c;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 24px;
  border: none;
  background-color: #2b5f6d;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.btn-secondary {
  background-color: #f2efe9;
  color: #1f2a2e;
  border: 1px solid #c7d2d6;
}

.cta-inline {
  font-weight: 600;
  text-decoration: underline;
}

.card-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 260px;
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-content {
  padding: 20px;
}

.price {
  font-weight: 700;
  font-size: 1.2rem;
  color: #2b5f6d;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chip {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: #f2efe9;
  font-size: 0.85rem;
}

.testimonial {
  background-color: #f2efe9;
  border-radius: 12px;
  padding: 18px;
  font-size: 0.95rem;
}

.form-card {
  background-color: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c7d2d6;
  font-size: 1rem;
}

.footer {
  padding: 40px 6vw;
  background-color: #1f2a2e;
  color: #f4f1ec;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #f4f1ec;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.sticky-cta button {
  border-radius: 30px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #fff;
  color: #1f2a2e;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.two-column {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1 1 260px;
}

.legal-box {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.note {
  font-size: 0.95rem;
  color: #5a6b72;
}

.wide-image {
  height: 360px;
}

.tall-image {
  height: 420px;
}

.short-image {
  height: 220px;
}
