:root {
  --ink: #1f2a33;
  --muted: #4a5a66;
  --accent: #d97752;
  --accent-dark: #b85f3f;
  --sand: #f6f1ec;
  --cloud: #eef2f5;
  --forest: #1f3a3a;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid #e6eaee;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.main-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--sand);
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 16px;
  font-size: 0.78rem;
}

.band {
  padding: 64px 0;
}

.band--hero {
  background: var(--sand);
}

.band--cloud {
  background: var(--cloud);
}

.band--image {
  background: #dfe7ec;
  background-image: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80');
  background-size: cover;
  background-position: center;
  color: #f6f8f9;
}

.band--image-alt {
  background: #efe4dd;
  background-image: url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80');
  background-size: cover;
  background-position: center;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 340px;
}

.split-media {
  flex: 1 1 320px;
  min-height: 320px;
  border-radius: 22px;
}

.hero-media {
  background: #b9c5cd;
  background-image: url('https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80');
  background-size: cover;
  background-position: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 12px;
}

h1, h2, h3 {
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 3vw, 3rem);
}

h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
}

p {
  margin: 0 0 18px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  border: 0;
  cursor: pointer;
}

.btn.secondary {
  background: var(--forest);
}

.text-link {
  font-weight: 600;
  text-decoration: underline;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.image-frame {
  background: #d9dee2;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 440px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 260px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(20, 30, 40, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-panel {
  background: var(--white);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(20, 30, 40, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input, select, textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c9d2da;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  background: #0f1d24;
  color: #d9e2e6;
  padding: 40px 0;
  font-size: 0.95rem;
}

.footer a {
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.footer small {
  color: #b7c3c9;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--forest);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  padding: 18px;
  max-width: 320px;
  z-index: 6;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.notice-list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.notice {
  background: var(--sand);
  padding: 16px;
  border-radius: 14px;
  flex: 1 1 200px;
}

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #f5f6f7;
  font-size: 0.8rem;
}

.section-note {
  font-size: 0.95rem;
  color: var(--muted);
}

.page-hero {
  background: var(--cloud);
  padding: 48px 0;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 760px) {
  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }

  .split-media {
    min-height: 220px;
  }
}
