* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1d1b1a;
  background: #f8f4ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  background: #f8f4ef;
}

.brand {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.18rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: #1d1b1a;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 48px 6vw 64px;
  background: #f0e6db;
}

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-visual img {
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(28, 23, 18, 0.15);
}

.hero-visual::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 60%;
  left: 10%;
  bottom: -8%;
  background: #f7cda1;
  border-radius: 32px;
  z-index: -1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 2.4rem;
  margin: 0;
  line-height: 1.15;
}

.hero p {
  margin: 0;
  max-width: 560px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1d1b1a;
  color: #f8f4ef;
  font-weight: 600;
  border: 1px solid #1d1b1a;
  transition: all 0.2s ease;
}

.btn:hover {
  background: #f8f4ef;
  color: #1d1b1a;
}

.btn-outline {
  background: transparent;
  color: #1d1b1a;
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section-alt {
  background: #fff7ec;
}

.section-dark {
  background: #1d1b1a;
  color: #f8f4ef;
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-visual {
  position: relative;
}

.split-visual img {
  border-radius: 20px;
}

.float-card {
  position: absolute;
  bottom: -18px;
  right: -12px;
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(28, 23, 18, 0.15);
  font-weight: 600;
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.story-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(28, 23, 18, 0.08);
}

.story-card img {
  border-radius: 14px;
  height: 160px;
  object-fit: cover;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: #f7cda1;
  flex: 0 0 auto;
}

.testimonial {
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-board {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #efe0d1;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 1px solid #1d1b1a;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(28, 23, 18, 0.1);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7c6b4;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1d1b1a;
  color: #f8f4ef;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(28, 23, 18, 0.2);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 50;
}

.sticky-cta a {
  color: #f8f4ef;
  font-weight: 600;
}

.footer {
  padding: 40px 6vw;
  background: #efe1d3;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 30px rgba(28, 23, 18, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-header {
  padding: 48px 6vw 24px;
  background: #f0e6db;
}

.page-header h1 {
  margin: 0 0 8px;
}

.content-columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.image-ribbon {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-ribbon img {
  border-radius: 18px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  padding: 18px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #efe0d1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-wrap {
  padding: 40px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy-wrap h2 {
  margin-top: 20px;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    flex: 1.1;
  }

  .hero-visual {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .story-grid {
    flex-direction: row;
  }

  .story-card {
    flex: 1;
  }

  .price-board {
    flex-direction: row;
  }

  .price-card {
    flex: 1;
  }

  .content-columns {
    flex-direction: row;
  }

  .image-ribbon {
    flex: 0.8;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    flex: 1 1 260px;
  }
}
