* {
  box-sizing: border-box;
}

:root {
  --ink: #1c1c1c;
  --muted: #5f6368;
  --accent: #2f6f4e;
  --accent-dark: #214d37;
  --sand: #f6f2ee;
  --mist: #eef3f2;
  --sun: #f3ede4;
  --rose: #f5ecef;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.78rem;
  color: var(--muted);
  border: 1px solid #d7d7d7;
  padding: 4px 8px;
  border-radius: 999px;
  align-self: flex-start;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px 6vw 40px;
  background: var(--mist);
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-copy h1 {
  font-size: 2.6rem;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.secondary {
  background: #ffffff;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.image-frame {
  background-color: #dfe7e3;
  border-radius: 18px;
  overflow: hidden;
  flex: 1 1 320px;
  min-height: 280px;
  display: flex;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 54px 6vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section.sun {
  background: var(--sun);
}

.section.rose {
  background: var(--rose);
}

.section.mist {
  background: var(--mist);
}

.bg-insight {
  background-image: url("https://images.pexels.com/photos/416747/pexels-photo-416747.jpeg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.bg-ritual {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-ritual .inline-image {
  background-color: #d9e0dd;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.inline-image {
  background-color: #e6e1db;
  border-radius: 16px;
  overflow: hidden;
}

.inline-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 2px solid #d5dad7;
  padding-left: 18px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  background-color: #e3e8e6;
}

.card svg {
  width: 34px;
  height: 34px;
  fill: var(--accent);
}

.trust-band {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.trust-item {
  flex: 1 1 220px;
  padding: 18px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e3e3e3;
}

.testimonial {
  padding: 16px;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

.pricing-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e6e6e6;
}

.price-card .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cfd6d4;
  font-size: 0.95rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.form-row > div {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.sticky-cta .btn {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.footer {
  padding: 40px 6vw;
  background: #161b1a;
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f5f5f5;
  text-decoration: underline;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .btn.secondary {
  border-color: #b5bdbb;
  color: #3f4a47;
}

.page-title {
  font-size: 2.1rem;
  margin: 0;
}

.page-hero {
  padding: 56px 6vw 32px;
  background: var(--mist);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
