* {
  box-sizing: border-box;
}

:root {
  color: #1f1a18;
  background: #f7f2ee;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
}

body {
  margin: 0;
  color: #1f1a18;
  background: #f7f2ee;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  gap: 16px;
  background: #fdfaf7;
  border-bottom: 1px solid #e5ded8;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.8rem;
  color: #6c5f57;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:focus,
.nav-links a:hover {
  border-bottom-color: #c79a82;
}

.hero {
  position: relative;
  padding: 90px 6vw 120px;
  background: #efe5de;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1666621630026-862eea07236c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}

.hero-inner {
  position: relative;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.1;
  margin: 0;
}

.hero p {
  font-size: 1.1rem;
  margin: 0;
  max-width: 560px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  background: #1f1a18;
  color: #f8f3ef;
  border: none;
  padding: 12px 20px;
  border-radius: 26px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  color: #1f1a18;
  border: 1px solid #1f1a18;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #fff7f1;
}

.section.dark {
  background: #1f1a18;
  color: #f7f2ee;
}

.section-title {
  font-size: 2rem;
  margin: 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.image-frame {
  background: #e3d7cf;
  border-radius: 20px;
  overflow: hidden;
  min-height: 220px;
  display: flex;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-list span {
  font-weight: 600;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fdfaf7;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e8dfd7;
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  object-fit: cover;
  background: #e3d7cf;
}

.card .price {
  font-weight: 700;
  color: #6b3f2b;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-left: 3px solid #c79a82;
  background: #f9f4f0;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.timeline-step span {
  font-weight: 700;
  color: #6b3f2b;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.pricing-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #eadfd7;
}

.pricing-card .price {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-block {
  background: #fffaf6;
  border: 1px solid #e6dcd4;
  border-radius: 20px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d8ccc3;
  font-size: 1rem;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  margin-left: auto;
  background: #1f1a18;
  color: #f7f2ee;
  padding: 14px 22px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.footer {
  margin-top: auto;
  padding: 50px 6vw;
  background: #181413;
  color: #e7dfd8;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #e7dfd8;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.footer small {
  color: #bfb3ab;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid #e6d9cf;
  border-radius: 18px;
  padding: 18px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.secondary-button {
  background: transparent;
  border: 1px solid #1f1a18;
  color: #1f1a18;
  padding: 10px 16px;
  border-radius: 22px;
  cursor: pointer;
}

.page-header {
  padding: 60px 6vw 30px;
  background: #f5eee9;
}

.page-header h1 {
  margin: 0 0 10px;
}

.notice {
  padding: 16px;
  border-radius: 12px;
  background: #f3e8e2;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-block {
  background: #fbf7f4;
  border: 1px solid #eadfd7;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f9efe7;
  padding: 6px 12px;
  border-radius: 18px;
  font-weight: 600;
}

.background-panel {
  background: #efe5de;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.background-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1775210727378-7b0e9a50b660?w=1400&q=80");
  opacity: 0.1;
  background-size: cover;
  background-position: center;
}

.background-panel > * {
  position: relative;
}

.quote-wall {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quote {
  padding: 18px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #eadfd7;
}

.service-highlight {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff6ef;
  border-radius: 18px;
  padding: 18px;
}

.service-highlight img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  object-fit: cover;
  background: #e3d7cf;
}

.mono {
  font-variant-numeric: tabular-nums;
}

@media (max-width: 800px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
