* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2328;
  background-color: #f6f3ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  padding: 28px 0 16px;
  border-bottom: 1px solid #ded9d2;
  background-color: #f6f3ef;
}

.topbar-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a4e45;
  background-color: #efe7de;
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero {
  padding: 56px 0 40px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 26px;
  border-radius: 24px;
}

.panel-light {
  background-color: #ffffff;
}

.panel-dark {
  background-color: #1f2328;
  color: #f5f5f5;
}

.panel-cream {
  background-color: #f0e7dc;
}

.panel-slate {
  background-color: #e6eaef;
}

.panel-img {
  background-color: #c9c2ba;
  border-radius: 20px;
  overflow: hidden;
}

.panel-img img {
  width: 100%;
  height: 100%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.75rem;
  color: #6a5a4f;
}

.headline {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0;
}

.subhead {
  font-size: 1.05rem;
  color: #4d4f53;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background-color: #1f2328;
  color: #f6f3ef;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background-color: transparent;
  color: inherit;
  border: 1px solid #1f2328;
}

.btn.light {
  background-color: #f6f3ef;
  color: #1f2328;
}

.section {
  padding: 48px 0;
}

.bg-vision {
  background-image: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-vision .panel {
  background-color: rgba(31, 35, 40, 0.78);
}

.section-title {
  margin: 0 0 18px;
  font-size: 1.6rem;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  min-width: 220px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  background-color: #d7d0c8;
  border-radius: 14px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 180px;
}

.price {
  font-weight: 700;
  font-size: 1.05rem;
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.highlight-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-item {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 14px 18px;
}

.form-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 26px;
}

.form-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-field {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d4cfc8;
  font-size: 1rem;
  background-color: #fcfbf9;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.sticky-cta a {
  box-shadow: 0 12px 30px rgba(31, 35, 40, 0.18);
}

.footer {
  margin-top: auto;
  padding: 32px 0 40px;
  background-color: #1f2328;
  color: #f6f3ef;
}

.footer-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.footer a {
  color: inherit;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 30;
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 44px 0 20px;
}

.page-hero .panel {
  min-height: 240px;
}

.legal-text {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 22px;
}

.contact-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 20px;
}

@media (max-width: 880px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
