@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap");

:root {
  --ink: #1c1b1a;
  --muted: #5f5b57;
  --sand: #f3efe8;
  --linen: #faf8f4;
  --clay: #d6b27c;
  --sage: #4a6a64;
  --accent: #b3562b;
  --shadow: 0 24px 60px rgba(28, 27, 26, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--linen);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  padding: 32px 24px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-weight: 500;
}

.nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-bottom: 1px solid var(--accent);
  color: var(--accent);
}

.sidebar-cta {
  margin-top: auto;
  padding: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.sidebar-cta p {
  margin: 0 0 12px;
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: var(--sage);
}

.button.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 56px 8vw;
}

.section.alt {
  background: #fff;
}

.section.bg-image {
  background-image: linear-gradient(rgba(28, 27, 26, 0.55), rgba(28, 27, 26, 0.55)), url("https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.hero-title {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin: 0 0 16px;
  line-height: 1.1;
}

.tagline {
  color: var(--muted);
  font-size: 1.1rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
  height: 150px;
  object-fit: cover;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-left: 3px solid var(--clay);
  background: var(--sand);
  border-radius: 12px;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.metric {
  flex: 1 1 160px;
  background: var(--ink);
  color: #fff;
  padding: 18px;
  border-radius: 16px;
}

.form-box {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9d4cc;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer {
  padding: 32px 8vw;
  background: var(--ink);
  color: #f6f2eb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 5;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-header {
  padding: 48px 8vw 24px;
  background: var(--sand);
}

.simple-section {
  padding: 32px 8vw 48px;
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .sidebar-cta {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 48px 6vw;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    justify-content: center;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
  }
}
