* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f4ef;
  --ink: #1c2b27;
  --accent: #2f7b5d;
  --accent-dark: #1f5d45;
  --sand: #e6ddcf;
  --mist: #edf1ee;
  --sun: #d7b78a;
  --rose: #e8d6d8;
  --shadow: rgba(18, 28, 24, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 250px;
  background: #fff;
  padding: 32px 24px;
  border-right: 1px solid #e5e1d7;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  font-size: 15px;
  opacity: 0.8;
}

.nav a:hover {
  opacity: 1;
}

.sidebar .cta-link {
  padding: 12px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px 48px 80px;
}

.section {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.section.column {
  flex-direction: column;
}

.section.split {
  justify-content: space-between;
}

.section.hero {
  background: linear-gradient(120deg, rgba(47, 123, 93, 0.15), rgba(215, 183, 138, 0.3)),
    url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  border-radius: 24px;
  padding: 56px;
  color: #0f1f18;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
}

.hero-content {
  position: relative;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.1;
}

.button {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.panel {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 30px var(--shadow);
}

.panel.soft {
  background: var(--mist);
}

.panel.sand {
  background: var(--sand);
}

.panel.rose {
  background: var(--rose);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 20px var(--shadow);
}

.card img {
  border-radius: 12px;
  height: 140px;
  object-fit: cover;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-dark);
}

.offset {
  margin-top: -24px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 6px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input,
select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d8d2c6;
  background: #fff;
  font-size: 15px;
}

.footer {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  opacity: 0.7;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent-dark);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #ded7ca;
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #efe8dc;
  color: var(--accent-dark);
}

.image-stack {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-stack img {
  width: 220px;
  border-radius: 16px;
  box-shadow: 0 12px 18px var(--shadow);
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-right: none;
    border-bottom: 1px solid #e5e1d7;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .main {
    padding: 24px;
  }

  .section {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 36px 24px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    text-align: center;
  }
}
