* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1f1f1f;
  background: #f8f6f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  background: rgba(248, 246, 242, 0.9);
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.site-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1f1f1f;
  color: #f8f6f2;
  font-weight: 600;
}

.cta-ghost {
  background: transparent;
  border: 1px solid #1f1f1f;
  color: #1f1f1f;
}

.cta-soft {
  background: #ffe7b3;
  color: #1f1f1f;
}

.story {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-section .narrow {
  max-width: 780px;
  margin: 0 auto;
}

.story-section .narrow p + p {
  margin-top: 14px;
}

.hero-story {
  min-height: 70vh;
  color: #f8f6f2;
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.hero-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.45);
}

.hero-content {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.inline-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.pull-quote {
  font-size: 1.4rem;
  font-weight: 600;
  padding: 20px 24px;
  border-left: 4px solid #1f1f1f;
  background: #fff;
}

.layered {
  background: #f0ebe3;
  position: relative;
  overflow: hidden;
}

.layered::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1523413651479-597eb2da0ad6?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  opacity: 0.15;
}

.layered .narrow {
  position: relative;
}

.split-note {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-note .note {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-item span {
  font-weight: 700;
  min-width: 70px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.card img {
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial {
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.section-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-block {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9c4bc;
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1f1f1f;
  color: #f8f6f2;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.site-footer {
  padding: 40px 6vw;
  background: #1f1f1f;
  color: #f8f6f2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #1f1f1f;
  color: #f8f6f2;
}

.cookie-reject {
  background: #e5e0d8;
  color: #1f1f1f;
}

.legal {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

@media (min-width: 900px) {
  .split-note {
    flex-direction: row;
  }

  .split-note .note {
    flex: 1;
  }

  .hero-actions {
    flex-direction: row;
  }

  .timeline-item {
    align-items: center;
  }
}
