* {
  box-sizing: border-box;
}

:root {
  color: #1d1d1f;
  background-color: #f7f5f2;
  font-family: "Inter", "Segoe UI", sans-serif;
}

body {
  margin: 0;
  color: #1d1d1f;
  background: #f7f5f2;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 20px 0;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 10px 18px;
  border: 1px solid #1d1d1f;
  border-radius: 999px;
}

.section {
  padding: 56px 0;
}

.section.light {
  background: #ffffff;
}

.section.accent {
  background: #f1ebe4;
}

.section.dark {
  background: #1d1d1f;
  color: #ffffff;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: column;
}

.split-text h1 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin: 0 0 16px;
}

.split-text h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
}

.split-text p {
  margin: 0 0 16px;
  line-height: 1.6;
}

.tag {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: #e1d8cf;
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.hero-cta {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1d1d1f;
  background: #1d1d1f;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.95rem;
}

.button.secondary {
  background: transparent;
  color: inherit;
}

.inline-link {
  border-bottom: 1px solid currentColor;
}

.media-frame {
  position: relative;
  padding: 18px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(18, 18, 20, 0.08);
}

.layered {
  position: relative;
}

.layered::before {
  content: "";
  position: absolute;
  inset: -20px 30% 60% -20px;
  background: rgba(230, 220, 208, 0.8);
  border-radius: 24px;
  z-index: 0;
}

.layered > * {
  position: relative;
  z-index: 1;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(18, 18, 20, 0.08);
}

.card h3 {
  margin-top: 0;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial {
  border-left: 3px solid #ffffff;
  padding-left: 16px;
  margin: 18px 0;
  font-style: italic;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
}

.form-box {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(18, 18, 20, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
}

input,
select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfc4b9;
  font-size: 0.95rem;
  width: 100%;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 18px;
  background: #c0553f;
  color: #ffffff;
  border-radius: 999px;
  box-shadow: 0 12px 20px rgba(18, 18, 20, 0.15);
  z-index: 10;
}

.site-footer {
  padding: 40px 0;
  background: #151515;
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 14px 30px rgba(18, 18, 20, 0.12);
  z-index: 12;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.notice {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 900px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row,
  .steps {
    flex-direction: row;
  }

  .card,
  .step {
    flex: 1;
  }
}
