* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1d1d1f;
  background: #f6f2ee;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav-split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  gap: 12px;
  background: #f6f2ee;
}

.brand {
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  background: #1d1d1f;
  color: #f6f2ee;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 40px 6vw 20px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  padding-right: 20px;
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 56px);
  margin: 0 0 16px;
  line-height: 1.05;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 20px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1d1d1f;
  color: #f6f2ee;
  font-size: 14px;
  border: none;
}

.btn-outline {
  background: transparent;
  border: 1px solid #1d1d1f;
  color: #1d1d1f;
}

.sticky-cta {
  position: sticky;
  top: 16px;
  align-self: flex-start;
  background: #cf4b2f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
}

.media {
  flex: 1 1 360px;
  min-height: 280px;
  background-color: #e0d5cc;
  border-radius: 24px;
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px 6vw;
}

.section.asym {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
}

.section.asym.reverse {
  flex-direction: row-reverse;
}

.section-block {
  flex: 1 1 320px;
}

.section-block h2 {
  margin-top: 0;
  font-size: clamp(24px, 3vw, 40px);
}

.section-block p {
  line-height: 1.7;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(29, 29, 31, 0.08);
}

.card .card-image {
  width: 100%;
  height: 150px;
  border-radius: 12px;
  background-color: #e8dfd5;
  overflow: hidden;
}

.card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inline-note {
  font-size: 14px;
  color: #5a4f45;
}

.story-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
}

.story-strip .mini {
  flex: 1 1 200px;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-radius: 14px;
  background: #f2e9e0;
  gap: 10px;
}

.price-tag {
  font-weight: 600;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
}

.service-select {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid #d9cfc6;
  border-radius: 12px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbbfb4;
  font-size: 14px;
}

.form-message {
  font-size: 13px;
  color: #bf2c2c;
}

.testimonial {
  background: #1d1d1f;
  color: #f6f2ee;
  padding: 18px;
  border-radius: 16px;
  flex: 1 1 220px;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 50px;
  background: #1d1d1f;
  color: #f6f2ee;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
}

.footer-note {
  font-size: 12px;
  line-height: 1.6;
  color: #d8cfc6;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  max-width: 340px;
  background: #ffffff;
  color: #1d1d1f;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(29, 29, 31, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 6vw 60px;
}

.legal-content h1 {
  font-size: clamp(28px, 3vw, 40px);
}

.legal-content p {
  line-height: 1.7;
}

@media (max-width: 860px) {
  .hero {
    padding-top: 24px;
  }

  .sticky-cta {
    position: static;
    align-self: flex-start;
  }
}
