* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f2933;
  background: #f7f6f2;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1f2933;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  background: #101820;
  color: #f6f1e7;
  padding: 14px 24px;
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.ad-label {
  font-size: 12px;
  background: #f6d860;
  color: #101820;
  padding: 4px 10px;
  border-radius: 999px;
}

.nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  background: #f6f1e7;
  color: #101820;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 48px 24px 32px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 340px;
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(16, 24, 32, 0.08);
  position: relative;
  top: 12px;
}

.hero-media {
  flex: 1 1 340px;
  background: #d9e2ec;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  min-height: 320px;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.section {
  padding: 40px 24px;
}

.section-wide {
  padding: 60px 24px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: stretch;
}

.panel {
  flex: 1 1 280px;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(16, 24, 32, 0.06);
}

.panel-accent {
  background: #101820;
  color: #f6f1e7;
}

.panel-accent a {
  color: #f6d860;
}

.offset-card {
  background: #fef3c7;
  padding: 24px;
  border-radius: 20px;
  position: relative;
  top: -20px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(16, 24, 32, 0.08);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
}

.badge {
  display: inline-block;
  background: #e5e7eb;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 10px;
}

.cta-button {
  border: none;
  background: #1f2933;
  color: #f6f1e7;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}

.cta-ghost {
  background: transparent;
  border: 1px solid #1f2933;
  color: #1f2933;
}

.inline-cta {
  font-weight: 700;
  text-decoration: underline;
}

.form-block {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(16, 24, 32, 0.12);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px;
  border: 1px solid #cbd2d9;
  border-radius: 8px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #101820;
  color: #f6f1e7;
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 50;
}

.sticky-cta button {
  background: #f6d860;
  color: #101820;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.image-frame {
  background: #d9e2ec;
  border-radius: 16px;
  overflow: hidden;
}

.bg-slate {
  background: #cbd2d9;
}

.bg-soft {
  background: #cfe0e8;
}

.bg-ash {
  background: #e6e6e6;
}

.bg-warm {
  background: #f2e8d5;
}

.bg-image-ambient {
  background-color: #2f3e46;
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f6f1e7;
}

.footer {
  background: #101820;
  color: #f6f1e7;
  padding: 32px 24px;
  margin-top: auto;
}

.footer a {
  color: #f6d860;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  color: #1f2933;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(16, 24, 32, 0.18);
  max-width: 320px;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.hidden {
  display: none;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #627d98;
  font-weight: 700;
}

.price {
  font-size: 20px;
  font-weight: 700;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.muted {
  color: #52606d;
}
