/* Base */
:root {
  --ink: #1e2326;
  --soft-ink: #465058;
  --accent: #b03a2e;
  --accent-dark: #8b2b22;
  --sand: #f3efe8;
  --mist: #f7f7f4;
  --stone: #d8d2c7;
  --sky: #e9f0f5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img.cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--mist);
}

.section.sand {
  background: var(--sand);
}

.section.sky {
  background: var(--sky);
}

.nav-wrap {
  background: #fff;
  border-bottom: 1px solid #ece7dc;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.ad-label {
  font-size: 12px;
  color: var(--soft-ink);
  padding: 6px 10px;
  border: 1px solid var(--stone);
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-text h1 {
  font-size: 40px;
  line-height: 1.1;
  margin: 0;
}

.hero-text p {
  font-size: 18px;
  color: var(--soft-ink);
  margin: 0;
}

.hero-media {
  flex: 1 1 360px;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--stone);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  gap: 8px;
  border: none;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.magazine-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.magazine-col {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-box {
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
  min-height: 200px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  border: 1px solid #eee6d9;
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 18px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
}

.split-feature {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: center;
}

.split-feature.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
}

.split-media {
  flex: 1 1 320px;
  min-height: 260px;
  background: var(--stone);
  border-radius: 20px;
  overflow: hidden;
}

.quote {
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  background: #fff;
  border-radius: 12px;
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid #ede5d7;
}

.form-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-actions {
  margin-top: 16px;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d8d0c2;
  font-family: inherit;
}

.footer {
  background: #121414;
  color: #f7f3ee;
  padding: 40px 0 60px;
}

.footer a {
  color: #f7f3ee;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 13px;
  color: #d6cfc2;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border: 1px solid #e2d8c8;
  padding: 16px;
  border-radius: 16px;
  max-width: 320px;
  z-index: 30;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 50px 0;
  background: var(--sand);
}

.page-hero h1 {
  margin: 0;
  font-size: 34px;
}

.list-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.list-row span {
  background: #fff;
  border: 1px solid #e8dfd1;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-item {
  flex: 1 1 260px;
  background: #fff;
  border: 1px solid #efe6d9;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-item .image-box {
  min-height: 160px;
}

.contact-card {
  background: #fff;
  border: 1px solid #eee4d6;
  border-radius: 18px;
  padding: 18px;
}
