@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700&family=Playfair+Display:wght@500;600&display=swap");

:root {
  --ink: #13181b;
  --slate: #4a5a60;
  --mist: #f3f5f2;
  --sage: #6d8b7a;
  --moss: #2d5246;
  --sun: #f2c94c;
  --fog: #e3e8e4;
  --accent: #4b6b5a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  padding: 32px 24px;
  background: var(--mist);
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid var(--fog);
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  font-size: 15px;
  color: var(--slate);
  padding: 6px 8px;
  border-radius: 6px;
}

.nav a:hover {
  background: var(--fog);
  color: var(--ink);
}

.sidebar-cta {
  margin-top: auto;
  background: var(--moss);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
}

.content {
  flex: 1;
  padding: 40px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.section.stack {
  flex-direction: column;
}

.section.split > * {
  flex: 1 1 280px;
}

.section.offset {
  align-items: flex-start;
}

.section.offset .panel {
  background: var(--mist);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(28, 44, 38, 0.08);
}

.section.hero {
  position: relative;
  background: linear-gradient(120deg, #f7f4ef, #dfe7e0);
  border-radius: 24px;
  padding: 40px;
  overflow: hidden;
}

.section.hero::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 10%;
  width: 240px;
  height: 240px;
  background: rgba(109, 139, 122, 0.2);
  border-radius: 50%;
}

.hero-text {
  max-width: 520px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  margin: 12px 0;
}

p {
  color: var(--slate);
  line-height: 1.6;
  margin: 8px 0;
}

.cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--moss);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.secondary {
  background: transparent;
  color: var(--moss);
  border: 1px solid var(--moss);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(26, 46, 39, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
  height: 150px;
  object-fit: cover;
}

.highlight {
  background: var(--fog);
  padding: 24px;
  border-radius: 18px;
}

.quote {
  font-style: italic;
  color: var(--moss);
}

.metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.metric {
  flex: 1 1 160px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--fog);
}

.metric span {
  font-size: 28px;
  font-weight: 700;
  color: var(--moss);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-index {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sun);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(19, 24, 27, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--fog);
  font-family: "Manrope", sans-serif;
}

.form-message {
  font-size: 14px;
  color: var(--moss);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--moss);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(19, 24, 27, 0.2);
  z-index: 10;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid var(--fog);
  padding-top: 28px;
  color: var(--slate);
}

.footer a {
  color: var(--slate);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--fog);
  border-radius: 16px;
  padding: 18px;
  max-width: 320px;
  box-shadow: 0 16px 30px rgba(19, 24, 27, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

@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 var(--fog);
    gap: 16px;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .content {
    padding: 32px 6vw 90px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 680px) {
  .sidebar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
  }

  .section.hero {
    padding: 28px;
  }
}
