* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2a2a;
  background-color: #f8f6f2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  background: #132621;
  color: #f4f2ed;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.95rem;
}

.nav a {
  opacity: 0.86;
}

.nav a:hover {
  opacity: 1;
}

.sidebar .cta-link {
  margin-top: auto;
  padding: 12px 16px;
  background: #f2b05e;
  color: #132621;
  font-weight: 600;
  text-align: center;
  border-radius: 999px;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 64px 8vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section.alt {
  background: #ffffff;
}

.section.dark {
  background: #10221e;
  color: #f4f2ed;
}

.hero {
  background: url("https://images.unsplash.com/photo-1504208434309-cb69f4fe52b0?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  color: #ffffff;
  min-height: 420px;
  justify-content: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 28, 24, 0.62);
}

.hero-content {
  position: relative;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0;
}

.hero p {
  font-size: 1.1rem;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #f2b05e;
  color: #132621;
  font-weight: 600;
  width: fit-content;
}

.btn.outline {
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
}

.split {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.split > * {
  flex: 1 1 260px;
}

.callout {
  padding: 26px;
  background: #f6e6cf;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(21, 30, 28, 0.08);
}

.card img {
  border-radius: 12px;
  height: 160px;
  width: 100%;
  object-fit: cover;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f2b05e;
  margin-top: 6px;
}

.quote {
  font-style: italic;
  border-left: 3px solid #f2b05e;
  padding-left: 14px;
}

.form-wrapper {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 12px 28px rgba(10, 20, 18, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8c5bf;
  font-size: 1rem;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 22px;
  background: #132621;
  color: #f4f2ed;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 25;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer {
  padding: 40px 8vw;
  background: #0f1d19;
  color: #f4f2ed;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.two-column {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f6e6cf;
  font-size: 0.85rem;
}

.section-banner {
  background: url("https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?auto=format&fit=crop&w=1400&q=80")
    center/cover no-repeat;
  color: #ffffff;
  border-radius: 22px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-hero {
  padding: 80px 8vw 40px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-grid .item {
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(15, 24, 21, 0.08);
}

.contact-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar .cta-link {
    margin-top: 0;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
