* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background-color: #f8f6f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: #5b2b11;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  background-color: #ffffff;
  border-bottom: 1px solid #ece3da;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 7%;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand h1 {
  font-size: 24px;
  letter-spacing: 0.5px;
}

.brand span {
  font-size: 13px;
  color: #6c6055;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.nav a,
.nav span {
  font-size: 14px;
  color: #3a2c22;
}

.nav .ad-label {
  font-weight: 600;
  color: #8a3a18;
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 60px 7%;
  gap: 32px;
  background: linear-gradient(120deg, rgba(255, 240, 226, 0.8), rgba(255, 255, 255, 0.8));
}

.hero-visual {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
}

.hero-visual .hero-image {
  flex: 1 1 320px;
  min-height: 280px;
  background-color: #e7d8c7;
  border-radius: 18px;
  overflow: hidden;
}

.hero-visual .hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.hero h2 {
  font-size: 38px;
  line-height: 1.2;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  background-color: #5b2b11;
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background-color: #f0e3d6;
  color: #5b2b11;
}

.btn:focus-visible {
  outline: 2px solid #a06b4d;
  outline-offset: 2px;
}

.section {
  padding: 60px 7%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.split {
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.section-title {
  font-size: 28px;
}

.section-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card-row .section-card {
  flex: 1 1 240px;
}

.image-frame {
  background-color: #e7d8c7;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-step span {
  font-weight: 700;
  color: #5b2b11;
}

.quote {
  font-style: italic;
  background-color: #fff1e7;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background-color: #ffffff;
  border-radius: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.pricing-item span {
  font-weight: 600;
}

.form-section {
  background-color: #f2ede7;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d1c2b3;
  font-size: 15px;
  font-family: inherit;
}

.note {
  font-size: 13px;
  color: #6c6055;
}

.footer {
  margin-top: auto;
  background-color: #1f1b18;
  color: #f7efe6;
  padding: 40px 7%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f7efe6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  background-color: #8a3a18;
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  max-width: 360px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
}

.plain-section {
  padding: 40px 7%;
}

.plain-section h2 {
  margin-bottom: 12px;
}

@media (max-width: 820px) {
  .hero h2 {
    font-size: 30px;
  }

  .section.split,
  .section.split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
