* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1f1b16;
  background: #f8f3ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px 120px;
}

header {
  padding: 28px 0 16px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.ad-label {
  font-size: 13px;
  background: #ebe0d8;
  padding: 8px 12px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-bottom-color: #1f1b16;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.hero-copy {
  flex: 1 1 360px;
  min-width: 300px;
}

.hero-copy h1 {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-copy p {
  font-size: 17px;
  margin-bottom: 18px;
}

.hero-image {
  flex: 1 1 380px;
  min-height: 360px;
  background: #dbc7b7;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.hero-image img {
  height: 100%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.button {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 15px;
  cursor: pointer;
  background: #1f1b16;
  color: #f8f3ef;
  transition: transform 0.2s ease;
}

.button.secondary {
  background: #efe2d9;
  color: #1f1b16;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.offset-section {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.offset-section.reverse {
  flex-direction: row-reverse;
}

.offset-text {
  flex: 1 1 320px;
  padding: 18px 0;
}

.offset-text h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.offset-text p {
  margin-bottom: 10px;
}

.offset-media {
  flex: 1 1 320px;
  min-height: 260px;
  background: #e6d2c5;
  border-radius: 20px;
  overflow: hidden;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 250px;
  background: #fff7f1;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 230px;
}

.card-image {
  background: #e3cfc3;
  border-radius: 14px;
  overflow: hidden;
}

.card h3 {
  font-size: 18px;
}

.accent-block {
  margin-top: 60px;
  background: #1f1b16;
  color: #f8f3ef;
  padding: 48px 32px;
  border-radius: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.accent-block h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.accent-block p {
  max-width: 520px;
}

.quote-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quote {
  background: #efe2d9;
  border-radius: 16px;
  padding: 16px;
  color: #1f1b16;
}

.pricing {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  background: #fff7f1;
  border-radius: 18px;
}

.pricing-item span {
  font-weight: 600;
}

.form-section {
  margin-top: 60px;
  background: #f0e1d8;
  border-radius: 28px;
  padding: 36px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9b8ac;
  background: #fffdfb;
  font-size: 15px;
}

.form-note {
  font-size: 14px;
  color: #4c3f36;
}

.inline-cta {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  border-bottom: 1px solid #1f1b16;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1f1b16;
  color: #f8f3ef;
  border-radius: 999px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.sticky-cta button {
  background: #efe2d9;
  color: #1f1b16;
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.footer {
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid #c9b8ac;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff7f1;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 30;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-page h1 {
  font-size: 34px;
  margin-bottom: 14px;
}

.legal-page h2 {
  font-size: 22px;
  margin: 24px 0 10px;
}

.legal-page p,
.legal-page li {
  margin-bottom: 10px;
}

.legal-page ul {
  padding-left: 18px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  background: #fff7f1;
  border-radius: 18px;
  padding: 20px;
  flex: 1 1 260px;
}

.background-slice {
  margin-top: 56px;
  background: linear-gradient(120deg, rgba(246, 235, 228, 0.7), rgba(230, 214, 204, 0.4));
  border-radius: 28px;
  padding: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.background-slice .slice-image {
  flex: 1 1 260px;
  min-height: 220px;
  border-radius: 18px;
  background: #e6d2c5;
  overflow: hidden;
}

.background-slice .slice-text {
  flex: 1 1 260px;
}

@media (max-width: 720px) {
  .hero-copy h1 {
    font-size: 34px;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    bottom: 16px;
    justify-content: space-between;
  }
}
