* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f4f1;
  --ink: #1e1c1a;
  --muted: #6e655f;
  --accent: #3b4f7c;
  --accent-2: #c07a5a;
  --card: #ffffff;
  --line: #e4ded9;
  --soft: #f0ebe6;
  --shadow: 0 18px 40px rgba(30, 28, 26, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 28px 8vw 16px;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  padding: 8px 18px;
  background: var(--card);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 240px;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 20px 8vw 80px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.column {
  flex: 1;
  min-width: 0;
}

.offset-card {
  background: var(--card);
  padding: 28px;
  border-radius: 26px;
  box-shadow: var(--shadow);
  position: relative;
}

.offset-card::after {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  border-radius: 28px;
  border: 1px solid var(--line);
  z-index: -1;
}

.hero {
  position: relative;
  padding: 48px;
  border-radius: 36px;
  background: var(--soft);
  overflow: hidden;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d7d1cb;
  min-height: 360px;
  border-radius: 30px;
}

.hero-copy {
  position: absolute;
  left: 6%;
  bottom: 12%;
  background: rgba(255, 255, 255, 0.92);
  padding: 24px 28px;
  border-radius: 20px;
  max-width: 420px;
  box-shadow: var(--shadow);
}

.hero-copy h1 {
  margin: 0 0 10px;
  font-size: 2.4rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--muted);
  border: 1px solid var(--line);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: var(--accent-2);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.image-card {
  background: #d7d1cb;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--card);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.step span {
  font-weight: 700;
  color: var(--accent);
}

.card-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--card);
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  background-color: #d9d4cf;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.quote {
  padding: 24px;
  border-left: 4px solid var(--accent);
  background: var(--card);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.form-wrap {
  background: var(--card);
  padding: 32px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font: inherit;
}

.footer {
  padding: 40px 8vw 60px;
  background: #1f2124;
  color: #f4f1ed;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f4f1ed;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d9d2cc;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--card);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  max-width: 360px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.bg-story {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d7d1cb;
  border-radius: 30px;
  min-height: 280px;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1497215728101-856f4ea42174?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d7d1cb;
  border-radius: 30px;
  min-height: 240px;
}

.bg-archive {
  background-image: url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d7d1cb;
  border-radius: 30px;
  min-height: 280px;
}

.media-block {
  background: #d7d1cb;
  border-radius: 24px;
  overflow: hidden;
}

.media-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.map {
  background: #d8d2cc;
  border-radius: 28px;
  overflow: hidden;
}

.map img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

@media (max-width: 960px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .hero-copy {
    position: static;
    margin-top: 18px;
  }

  .hero {
    padding: 28px;
  }
}
