* {
  box-sizing: border-box;
}

:root {
  color-scheme: only light;
  --ink: #1c1c1c;
  --muted: #5c5c5c;
  --accent: #176b5a;
  --accent-soft: #e8f3ef;
  --sand: #f5f0ea;
  --sky: #eef5f9;
  --rose: #f4e6e7;
  --ink-soft: #2f2f2f;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  background-color: #e0e7e2;
}

a {
  color: var(--accent);
  text-decoration: underline;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 6vw 8px;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border-left: 3px solid var(--accent);
  padding-left: 10px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px 6vw 18px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}

.hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--sand);
}

.hero-visual img {
  width: 100%;
  height: 360px;
}

.section {
  padding: 36px 6vw;
}

.section.muted {
  background: var(--sky);
}

.section.sand {
  background: var(--sand);
}

.section.rose {
  background: var(--rose);
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 280px;
  min-width: 260px;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background: #dde6e1;
}

.image-frame img {
  width: 100%;
  height: 280px;
}

.story-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  min-width: 210px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 180px;
  background-color: #e0e7e2;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn.secondary {
  background: #fff;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.cta-inline {
  font-weight: 600;
}

.testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  flex: 1 1 240px;
  min-width: 220px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.form-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c8d1cc;
  font-size: 1rem;
  background: #fff;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 40px;
  background: #111;
  color: #f2f2f2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #f2f2f2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.reference-list {
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 999px;
  padding: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  gap: 8px;
  align-items: center;
}

.sticky-cta button {
  padding: 10px 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 36px 6vw 20px;
  background: var(--sand);
}

.page-hero img {
  width: 100%;
  height: 260px;
  border-radius: 20px;
  background-color: #e0e7e2;
}

.legal-block {
  max-width: 860px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-card {
  flex: 1 1 260px;
  min-width: 240px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.inline-highlight {
  background: var(--accent-soft);
  padding: 2px 6px;
  border-radius: 6px;
}
