* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2328;
  background: #f7f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  background: #fdfbf8;
  border-bottom: 1px solid #e8e1d8;
}

.header-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 6%;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.brand-name {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: #6a5b4c;
  background: #f1e6d8;
  padding: 6px 10px;
  border-radius: 16px;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-row a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-row a:hover,
.nav-row a:focus {
  border-bottom: 1px solid #1f2328;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 40px 6% 10px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-text {
  max-width: 560px;
}

.hero-title {
  font-size: 2.6rem;
  margin: 0 0 12px;
  line-height: 1.1;
}

.hero-subtitle {
  margin: 0 0 20px;
  color: #3e454b;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: 1px solid #1f2328;
  padding: 10px 18px;
  background: #1f2328;
  color: #fff;
  font-weight: 600;
  border-radius: 24px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  background: #353b42;
}

.btn.secondary {
  background: transparent;
  color: #1f2328;
}

.hero-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background-color: #d9cbb8;
  min-height: 280px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.section {
  padding: 52px 6%;
  position: relative;
}

.section.alt {
  background: #efe7dc;
}

.section.dark {
  background: #2b2622;
  color: #f6f1ea;
}

.section .section-inner {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .copy {
  flex: 1;
}

.split .media {
  flex: 1;
  border-radius: 22px;
  overflow: hidden;
  background-color: #d8c5af;
  min-height: 220px;
}

.split .media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.storyline strong {
  font-size: 1.1rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #eadfcd;
}

.card img {
  width: 100%;
  height: 190px;
  border-radius: 16px;
  background-color: #d2c2ae;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 18px;
  background: #fdfbf8;
  border-left: 3px solid #a07e5f;
}

.highlight {
  font-size: 1.2rem;
  font-weight: 600;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e4d6c4;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
}

.form-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid #eadfcd;
}

.form-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-options label {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid #e4d6c4;
  background: #fdfbf8;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-fields input,
.form-fields select {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d7c8b4;
  font-size: 1rem;
}

.form-message {
  min-height: 24px;
  color: #9b4d28;
  font-weight: 600;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #1f2328;
  color: #fff;
  padding: 12px 18px;
  border-radius: 24px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-cta a {
  color: #fff;
}

.site-footer {
  background: #1f2328;
  color: #f5f1ea;
  padding: 30px 6% 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: #d6cbbf;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fdfbf8;
  border: 1px solid #eadfcd;
  padding: 14px;
  border-radius: 16px;
  max-width: 320px;
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  flex: 1;
}

.legal-wrap {
  padding: 36px 6%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal-wrap h1 {
  margin-bottom: 4px;
}

.contact-block {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #eadfcd;
}

@media (min-width: 900px) {
  .hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards,
  .pricing-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .price-item {
    flex: 1;
    min-width: 240px;
  }

  .form-area {
    flex-direction: row;
  }

  .form-step,
  .form-fields {
    flex: 1;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav-row {
    justify-content: flex-end;
  }
}
