* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1d2430;
  background: #f5f2ee;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5vw;
  background: #f0ebe5;
  border-bottom: 1px solid #d8d1c7;
  flex-wrap: wrap;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-subtitle {
  font-size: 12px;
  text-transform: uppercase;
  color: #6c6f76;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 8px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e4e1db;
}

.ad-label {
  padding: 6px 10px;
  border-radius: 999px;
  background: #1d2430;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.3px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  padding: 40px 5vw;
  background: #f8f6f3;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero h1 {
  font-size: 38px;
  line-height: 1.15;
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 17px;
  color: #3c4654;
}

.hero-image {
  flex: 1 1 380px;
  min-height: 320px;
  background: #d7d0c6;
  border-radius: 16px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 28px;
  background: #1d2430;
  color: #fff;
  font-size: 14px;
  border: none;
}

.btn-outline {
  background: transparent;
  color: #1d2430;
  border: 1px solid #1d2430;
}

.section {
  padding: 48px 5vw;
}

.section.alt {
  background: #ece7df;
}

.section-title {
  font-size: 24px;
  margin: 0 0 18px;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.magazine-column {
  flex: 1 1 280px;
  background: #ffffff;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid #e6e1d9;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.magazine-column.highlight {
  flex: 1 1 360px;
  background: #1d2430;
  color: #fff;
}

.inline-image {
  background: #d9d2c9;
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
}

.inline-image img {
  width: 100%;
  height: 100%;
}

.insight-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.insight-card {
  flex: 1 1 220px;
  background: #ffffff;
  border: 1px solid #e2ded7;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.insight-card img {
  width: 100%;
  height: 140px;
  border-radius: 12px;
}

.split-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.split-flow .story {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sticky-cta {
  flex: 1 1 240px;
  background: #fff8ef;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #e7dbc8;
  position: sticky;
  top: 20px;
  height: fit-content;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #e6e1d9;
  border-radius: 16px;
}

.service-image {
  flex: 0 0 160px;
  height: 110px;
  background: #ded7cd;
  border-radius: 12px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
}

.service-details {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price {
  font-weight: 700;
  color: #1d2430;
}

.form-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.form-card {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid #e6e1d9;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field input,
.form-field select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc7bc;
  font-size: 14px;
}

.footer {
  margin-top: auto;
  padding: 32px 5vw;
  background: #1d2430;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  color: #fff;
}

.footer-column {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid #d9d2c7;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  padding: 40px 5vw 20px;
}

.page-hero-image {
  flex: 1 1 320px;
  height: 240px;
  background: #d6d1c7;
  border-radius: 16px;
  overflow: hidden;
}

.page-hero-image img {
  width: 100%;
  height: 100%;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e6e1d9;
}

.reference-list {
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wide-note {
  background: #f4efe7;
  border: 1px solid #e2dbd1;
  border-radius: 16px;
  padding: 18px;
}
