*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1b1b1b;
  background: #f6f3ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 32px 8vw 16px;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #7a6f63;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: #1b1b1b;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 8vw 40px;
}

.hero-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fefcf9;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hero-visual {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-visual img {
  border-radius: 16px;
}

.hero-title {
  font-size: 38px;
  line-height: 1.2;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1b1b1b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
}

.section {
  display: flex;
  flex-direction: column;
  padding: 36px 8vw;
  gap: 24px;
}

.section.light {
  background: #fffaf3;
}

.section.dark {
  background: #1b1b1b;
  color: #f6f3ef;
}

.offset-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-row .text-box,
.offset-row .media-box {
  flex: 1;
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.offset-row .media-box {
  background: #f3eee7;
}

.floating-note {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #ffe7c4;
  padding: 18px;
  border-radius: 12px;
  align-self: flex-start;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: #1b1b1b;
  color: #fff;
  font-size: 12px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: 14px;
  background: #fefcf9;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.service-item span {
  font-weight: 600;
}

.pricing-note {
  font-size: 13px;
  color: #6c5f54;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
}

.testimonial {
  background: #f3eee7;
  padding: 18px;
  border-radius: 12px;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ghost-link {
  font-size: 14px;
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
}

.form-wrap label {
  font-size: 14px;
  font-weight: 600;
}

.form-wrap input,
.form-wrap select {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d9d2c8;
  font-size: 14px;
}

.form-wrap button {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: #1b1b1b;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #6e5139;
  color: #fff;
  font-size: 13px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.footer {
  padding: 32px 8vw;
  background: #1b1b1b;
  color: #f6f3ef;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 13px;
}

.cookie-actions .accept {
  background: #1b1b1b;
  color: #fff;
}

.cookie-actions .reject {
  background: #e6ded2;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-image {
  max-width: 180px;
  border-radius: 14px;
}

.page-title {
  font-size: 32px;
  margin: 0;
}

.simple-section {
  padding: 40px 8vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-block {
    flex: 1.4;
  }

  .hero-visual {
    flex-direction: column;
    align-items: flex-start;
  }

  .offset-row {
    flex-direction: row;
    align-items: center;
  }

  .offset-row.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
  }

  .split-list {
    flex-direction: row;
  }

  .split-list div {
    flex: 1;
  }
}
