* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1d1a;
  background: #f7f4ef;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw 10px;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6a5f55;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding: 20px 6vw 60px;
  align-items: center;
}

.hero-copy {
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 520px;
}

.hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}

.hero-copy p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.6;
}

.hero-card {
  flex: 1 1 360px;
  position: relative;
  padding: 18px;
  background: #efe8dd;
  border-radius: 20px;
}

.hero-card img {
  border-radius: 16px;
  width: 100%;
  height: 360px;
  background: #d5cbbd;
}

.hero-card .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #1f1d1a;
  color: #f7f4ef;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  border: none;
  background: #1f1d1a;
  color: #f7f4ef;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
}

.btn-outline {
  background: transparent;
  border: 1px solid #1f1d1a;
  color: #1f1d1a;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.section {
  padding: 60px 6vw;
  position: relative;
}

.section.alt {
  background: #efe8dd;
}

.section h2 {
  margin-top: 0;
  font-size: clamp(24px, 3vw, 36px);
}

.offset-block {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.offset-block.reverse {
  flex-direction: row-reverse;
}

.offset-text {
  flex: 1 1 300px;
  min-width: 260px;
}

.offset-image {
  flex: 1 1 320px;
  min-width: 280px;
  padding: 12px;
  background: #d5cbbd;
  border-radius: 18px;
  transform: translateY(-18px);
}

.offset-image img {
  width: 100%;
  height: 280px;
  border-radius: 12px;
  background: #d5cbbd;
}

.trust-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-card {
  flex: 1 1 200px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  min-width: 180px;
}

.trust-card img {
  height: 140px;
  border-radius: 12px;
  margin-bottom: 12px;
  background: #d5cbbd;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
  line-height: 1.6;
}

.services-reveal {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
}

.service-row img {
  width: 180px;
  height: 120px;
  border-radius: 14px;
  background: #d5cbbd;
}

.service-info {
  flex: 1 1 260px;
}

.price {
  font-weight: 700;
  font-size: 18px;
  color: #5a3b24;
}

.form-wrapper {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  max-width: 520px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c7bdb0;
  font-size: 14px;
  background: #fdfbf8;
}

.footer {
  padding: 40px 6vw;
  background: #1f1d1a;
  color: #f7f4ef;
}

.footer-cols {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer small {
  display: block;
  margin-top: 18px;
  color: #c8c1b7;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #5a3b24;
  color: #f7f4ef;
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 16px 6vw;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #c7bdb0;
  z-index: 20;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  padding: 40px 6vw 10px;
}

.page-hero h1 {
  margin: 0 0 12px;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  line-height: 1.7;
  max-width: 880px;
}

.contact-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  max-width: 520px;
}

.no-phone {
  font-size: 13px;
  color: #6a5f55;
}

.thanks-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  max-width: 560px;
}
