* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f2a22;
  --muted: #4a5b4f;
  --forest: #2f5f46;
  --moss: #7f9a7c;
  --mist: #eef2ec;
  --sand: #f4f1ea;
  --accent: #d08b4f;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.wrap {
  width: min(1150px, 92vw);
  margin: 0 auto;
}

.topbar {
  background: #ffffff;
  border-bottom: 1px solid #d9dfd6;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem 0;
}

.brand {
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--muted);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--forest);
  border: 1px solid #c6d0c7;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: #f9fbf7;
}

.hero {
  background: #ffffff;
  padding: 3.5rem 0;
}

.hero-layout {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy {
  flex: 1.1;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 3.5vw, 3.4rem);
  margin: 0 0 1rem;
}

.hero-copy p {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  background: var(--forest);
  color: #ffffff;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
}

.image-frame {
  background: #dbe4d8;
  border-radius: 20px;
  overflow: hidden;
  flex: 1;
  min-height: 320px;
  display: flex;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.magazine-section {
  padding: 3rem 0;
}

.section-sand {
  background: #f6f3ec;
}

.section-white {
  background: #ffffff;
}

.cta-note {
  margin-top: 1.2rem;
}

.section-title {
  font-size: 1.9rem;
  margin: 0 0 1.3rem;
}

.split-row {
  display: flex;
  gap: 2rem;
  align-items: stretch;
}

.col-wide {
  flex: 1.3;
}

.col-narrow {
  flex: 0.7;
}

.editorial-card {
  background: #ffffff;
  padding: 1.6rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(22, 34, 26, 0.07);
}

.data-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.data-item {
  flex: 1 1 220px;
  background: var(--sand);
  padding: 1rem;
  border-radius: 14px;
}

.service-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 250px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .content {
  padding: 1.4rem;
}

.price {
  font-weight: 700;
  color: var(--forest);
}

.form-block {
  background: #ffffff;
  padding: 2rem;
  border-radius: 18px;
}

.form-grid {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.form-actions {
  margin-top: 1.2rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1 1 240px;
}

.field input,
.field textarea,
.field select {
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid #cfd7cc;
  font-size: 0.95rem;
  font-family: inherit;
}

.service-choice {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.service-choice label {
  flex: 1 1 210px;
  border: 1px solid #d4ddd2;
  border-radius: 14px;
  padding: 1rem;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: #f8faf7;
  cursor: pointer;
}

.service-choice input {
  margin-top: 0.3rem;
}

.sticky-cta {
  position: sticky;
  top: 1.5rem;
  align-self: flex-start;
  background: var(--forest);
  color: #ffffff;
  padding: 1rem;
  border-radius: 16px;
  max-width: 220px;
}

.footer {
  margin-top: auto;
  padding: 2.5rem 0;
  background: #151f19;
  color: #e5ece6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.9rem;
  margin: 1rem 0 0;
}

.disclaimer {
  font-size: 0.85rem;
  color: #c7d2c9;
  margin-top: 1rem;
}

.cookie-banner {
  position: fixed;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}

.legal-page {
  padding: 3rem 0;
  background: #ffffff;
}

.legal-page h1 {
  margin-top: 0;
}

@media (max-width: 900px) {
  .hero-layout,
  .split-row {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    max-width: none;
  }
}
