:root {
  --ink: #1b1f1d;
  --muted: #4c5a55;
  --paper: #f7f4ef;
  --accent: #1f6f5b;
  --accent-light: #e4f2ec;
  --sand: #efe7dc;
  --stone: #e0e3dd;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.88;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.top-bar {
  padding: 20px 0;
  border-bottom: 1px solid #d7d2c8;
  background: #fff;
}

.top-bar .nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid #c8d1cc;
  border-radius: 999px;
  background: #f4f8f6;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding: 50px 0 30px;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-visual {
  flex: 1 1 360px;
  min-height: 340px;
  border-radius: 18px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: 0;
}

.hero p {
  color: var(--muted);
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid #b9d7cd;
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid #c7d6cf;
}

.magazine-block {
  padding: 40px 0;
}

.mag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.mag-col {
  flex: 1 1 260px;
  min-width: 240px;
}

.mag-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(27, 31, 29, 0.08);
}

.mag-card img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 18px;
}

.divider {
  height: 1px;
  background: #d7d2c8;
  margin: 22px 0;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 8px 26px rgba(27, 31, 29, 0.07);
}

.service-card img {
  width: 100%;
  height: 150px;
  border-radius: 12px;
}

.service-price {
  font-weight: 700;
  color: var(--accent);
}

.feature-strip {
  background: var(--sand);
  padding: 28px 0;
}

.feature-item {
  flex: 1 1 260px;
  padding: 12px 16px;
  border-left: 2px solid #cbbfb1;
}

.split-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split-panel img {
  width: 100%;
  height: 260px;
  border-radius: 16px;
}

.form-panel {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(27, 31, 29, 0.08);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c9d0ca;
  font-family: inherit;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 20;
  box-shadow: 0 12px 30px rgba(27, 31, 29, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  width: min(360px, 90%);
  box-shadow: 0 12px 30px rgba(27, 31, 29, 0.18);
  z-index: 30;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.footer {
  background: #f0ede7;
  padding: 32px 0 44px;
  margin-top: 40px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.legal-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 16px;
}

.plain-section {
  padding: 36px 0;
}

.accent-block {
  background: var(--stone);
  border-radius: 18px;
  padding: 24px;
}

.contact-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
}

.wide-image {
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
}

.wide-image img {
  width: 100%;
  height: 100%;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-clean li + li {
  margin-top: 10px;
}

.note-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f2f6f3;
  color: var(--muted);
  font-size: 0.85rem;
}

.thanks-box {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(27, 31, 29, 0.08);
}

.bg-sage {
  background: #d9e3db;
}

.bg-mist {
  background: #e3e6df;
}

.bg-olive {
  background: #d8e3dc;
}

@media (max-width: 780px) {
  .sticky-cta {
    position: static;
    margin-top: 16px;
  }

  .hero {
    padding-top: 30px;
  }
}
