* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1a1a1a;
  background: #f7f5f1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #efe9dd;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.side-tagline {
  font-size: 14px;
  color: #5a544a;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-weight: 600;
}

.side-nav a {
  padding: 6px 0;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 68px 8vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.split {
  flex-direction: row;
  gap: 40px;
  align-items: center;
}

.section.alt {
  background: #ffffff;
}

.section.dark {
  background: #1f2428;
  color: #f9f6f0;
}

.hero {
  background: linear-gradient(120deg, rgba(15, 18, 20, 0.45), rgba(15, 18, 20, 0.1)), url("https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: #fdfaf5;
  min-height: 72vh;
  justify-content: center;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 0;
  max-width: 620px;
}

.hero p {
  font-size: 18px;
  max-width: 540px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  background: #2c5d4f;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.button.light {
  background: #f4d35e;
  color: #2b2621;
}

.inline-link {
  color: #2c5d4f;
  font-weight: 600;
  border-bottom: 1px solid #2c5d4f;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(20, 20, 20, 0.08);
}

.card img {
  height: 140px;
  object-fit: cover;
}

.story-block {
  background: #f2ede4;
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.price-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #e3ded3;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price {
  font-size: 28px;
  font-weight: 700;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e7f0ea;
  color: #2c5d4f;
  font-weight: 600;
  font-size: 13px;
  width: fit-content;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c7c0b2;
  font-size: 15px;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1f2428;
  color: #f7f1e8;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  z-index: 20;
}

.footer {
  padding: 40px 8vw;
  background: #efe9dd;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #2c5d4f;
  color: #ffffff;
}

.cookie-reject {
  background: #e0d8c8;
  color: #29231c;
}

.page-hero {
  background: #ffffff;
  padding: 60px 8vw 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 40px 8vw 80px;
}

.info-panel {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .side-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .section.split {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 48px 6vw;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
