* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Roboto", "Arial", sans-serif;
  color: #1f2428;
  background: #f6f3ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  position: relative;
  background: #f6f3ef;
  z-index: 2;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.brand span {
  display: inline-block;
  font-size: 0.9rem;
  color: #51626f;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #ca7448;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw 60px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 20px;
  width: 320px;
  height: 320px;
  background: #f1caa8;
  border-radius: 48% 52% 38% 62%;
  opacity: 0.5;
  z-index: 0;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  margin: 0;
}

.hero p {
  font-size: 1.1rem;
  max-width: 580px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn-primary {
  background: #1f2428;
  color: #fff;
}

.btn-primary:hover {
  background: #ca7448;
}

.btn-outline {
  border-color: #1f2428;
  color: #1f2428;
}

.btn-outline:hover {
  border-color: #ca7448;
  color: #ca7448;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section.alt {
  background: #fff;
}

.section.warm {
  background: #fbe7d6;
}

.section.night {
  background: #1f2428;
  color: #fef7f0;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asym-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: rgba(255, 255, 255, 0.75);
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(31, 36, 40, 0.08);
}

.asym-block.offset {
  margin-left: 8vw;
}

.asym-block.dark {
  background: #1f2428;
  color: #fef7f0;
}

.split-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-card .media {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(31, 36, 40, 0.12);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ca7448;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list strong {
  display: block;
  font-size: 1.05rem;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #f0dbca;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ca7448;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(31, 36, 40, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7c8b9;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #1f2428;
  color: #fef7f0;
}

.footer a {
  color: #fef7f0;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 360px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(31, 36, 40, 0.18);
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.inline-cta {
  color: #ca7448;
  font-weight: 600;
  text-decoration: underline;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff1e5;
  font-size: 0.85rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ca7448;
  margin-top: 6px;
}

.highlight {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
}

.media-strip {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.media-strip img {
  border-radius: 16px;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 820px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .hero-copy,
  .hero-media {
    flex: 1;
  }

  .asym-row {
    flex-direction: row;
    align-items: center;
    gap: 36px;
  }

  .asym-row.reverse {
    flex-direction: row-reverse;
  }

  .split-card {
    flex-direction: row;
    align-items: center;
  }

  .pricing-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-card {
    flex: 1 1 220px;
  }

  .two-column {
    flex-direction: row;
  }

  .media-strip {
    flex-direction: row;
  }
}
