* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1f1f1f;
  background: #f7f5f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-bar {
  background: #ece3d7;
  color: #392f27;
  padding: 8px 0;
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ad-label {
  font-weight: 600;
}

.header {
  background: #faf7f2;
  padding: 18px 0 0;
  position: relative;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-toggle {
  border: 1px solid #31261f;
  background: #fff5e8;
  padding: 8px 12px;
  font-weight: 600;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: #e8d6c5;
}

.nav-links.is-collapsed {
  display: none;
}

.hero {
  padding: 50px 0 80px;
}

.hero-wrap {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.hero-text {
  flex: 1.1;
  background: #fff9f1;
  padding: 32px;
  border-radius: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.hero-text h1 {
  font-size: 40px;
  margin: 0 0 16px;
}

.hero-text p {
  margin: 0 0 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.primary-btn {
  background: #3f2c20;
  color: #fff;
}

.secondary-btn {
  background: #e6c9a3;
  color: #2f221b;
}

.ghost-btn {
  background: transparent;
  color: #2f221b;
  border: 1px dashed #2f221b;
}

.primary-btn:hover,
.secondary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-1px);
}

.hero-media {
  flex: 0.9;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: #d8c8b8;
  min-height: 360px;
}

.hero-media .floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.92);
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
}

.section {
  padding: 70px 0;
}

.offset-panel {
  display: flex;
  gap: 28px;
  align-items: center;
}

.offset-panel.reverse {
  flex-direction: row-reverse;
}

.panel-card {
  flex: 1;
  background: #fff;
  padding: 28px;
  border-radius: 26px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.panel-card h2 {
  margin-top: 0;
}

.panel-image {
  flex: 0.9;
  border-radius: 24px;
  overflow: hidden;
  background: #d9e2d4;
  min-height: 280px;
}

.note-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
  flex-wrap: wrap;
}

.note-card {
  flex: 1;
  min-width: 240px;
  background: #f3eee7;
  padding: 22px;
  border-radius: 18px;
}

.inline-media {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.inline-media .inline-image {
  flex: 1;
  min-width: 260px;
  border-radius: 18px;
  overflow: hidden;
  background: #c9d0d9;
  min-height: 200px;
}

.inline-media .inline-text {
  flex: 1.1;
  min-width: 260px;
}

.trust-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-card {
  flex: 1;
  min-width: 220px;
  background: #fef7ed;
  border-radius: 20px;
  padding: 20px;
}

.service-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1;
  min-width: 240px;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.service-card .service-img {
  height: 160px;
  background: #d6cbc3;
}

.service-card .service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.service-price {
  font-weight: 700;
  color: #3a271b;
}

.service-action {
  margin-top: auto;
}

.selection-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.selection-card {
  flex: 1;
  min-width: 210px;
  padding: 18px;
  border-radius: 18px;
  background: #fff5ec;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-wrap {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

form {
  flex: 1;
  min-width: 280px;
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

form label {
  display: block;
  font-weight: 600;
  margin: 12px 0 6px;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbb9a6;
  font-family: inherit;
}

.form-status {
  margin-top: 12px;
  font-size: 14px;
  color: #8b2e2e;
}

.business-model {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
}

.business-card {
  flex: 1;
  min-width: 240px;
  background: #f2efe9;
  padding: 20px;
  border-radius: 18px;
}

.footer {
  background: #2f221b;
  color: #f7f1e8;
  padding: 40px 0;
  margin-top: auto;
}

.footer .footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer small {
  display: block;
  margin-top: 8px;
}

.footer a {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff7ee;
  border: 1px solid #e0cbb5;
  padding: 16px;
  border-radius: 16px;
  width: min(320px, 90%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  z-index: 20;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 15;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.page-hero {
  padding: 40px 0 20px;
}

.page-hero h1 {
  margin-top: 0;
}

.legal-content {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1;
  min-width: 220px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.image-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.spaced-panel {
  margin-top: 24px;
}

.strip-image {
  flex: 1;
  min-width: 220px;
  border-radius: 18px;
  overflow: hidden;
  background: #ced7d0;
  height: 180px;
}

@media (max-width: 900px) {
  .hero-wrap,
  .offset-panel,
  .offset-panel.reverse {
    flex-direction: column;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
  }
}

@media (max-width: 700px) {
  .top-bar .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
