* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4ef;
  --ink: #1a1a1a;
  --muted: #5e5e5e;
  --accent: #1f5b8f;
  --accent-soft: #e3eef7;
  --sand: #efe7da;
  --stone: #e8e2d9;
  --line: #d8d2c8;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

header {
  padding: 24px 8%;
  border-bottom: 1px solid var(--line);
  background: #fffdf9;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--accent-soft);
  color: #0b395e;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
}

main {
  padding: 40px 8% 80px;
}

.section {
  margin: 48px 0;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 320px;
  min-width: 280px;
}

.headline {
  font-size: 2.3rem;
  line-height: 1.2;
  margin: 0 0 18px;
}

.subhead {
  font-size: 1.1rem;
  color: var(--muted);
}

.img-box {
  height: 360px;
  background: var(--sand);
  border-radius: 18px;
  overflow: hidden;
}

.img-box.tall {
  height: 420px;
}

.img-box.short {
  height: 260px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 28px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  background: var(--stone);
  font-size: 0.85rem;
}

.card-list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.card-body {
  padding: 16px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #123c5b;
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

.form-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

footer {
  padding: 32px 8%;
  background: #fffdf9;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
}

.cta-bar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: none;
  z-index: 12;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.section.alt {
  background: var(--sand);
  padding: 32px;
  border-radius: 22px;
}

.section.stone {
  background: var(--stone);
  padding: 32px;
  border-radius: 22px;
}

.list {
  margin: 12px 0 0;
  padding-left: 18px;
}

@media (max-width: 860px) {
  header,
  main,
  footer {
    padding-left: 6%;
    padding-right: 6%;
  }

  .headline {
    font-size: 1.9rem;
  }

  .cta-bar {
    right: 10px;
    left: 10px;
    justify-content: space-between;
  }
}
