:root {
  color-scheme: light;
  --bg: #f7f4f0;
  --ink: #1f1f1f;
  --muted: #5f5b57;
  --accent: #1d4d6a;
  --accent-soft: #d7e6ee;
  --highlight: #f5c978;
  --panel: #ffffff;
  --border: #d9d2cb;
  --shadow: 0 20px 40px rgba(31, 31, 31, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  display: block;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: #efe9e2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid var(--border);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand span {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  font-weight: 500;
  color: var(--muted);
}

.nav a.active,
.nav a:hover {
  color: var(--ink);
}

.sidebar .cta-mini {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero {
  padding: 72px 8vw 64px;
  background: linear-gradient(120deg, #ffffff 0%, #f1f6f8 100%);
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 40px;
  width: 220px;
  height: 220px;
  background: var(--highlight);
  opacity: 0.35;
  border-radius: 50%;
}

.hero-content {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 12px;
  color: var(--muted);
}

.hero-title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  margin: 0;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(29, 77, 106, 0.25);
}

.button-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.button:hover,
.button-outline:hover {
  transform: translateY(-2px);
}

.section {
  padding: 56px 8vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.alt {
  background: #fff;
}

.section.muted {
  background: #f0ece7;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
}

.section-title {
  font-size: clamp(24px, 3vw, 36px);
  margin: 0;
}

.section-text {
  color: var(--muted);
  margin: 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.media-card {
  background: #fff;
  border-radius: 24px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.media-card img {
  border-radius: 16px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(31, 31, 31, 0.06);
}

.card img {
  border-radius: 14px;
  height: 150px;
  object-fit: cover;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.quote {
  border-left: 4px solid var(--accent);
  padding-left: 18px;
  font-style: italic;
  color: var(--muted);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-item span {
  min-width: 52px;
  font-weight: 600;
  color: var(--accent);
}

.highlight-band {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--accent);
  color: #fff;
  padding: 32px;
  border-radius: 28px;
}

.highlight-band a {
  color: #fff;
  text-decoration: underline;
}

.form-wrap {
  background: #fff;
  padding: 32px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 15px;
  font-family: inherit;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid var(--border);
}

.footer {
  padding: 32px 8vw;
  background: #1f1f1f;
  color: #f7f4f0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f7f4f0;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--highlight);
  color: #1f1f1f;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  flex: 1;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.content-panel {
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--border);
}

.address-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-style: normal;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
  }

  .sidebar .cta-mini {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sticky-cta {
    right: 16px;
    bottom: 88px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 56px 6vw;
  }

  .section {
    padding: 48px 6vw;
  }

  .sidebar {
    padding: 20px 6vw;
  }
}
