* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #4a5568;
  --sand: #f7f3ee;
  --mist: #eef5f3;
  --sage: #d4e1d9;
  --lake: #4a6f6a;
  --leaf: #2d5a4e;
  --sun: #e6b86a;
  --cloud: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img.photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  background: var(--cloud);
  border-bottom: 1px solid #e2e8f0;
  padding: 18px 6vw;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--muted);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--leaf);
  background: var(--mist);
  padding: 6px 10px;
  border-radius: 16px;
}

main {
  flex: 1;
}

.section {
  padding: 64px 6vw;
}

.section.alt {
  background: var(--mist);
}

.section.deep {
  background: #e4ece8;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--leaf);
  font-weight: 600;
}

h1, h2, h3 {
  margin: 12px 0;
  line-height: 1.2;
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 28px;
  background: var(--leaf);
  color: var(--cloud);
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--leaf);
  border: 1px solid var(--leaf);
}

.btn:focus {
  outline: 2px solid var(--sun);
  outline-offset: 2px;
}

.btn:hover {
  background: #22483f;
  transform: translateY(-1px);
}

.btn.secondary:hover {
  background: var(--sage);
}

.image-frame {
  background: var(--sage);
  border-radius: 24px;
  overflow: hidden;
  min-height: 260px;
}

.image-frame.tall {
  min-height: 420px;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--cloud);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.card.inline {
  display: flex;
  gap: 14px;
  align-items: center;
}

.image-frame.small {
  width: 92px;
  height: 92px;
  border-radius: 16px;
}

.card.inline .image-frame {
  flex: 0 0 92px;
}

.price {
  font-weight: 700;
  color: var(--leaf);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step {
  background: var(--cloud);
  border-radius: 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--sun);
}

.form-block {
  background: var(--cloud);
  padding: 26px;
  border-radius: 22px;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #cbd5f5;
  font-size: 0.95rem;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.toggle-content {
  display: none;
  margin-top: 10px;
}

.badge {
  background: var(--sage);
  color: var(--leaf);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.testimonial {
  font-style: italic;
  background: var(--cloud);
  padding: 18px;
  border-radius: 18px;
}

.footer {
  background: #111c1a;
  color: #e2e8f0;
  padding: 40px 6vw 70px;
}

.footer a {
  color: #e2e8f0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 10px 0 24px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #cbd5f5;
  margin-top: 16px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.25);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: var(--cloud);
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
  display: none;
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.notice {
  background: var(--sand);
  border-radius: 16px;
  padding: 16px;
  border: 1px dashed var(--leaf);
  color: var(--muted);
}

@media (max-width: 860px) {
  .top-bar {
    padding: 16px 5vw;
  }

  .section {
    padding: 48px 5vw;
  }

  h1 {
    font-size: 2rem;
  }

  .sticky-cta {
    right: 10px;
    bottom: 10px;
  }
}
