* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #151a1f;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: #f6f4f1;
  padding: 20px 0;
  border-bottom: 1px solid #e3ded8;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6a5f54;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #151a1f;
}

.section {
  padding: 72px 0;
  position: relative;
}

.section.alt {
  background: #fff;
}

.section.dark {
  background: #151a1f;
  color: #f7f5f2;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse {
  flex-direction: column;
}

.split .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.75rem;
  color: #6a5f54;
}

.title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0;
}

.subtitle {
  font-size: 1.1rem;
  color: #474038;
}

.dark .subtitle {
  color: #d7d0c8;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  background: #ff9f5a;
  color: #151a1f;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(22, 22, 22, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.dark {
  background: #1f242a;
  color: #f7f5f2;
}

.card small {
  color: #6a5f54;
}

.price-tag {
  font-size: 1.4rem;
  font-weight: 700;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #efe9e2;
  font-size: 0.8rem;
  align-self: flex-start;
}

.layered::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 8%;
  width: 220px;
  height: 220px;
  background: #ffe7d3;
  border-radius: 40px;
  z-index: 0;
}

.layered .content,
.layered .media {
  position: relative;
  z-index: 1;
}

.testimonial {
  border-left: 3px solid #ff9f5a;
  padding-left: 16px;
  font-style: italic;
}

.form-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9d1c8;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 40px 0 60px;
  background: #151a1f;
  color: #f7f5f2;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer a {
  color: inherit;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #151a1f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  display: none;
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 60px 0;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .cookie-banner.show {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
