.root {
  --ink: #1c1f1a;
  --muted: #5f6658;
  --sage: #dfe6d6;
  --leaf: #6d7f4e;
  --clay: #c9b9a3;
  --stone: #f5f3ee;
  --sun: #f0d9a5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--stone);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 12px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.brand-subtitle {
  font-size: 13px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--leaf);
  border: 1px solid var(--leaf);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 72px 32px 64px;
  background: linear-gradient(120deg, rgba(245, 243, 238, 0.96), rgba(245, 243, 238, 0.7));
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1523413651479-597eb2da0ad6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h1 {
  font-size: 44px;
  margin: 0;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--leaf);
  color: white;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--leaf);
  border: 1px solid var(--leaf);
}

.section {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asym-row {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  padding: 28px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 18px 40px rgba(32, 40, 28, 0.08);
  max-width: 520px;
}

.offset-card.shift {
  margin-left: 60px;
}

.offset-card.shift-left {
  margin-right: 60px;
}

.media-frame {
  background-color: var(--sage);
  border-radius: 22px;
  overflow: hidden;
  flex: 1;
  min-width: 260px;
}

.media-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.story-stack {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.story-note {
  flex: 1;
  padding: 20px;
  border-radius: 16px;
  background: var(--sun);
}

.story-note.alt {
  background: var(--clay);
}

.quote {
  font-style: italic;
  color: var(--muted);
  margin: 0;
}

.services-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  max-width: 320px;
  box-shadow: 0 12px 26px rgba(32, 40, 28, 0.08);
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--leaf);
}

.reveal {
  padding: 36px;
  border-radius: 22px;
  background: linear-gradient(140deg, rgba(223, 230, 214, 0.8), rgba(255, 255, 255, 0.9));
}

.form-panel {
  background: white;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(32, 40, 28, 0.08);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form label {
  font-size: 14px;
  color: var(--muted);
}

.form input,
.form select,
.form textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d6d9d0;
  font-size: 15px;
}

.inline-cta {
  color: var(--leaf);
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--leaf);
  color: white;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(32, 40, 28, 0.2);
  z-index: 10;
}

.footer {
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid #d9ded0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 360px;
  background: white;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(32, 40, 28, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.page-hero {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 48px 0 16px;
  flex-wrap: wrap;
}

.page-hero h1 {
  margin: 0;
  font-size: 34px;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
}

.legal-panel {
  background: white;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(32, 40, 28, 0.08);
}

.contact-details {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sage);
  font-size: 12px;
  color: var(--muted);
}
