* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f1f1f;
  background: #f7f3ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: transparent;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.ad-disclosure {
  font-size: 0.8rem;
  background: #efe3d4;
  padding: 6px 10px;
  border-radius: 16px;
  white-space: nowrap;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
  padding: 30px 0 60px;
}

.hero-copy {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero-copy p {
  font-size: 1.05rem;
}

.hero-media {
  flex: 1 1 320px;
  position: relative;
  min-height: 360px;
}

.image-frame {
  background: #e6d8c8;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary {
  background: #1f1f1f;
  color: #f7f3ef;
  padding: 12px 18px;
  border-radius: 999px;
}

.btn-outline {
  border: 1px solid #1f1f1f;
  padding: 12px 18px;
  border-radius: 999px;
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: #f0e7dd;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split .media {
  flex: 1 1 280px;
  min-height: 260px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.card .price {
  font-weight: 700;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.offset-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  margin-top: -40px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
}

.testimonial {
  border-left: 4px solid #1f1f1f;
  padding-left: 16px;
}

.footer {
  margin-top: auto;
  background: #1f1f1f;
  color: #f7f3ef;
  padding: 40px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.footer p {
  font-size: 0.85rem;
  margin-top: 12px;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.form-panel {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font: inherit;
}

.form-panel button {
  align-self: flex-start;
}

.form-status {
  font-size: 0.85rem;
  color: #5a3f2c;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #1f1f1f;
  color: #f7f3ef;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.banner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  background: #efe3d4;
  padding: 16px;
  border-radius: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #d7cbbb;
  padding: 16px 0;
  display: none;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.legal-hero {
  padding: 40px 0;
}

.legal-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}
