* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Arial", "Helvetica", sans-serif;
  color: #1a1a1a;
  background: #faf9f7;
  line-height: 1.6;
}

a {
  color: #1a1a1a;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 6vw 10px;
  background: #f1efe9;
}

.topbar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #5a4f44;
  background: #efe6d8;
  padding: 6px 10px;
  border-radius: 999px;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 6px;
  background: #1a1a1a;
  color: #fff;
  font-size: 14px;
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-tight {
  padding: 32px 6vw;
}

.section-contrast {
  background: #ece7df;
}

.section-dark {
  background: #191919;
  color: #f7f3ec;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split > * {
  flex: 1 1 320px;
}

.hero-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-sub {
  font-size: 18px;
  color: #4c443c;
}

.img-frame {
  background: #d9d2c6;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  width: 100%;
  height: 100%;
}

.img-tall {
  height: 360px;
}

.img-wide {
  height: 420px;
}

.img-card {
  height: 180px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.card-dark {
  background: #232323;
  color: #f4efe7;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: #efe6d8;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cta-secondary {
  background: transparent;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
}

.form-box {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #c9c1b7;
  font-size: 14px;
  font-family: inherit;
}

button {
  cursor: pointer;
  border: none;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 16px;
  border-left: 3px solid #b59a6b;
}

.footer {
  padding: 40px 6vw;
  background: #f1efe9;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  color: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  max-width: 520px;
  width: calc(100% - 24px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-button {
  padding: 8px 14px;
  border-radius: 999px;
  background: #f2e9d7;
  color: #1a1a1a;
  font-weight: 600;
}

.cookie-button.secondary {
  background: transparent;
  border: 1px solid #f2e9d7;
  color: #f2e9d7;
}

.hidden {
  display: none;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1a1a1a;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 9;
}

.note {
  font-size: 13px;
  color: #5a4f44;
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-link {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .hero-title {
    font-size: 32px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
