* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1d1d1f;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 24px 6vw;
  background: #efe9df;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #5c5650;
  max-width: 320px;
}

.section {
  padding: 64px 6vw;
}

.section.alt {
  background: #ffffff;
}

.section-background {
  position: relative;
  background: #e8e2d8;
  overflow: hidden;
}

.section-background .bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.section-background .bg-content {
  position: relative;
  z-index: 1;
}

.split {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.kicker {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #6b635c;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 12px 0 18px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1d1d1f;
  background: #1d1d1f;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: #1d1d1f;
}

.btn:hover {
  transform: translateY(-2px);
}

.link-inline {
  color: #245c75;
  text-decoration: underline;
}

.img-frame {
  background: #d8d2c9;
  border-radius: 18px;
  overflow: hidden;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #f0ece6;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  height: 160px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1d1d1f;
}

.quote {
  padding: 24px;
  border-left: 4px solid #245c75;
  background: #ffffff;
  border-radius: 12px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

select,
input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8c1b7;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: #efe9df;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #1d1d1f;
  color: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 20;
}

.sticky-cta button {
  border: none;
}

.sticky-cta .btn {
  padding: 8px 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions .btn {
  padding: 8px 14px;
  font-size: 0.85rem;
}

.two-column {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1 1 280px;
}

.note {
  font-size: 0.9rem;
  color: #5c5650;
}
