/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1b1b1f;
  background: #f7f5f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: #f7f5f1;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 6vw 48px;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(34, 28, 15, 0.12);
}

.hero-title {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin: 0;
}

.hero-subtitle {
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-primary {
  background: #1b1b1f;
  color: #f7f5f1;
}

.btn-outline {
  border-color: #1b1b1f;
  background: transparent;
}

.inline-link {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 5;
  background: #ffcf4f;
  color: #1b1b1f;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-light {
  background: #ffffff;
}

.section-dark {
  background: #1b1b1f;
  color: #f7f5f1;
}

.section-accent {
  background: #efe6da;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 12px 25px rgba(34, 28, 15, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-dark {
  background: #23232a;
  color: #f7f5f1;
}

.story-strip {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 3px solid #1b1b1f;
  padding-left: 16px;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e4dccf;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 18px 35px rgba(23, 18, 12, 0.15);
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6cbbd;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  padding: 40px 6vw;
  background: #1b1b1f;
  color: #f7f5f1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  display: none;
  gap: 12px;
  flex-direction: column;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.media-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.media-row img {
  border-radius: 18px;
}

.shadow-banner {
  background: url("assets/texture.svg");
  background-size: cover;
  color: #1b1b1f;
}

.section-slim {
  padding: 40px 6vw;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.split-note {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  background: #ffffff;
  border-radius: 20px;
}

.page-header {
  padding: 40px 6vw 20px;
  font-size: 2rem;
}

.legal {
  padding: 20px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1.1;
  }

  .hero-visual {
    flex: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .two-col {
    flex-direction: row;
    align-items: stretch;
  }

  .two-col > div {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-grid .card {
    flex: 1 1 calc(50% - 18px);
  }

  .media-row {
    flex-direction: row;
    align-items: center;
  }

  .pricing-table {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-row {
    flex: 1 1 calc(50% - 16px);
  }
}
