* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f3ef;
  --bg-deep: #e7e0d8;
  --ink: #1b1a18;
  --muted: #5a554d;
  --accent: #b24a2f;
  --accent-soft: #f4d8cf;
  --line: #d8cfc4;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.wrap {
  width: min(1160px, 92%);
  margin: 0 auto;
}

header {
  padding: 28px 0 12px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
}

.hero {
  background: #fff;
  border-radius: 28px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-media {
  flex: 1 1 360px;
  min-height: 320px;
  border-radius: 20px;
  background-color: #d6d0c7;
  overflow: hidden;
}

.tagline {
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--bg-deep);
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1501594907352-04cda38ebc29?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #cfc6bb;
  color: #fff;
}

.bg-flow {
  background-image: url("https://images.unsplash.com/photo-1493809842364-78817add7ffb?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #c9c2b7;
  color: #fff;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 24px;
}

.split {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 340px;
}

.split-media {
  flex: 1 1 320px;
  min-height: 260px;
  background-color: #dcd4c9;
  border-radius: 16px;
  overflow: hidden;
}

.offset-block {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
}

.offset-panel {
  flex: 1 1 260px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.offset-panel.emphasized {
  margin-top: -32px;
  background: var(--accent-soft);
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  font-size: 1.2rem;
}

.image-box {
  background-color: #d7cfc4;
}

.cta-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.sticky-cta {
  position: sticky;
  bottom: 18px;
  display: flex;
  justify-content: center;
  padding: 16px;
  z-index: 2;
}

.sticky-cta .btn {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.testimonials {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.testimonial {
  flex: 1 1 260px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.footer {
  padding: 40px 0 60px;
  background: #12110f;
  color: #f0ebe5;
}

.footer a {
  color: #f7b9a5;
}

.footer-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 16px;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 3;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.notice {
  background: #fff7ef;
  border-left: 4px solid var(--accent);
  padding: 16px;
  border-radius: 12px;
}

.legal-hero {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}

.muted {
  color: var(--muted);
}

@media (max-width: 800px) {
  .hero {
    padding: 28px;
  }

  .offset-panel.emphasized {
    margin-top: 0;
  }
}
