* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1f2428;
  background: #f7f6f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 7vw;
  gap: 24px;
  background: #f7f6f2;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  background: #1f2428;
  color: #f7f6f2;
}

.ad-label {
  font-size: 0.78rem;
  color: #5b646b;
  max-width: 240px;
}

.split {
  display: flex;
  gap: 32px;
  padding: 64px 7vw;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  min-width: 260px;
}

.panel h1,
.panel h2 {
  margin: 0 0 16px;
  font-weight: 600;
}

.panel p {
  margin: 0 0 16px;
  color: #3a4146;
}

.image-card {
  background: #d8ddd7;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(31, 36, 40, 0.12);
}

.image-tall {
  height: 420px;
}

.image-mid {
  height: 360px;
}

.image-short {
  height: 340px;
}

.image-sand {
  background: #e2dfd8;
}

.image-mist {
  background: #d7d8dc;
}

.image-warm {
  background: #d9d3cc;
}

.image-cool {
  background: #d5dde0;
}

.image-card img {
  width: 100%;
  height: 100%;
}

.stat-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.stat {
  background: #1f2428;
  color: #f7f6f2;
  padding: 16px 20px;
  border-radius: 16px;
  flex: 1 1 160px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1f2428;
  color: #f7f6f2;
  border: none;
  transition: transform 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.cta-row {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn:hover,
.btn:focus {
  background: #343c42;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #1f2428;
  border: 1px solid #1f2428;
}

.btn-outline:hover,
.btn-outline:focus {
  background: #1f2428;
  color: #f7f6f2;
}

.inline-link {
  text-decoration: underline;
  transition: color 0.2s ease;
}

.inline-link:hover,
.inline-link:focus {
  color: #6b4d2a;
}

.price-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.price-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  flex: 1 1 220px;
  box-shadow: 0 18px 36px rgba(31, 36, 40, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  background: #e3e1da;
}

.price {
  font-size: 1.4rem;
  font-weight: 600;
}

.form-card {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(31, 36, 40, 0.1);
}

.form-card label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-card select,
.form-card input,
.form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9cfd4;
  margin-bottom: 16px;
  font-size: 1rem;
}

.list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list li {
  background: #eef1ee;
  padding: 14px 18px;
  border-radius: 16px;
}

.footer {
  margin-top: auto;
  padding: 40px 7vw;
  background: #1f2428;
  color: #f7f6f2;
}

.footer a {
  color: #f7f6f2;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(31, 36, 40, 0.12);
  display: none;
  gap: 12px;
  align-items: center;
  z-index: 20;
  max-width: 360px;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.note {
  font-size: 0.92rem;
  color: #5b646b;
}

@media (max-width: 900px) {
  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 24px;
    right: auto;
  }
}
