* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f1ec;
  --text: #1f1b17;
  --muted: #6b5f54;
  --accent: #a4502a;
  --accent-dark: #7d3b1e;
  --card: #ffffff;
  --line: #e1d7cf;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: #f0e6dd;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-bottom: 1px solid var(--accent);
  color: var(--accent);
}

.sidebar .meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

main {
  padding: 40px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section h1,
.section h2,
.section h3 {
  font-weight: 700;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero .hero-media {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.hero .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(0, 0, 0, 0.2), transparent);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 620px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.dark {
  background: var(--accent-dark);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split .split-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(31, 27, 23, 0.15);
}

.band {
  background: #fff3ea;
  padding: 32px;
  border-radius: 28px;
  border: 1px solid #f1d9c7;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(31, 27, 23, 0.08);
}

.card img {
  border-radius: 16px;
  height: 160px;
  object-fit: cover;
}

.quote {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background: #e9ded5;
  border-radius: 22px;
  font-style: italic;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.timeline-item span {
  font-weight: 700;
  color: var(--accent);
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.pricing-card {
  flex: 1 1 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card h3 {
  font-size: 1.1rem;
}

.price {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 700;
}

.form-panel {
  background: #fff;
  border-radius: 26px;
  padding: 28px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d8cfc8;
  font-size: 1rem;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-dark);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.footer {
  padding: 30px 6vw;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  background: #f0e6dd;
}

.footer a {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(31, 27, 23, 0.15);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.subtle {
  color: var(--muted);
  font-size: 0.95rem;
}

.image-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.image-row img {
  flex: 1 1 200px;
  border-radius: 18px;
  height: 180px;
  object-fit: cover;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.85rem;
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 720px) {
  main {
    padding: 32px 6vw 70px;
  }

  .sidebar {
    gap: 16px;
  }

  .hero-content {
    max-width: 100%;
  }
}
