*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background: #f5f1ee;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 28px 6vw 10px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}

.nav a {
  font-size: 0.95rem;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-color: #1a1a1a;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hero-visual {
  background: #0d0d0d;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  background: #1a1a1a;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.cta.secondary {
  background: #e9ded8;
  color: #1a1a1a;
}

.cta.outline {
  background: transparent;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
}

.section {
  padding: 48px 6vw;
  position: relative;
}

.section.light {
  background: #ffffff;
}

.section.dark {
  background: #1a1a1a;
  color: #ffffff;
}

.section.soft {
  background: #efe7e2;
}

.section.offset-left {
  margin-left: 4vw;
  border-radius: 28px 0 0 28px;
}

.section.offset-right {
  margin-right: 4vw;
  border-radius: 0 28px 28px 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.dark {
  background: #141414;
  color: #ffffff;
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 0.85rem;
}

.inline-link {
  font-weight: 600;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 16px;
  background: #f8f4f2;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c4b9b2;
  font-size: 1rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw;
  background: #0f0f0f;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 20;
  background: #f5c09f;
  color: #1a1a1a;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.image-frame {
  border-radius: 16px;
  overflow: hidden;
  background: #f0e6e0;
  padding: 12px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #1a1a1a;
  font-size: 0.85rem;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wide {
  max-width: 1100px;
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
  margin: 0 auto;
}

@media (min-width: 860px) {
  .header {
    padding: 40px 8vw 10px;
  }

  .hero-row {
    flex-direction: row;
  }

  .hero-content {
    flex: 1.2;
  }

  .hero-visual {
    flex: 1;
  }

  .split-row {
    flex-direction: row;
    align-items: center;
  }

  .split-row.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 220px;
  }

  .pricing-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pricing-item {
    flex: 1 1 240px;
  }

  .form-row {
    flex-direction: row;
  }

  .form-row .form-field {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-card {
    flex: 1;
  }
}
