* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f3ef;
  --ink: #1e1b16;
  --muted: #6b5f53;
  --accent: #7a5c3d;
  --accent-dark: #5c432a;
  --sand: #efe7dd;
  --olive: #a2a07d;
  --rose: #d9b7a5;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--white);
  padding: 32px 28px;
  width: 260px;
  position: relative;
  border-right: 1px solid #e4ddd3;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  font-size: 20px;
}

.brand span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 15px;
}

.nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: border 0.2s ease;
}

.nav a:hover {
  border-bottom: 1px solid var(--accent);
}

.side-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  background: var(--sand);
  border-radius: 16px;
}

.side-cta a {
  text-align: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
}

main {
  flex: 1;
  padding: 40px 48px 120px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  background: var(--white);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(30, 27, 22, 0.08);
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-copy h1 {
  font-size: 38px;
  margin: 0;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.section {
  display: flex;
  gap: 28px;
  padding: 28px;
  border-radius: 20px;
  background: var(--white);
}

.section.alt {
  background: var(--sand);
}

.section.column {
  flex-direction: column;
}

.section h2 {
  margin: 0 0 12px 0;
  font-size: 28px;
}

.section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.split {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.pill {
  background: var(--rose);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 210px;
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #e2d8cc;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card img {
  height: 140px;
  object-fit: cover;
}

.card h3 {
  margin: 0;
  font-size: 18px;
}

.card span {
  font-weight: 700;
  color: var(--accent-dark);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-step strong {
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--olive);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-left: 4px solid var(--accent);
  background: var(--white);
  border-radius: 12px;
}

.form-wrap {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 13px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9d0c6;
  font-family: inherit;
  font-size: 14px;
  background: var(--white);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent-dark);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 12px 30px rgba(30, 27, 22, 0.2);
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  background: var(--white);
  border-radius: 18px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 12px 24px rgba(30, 27, 22, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.simple-list li {
  margin-left: 18px;
}

@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 #e4ddd3;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
  }

  .side-cta {
    display: none;
  }

  main {
    padding: 24px 20px 100px;
  }

  .hero {
    flex-direction: column;
  }

  .form-wrap {
    flex-direction: column;
  }
}
