* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background-color: #f7f5f2;
  line-height: 1.6;
}

a {
  color: #1c1c1c;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #2a5d6d;
  outline-offset: 2px;
}

header {
  padding: 20px 6vw 10px;
  background-color: #f7f5f2;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  background-color: #1c1c1c;
  color: #f7f5f2;
  padding: 4px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 6vw 60px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero-media {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero-media .image-frame {
  border-radius: 24px;
  overflow: hidden;
}

.image-frame {
  background-color: #d5cec5;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.bg-sand {
  background-color: #d1c6bb;
}

.bg-clay {
  background-color: #e0d6cd;
}

.bg-ivory {
  background-color: #e7e0d8;
}

.bg-warm {
  background-color: #d9d0c6;
}

.bg-stone {
  background-color: #ded4cb;
}

.bg-oat {
  background-color: #d8d1c8;
}

.bg-linen {
  background-color: #d8d0c6;
}

img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.section {
  padding: 60px 6vw;
}

.section.dark {
  background-color: #1c1c1c;
  color: #f7f5f2;
}

.section.accent {
  background-color: #ede7df;
}

.section-header {
  max-width: 720px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.split > div {
  flex: 1 1 280px;
}

.story-card {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background-color: #1c1c1c;
  color: #f7f5f2;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card .content {
  padding: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  background-color: #2a5d6d;
  color: #ffffff;
}

.btn.secondary {
  background-color: transparent;
  border: 1px solid #2a5d6d;
  color: #2a5d6d;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-item:last-child {
  border-bottom: none;
}

.form-card {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c6c0b9;
  font-family: inherit;
}

.footer {
  background-color: #111111;
  color: #f7f5f2;
  padding: 40px 6vw;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
}

.disclaimer {
  font-size: 0.9rem;
  max-width: 800px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  display: none;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  z-index: 10;
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner button {
  margin-right: 8px;
}

.minimal-hero {
  padding: 60px 6vw 30px;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-column > div {
  flex: 1 1 260px;
}

.contact-block {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 16px;
}
