*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1e1e1e;
  background: #f7f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  background: #f7f4f0;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #1e1e1e;
}

.hero-note {
  font-size: 0.95rem;
  color: #3a3a3a;
}

.section {
  padding: 70px 6vw;
  position: relative;
  overflow: hidden;
}

.section.alt {
  background: #efe7dc;
}

.section.dark {
  background: #191817;
  color: #f7f4f0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content {
  flex: 1;
}

.split-media {
  flex: 1;
  position: relative;
}

.overlay-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #f7f4f0;
  color: #191817;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1e1e1e;
  background: #1e1e1e;
  color: #f7f4f0;
  font-weight: 600;
  gap: 10px;
}

.cta-outline {
  background: transparent;
  color: inherit;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.inline-cta {
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}

.highlight {
  background: #f0c868;
  padding: 2px 6px;
  border-radius: 6px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list span {
  font-weight: 700;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.card.dark {
  background: #2b2a27;
  color: #f7f4f0;
  box-shadow: none;
}

.price-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #e6dccf;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-card strong {
  font-size: 1.2rem;
}

.price-card .price {
  font-weight: 700;
  color: #7a4b1e;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.step-number {
  font-weight: 700;
  font-size: 1.1rem;
  color: #7a4b1e;
}

.form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d7c7b5;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.footer {
  margin-top: auto;
  padding: 36px 6vw;
  background: #191817;
  color: #f7f4f0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #7a4b1e;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #1e1e1e;
  background: #1e1e1e;
  color: #fff;
  font-weight: 600;
}

.cookie-actions button.secondary {
  background: transparent;
  color: #1e1e1e;
}

.notice {
  font-size: 0.9rem;
  color: #555;
}

.split-note {
  font-size: 0.92rem;
  color: #4b4b4b;
}

.page-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0 0 16px;
}

.subtitle {
  font-size: 1.1rem;
  margin: 0;
}

.section-tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: #7a4b1e;
  font-weight: 700;
}

.meta-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.meta-item {
  padding: 12px 14px;
  border-radius: 12px;
  background: #f7f4f0;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .meta-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .meta-item {
    flex: 1;
    min-width: 160px;
  }
}
