* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2328;
  --muted: #5a6470;
  --accent: #2b4a6f;
  --accent-soft: #e8eef5;
  --paper: #f5f2ee;
  --sand: #e6ddd3;
  --slate: #d7e2eb;
  --line: #d0d7de;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

header {
  padding: 28px 0 10px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--accent-soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  gap: 30px;
  align-items: stretch;
  flex-wrap: wrap;
  padding: 20px 0 40px;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-text h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin: 0 0 12px;
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.image-frame {
  background: var(--sand);
  border-radius: 10px;
  overflow: hidden;
  flex: 1 1 320px;
  min-height: 240px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.magazine-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.column {
  flex: 1 1 260px;
}

.column-wide {
  flex: 2 1 420px;
}

.pull-quote {
  background: var(--slate);
  padding: 22px;
  border-radius: 10px;
  font-style: italic;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  flex: 1 1 220px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  background: var(--sand);
}

.tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.section-block {
  padding: 34px 0;
}

.section-block.alt {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-title {
  font-size: 22px;
  margin: 0 0 12px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line);
  overflow: hidden;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  background: var(--slate);
}

.service-card .service-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 20px;
  margin-top: 20px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row .field {
  flex: 1 1 220px;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  background: var(--accent);
  color: #fff;
  padding: 16px;
  border-radius: 12px;
}

.sticky-cta a {
  color: #fff;
  text-decoration: underline;
}

.footer {
  padding: 30px 0 50px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 10px 0;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  max-width: 320px;
  z-index: 99;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.note {
  background: var(--accent-soft);
  border-radius: 10px;
  padding: 14px;
}

@media (max-width: 720px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    position: static;
    margin-top: 20px;
  }

  .hero {
    padding-bottom: 20px;
  }
}
