* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1f22;
  --muted: #5a6670;
  --surface: #ffffff;
  --tint: #f2f5f7;
  --accent: #1f6f8b;
  --accent-dark: #165266;
  --sand: #f4efe8;
  --sage: #e1ece7;
  --shadow: 0 20px 50px rgba(17, 24, 39, 0.12);
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw 12px;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-disclosure {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 320px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.page {
  padding: 24px 6vw 60px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  background: var(--tint);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-media {
  flex: 1 1 320px;
}

.hero-copy {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-copy h1 {
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.15;
}

.hero-media {
  position: relative;
  min-height: 360px;
  background: #d9e1e7;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.section {
  margin-top: 48px;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--sage);
  font-size: 0.85rem;
  color: var(--accent-dark);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--surface);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  background: #dae3e9;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.muted {
  color: var(--muted);
}

.highlight {
  background: var(--sand);
  padding: 28px;
  border-radius: 24px;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  background: #fff;
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ccd5db;
  font-size: 1rem;
}

.footer {
  padding: 36px 6vw 48px;
  background: #12191d;
  color: #e6edf1;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 20px;
}

.footer a {
  color: #e6edf1;
}

.legal {
  font-size: 0.85rem;
  color: #b6c2c9;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #0e151a;
  color: #fff;
  padding: 18px;
  border-radius: 18px;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #f6c453;
}

.cookie-reject {
  background: #7b8a93;
  color: #fff;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-column > div {
  flex: 1 1 260px;
}

.inline-cta {
  color: var(--accent-dark);
  text-decoration: underline;
}

.page-hero {
  background: var(--sage);
  padding: 30px;
  border-radius: 24px;
}

.image-frame {
  border-radius: 22px;
  overflow: hidden;
  background: #d7e0e6;
}

.notice {
  background: #fdf5e6;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #f3d29c;
}
