* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1e1f24;
  --muted: #5a616f;
  --paper: #f8f4f0;
  --paper-strong: #efe6dd;
  --accent: #c94f37;
  --accent-soft: #f2c6b8;
  --deep: #2f2a45;
  --line: #d6cbc2;
  --success: #1e7f63;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.page-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-header {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.nav-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 8vw 16px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 15px;
}

.nav-links a {
  color: var(--ink);
}

.hero-magazine {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 8vw 48px;
  background: var(--paper);
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-image {
  background: var(--paper-strong);
  border-radius: 18px;
  overflow: hidden;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-copy h1 {
  font-size: 34px;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(201, 79, 55, 0.18);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.section {
  padding: 56px 8vw;
}

.section.alt {
  background: var(--paper);
}

.section-title {
  font-size: 24px;
  margin-bottom: 16px;
}

.magazine-columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.column-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.column-card .card-media {
  background: var(--paper-strong);
}

.column-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.story-row .story-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.story-row .story-image {
  background: var(--paper-strong);
  border-radius: 16px;
  overflow: hidden;
}

.highlight-strip {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
}

.service-card .card-media {
  background: var(--paper-strong);
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--deep);
}

.form-panel {
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
}

.form-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.service-option input {
  accent-color: var(--accent);
}

.input-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.muted {
  color: var(--muted);
}

.cta-inline {
  font-weight: 600;
}

.footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 32px 8vw 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 6px 6px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 40;
}

.sticky-cta span {
  font-size: 14px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 340px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-box {
  border-radius: 16px;
  background: var(--paper-strong);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

.page-title {
  font-size: 30px;
  margin-bottom: 8px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

@media (min-width: 840px) {
  .hero-wrap {
    flex-direction: row;
    align-items: center;
  }

  .hero-copy {
    flex: 1.05;
  }

  .hero-image {
    flex: 1;
  }

  .magazine-columns {
    flex-direction: row;
  }

  .magazine-columns .column-card {
    flex: 1;
  }

  .story-row {
    flex-direction: row;
  }

  .story-row.reverse {
    flex-direction: row-reverse;
  }

  .story-row .story-text,
  .story-row .story-image {
    flex: 1;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 30%;
    min-width: 260px;
  }

  .two-column {
    flex-direction: row;
  }

  .two-column > div {
    flex: 1;
  }
}
