:root {
  --ink: #1b1b1b;
  --muted: #5e5e5e;
  --sand: #f4f1ed;
  --sage: #e3ebe6;
  --night: #101419;
  --accent: #2b5b4c;
  --highlight: #fff3d8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fafafa;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.top-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 28px 8vw 12px;
  gap: 16px;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.logo-mark {
  font-weight: 700;
  font-size: 1.2rem;
}

.tagline {
  color: var(--muted);
  font-size: 0.95rem;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  padding: 6px 12px;
  background: var(--highlight);
  border-radius: 999px;
  font-size: 0.85rem;
}

main {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 0 8vw 80px;
}

.asym {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.hero {
  padding-top: 24px;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.hero-media {
  flex: 1 1 320px;
  transform: translateY(20px);
}

.image-frame {
  background: #dfe7ea;
  padding: 8px;
  border-radius: 24px;
}

.image-cover {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
}

.manifesto .accent-card {
  background: var(--highlight);
  padding: 28px;
  border-radius: 24px;
  flex: 1 1 260px;
}

.text-panel {
  flex: 1 1 340px;
}

.section-title {
  max-width: 560px;
}

.card-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  border-radius: 24px;
  padding: 16px;
}

.service-card.offset {
  transform: translateY(20px);
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 600;
}

.process {
  background: var(--sand);
  padding: 32px;
  border-radius: 32px;
}

.background-panel {
  background-color: #dce5e1;
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 36px;
  border-radius: 32px;
}

.process-media {
  flex: 1 1 320px;
}

.process-text {
  flex: 1 1 320px;
}

.trust {
  align-items: flex-start;
}

.form-section {
  background: var(--sage);
  padding: 36px;
  border-radius: 32px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 320px;
}

.quote-form input,
.quote-form select {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cdd6d1;
  font-size: 1rem;
}

.cta-button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
}

.ghost-button {
  background: transparent;
  border: 1px solid var(--accent);
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
}

.inline-link {
  font-weight: 600;
}

.site-footer {
  background: var(--night);
  color: #fff;
  padding: 40px 8vw;
}

.site-footer a {
  color: #fff;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.disclaimer {
  margin-top: 24px;
  color: #d6d6d6;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  max-width: 360px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  padding-top: 24px;
}

.story .accent-card,
.split-note,
.floating-box,
.contact-card,
.pricing-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
}

.pricing-grid {
  align-items: flex-start;
}

.pricing-column {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-grid {
  gap: 20px;
}

.legal .text-panel {
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
}

.thanks {
  padding-top: 32px;
}

@media (max-width: 900px) {
  .sticky-cta {
    position: static;
    margin: 20px 8vw 0;
    border-radius: 20px;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}
