* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1b16;
  --muted: #6b5f54;
  --accent: #c7673a;
  --accent-soft: #f5d6c6;
  --leaf: #375a4e;
  --paper: #fffaf6;
  --mist: #f2efe9;
  --shadow: 0 14px 38px rgba(31, 27, 22, 0.12);
}

body {
  font-family: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

header {
  padding: 2.5rem 6vw 1.5rem;
  background: linear-gradient(120deg, #fff3ea 0%, #f8f1ea 70%);
}

.top-bar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.brand span {
  color: var(--accent);
  font-weight: 700;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.site-nav a {
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  border-color: var(--accent);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button.secondary {
  background: var(--leaf);
}

.cta-button.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(31, 27, 22, 0.18);
}

.section {
  padding: 0 6vw;
}

.section-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero {
  padding: 3rem 6vw 0;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: #fff;
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.hero-content p {
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.story-card {
  background: #fff;
  padding: 2rem;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.highlight {
  background: var(--mist);
  padding: 2.5rem;
  border-radius: 24px;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent);
  text-decoration: underline;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.timeline-marker {
  background: var(--accent-soft);
  color: var(--accent);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.trust-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.trust-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  border-left: 6px solid var(--accent);
  padding: 1.8rem;
  border-radius: 18px;
}

.pricing-reveal {
  background: #fff;
  border-radius: 26px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.price-card {
  border-radius: 20px;
  background: var(--mist);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price {
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 700;
}

.sticky-cta {
  position: sticky;
  bottom: 1rem;
  margin: 0 6vw;
  background: #fff;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow);
  gap: 1rem;
  z-index: 3;
}

.form-section {
  background: linear-gradient(120deg, #fff1e6, #f7efe8);
  padding: 3rem 6vw;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: #fff;
  padding: 2rem;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid #d9cfc6;
  font-size: 1rem;
  font-family: inherit;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer {
  background: #1f1b16;
  color: #f5efe9;
  padding: 2.5rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer a {
  color: #f5efe9;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.page-hero {
  padding: 3rem 6vw 2rem;
  background: var(--mist);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.simple-section {
  padding: 2.5rem 6vw;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.services-card {
  background: #fff;
  padding: 1.8rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.services-card img {
  border-radius: 16px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: #fff;
  padding: 1.2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.visual-banner {
  background: url("assets/texture.svg") center/cover;
  padding: 2.5rem;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--ink);
}

@media (min-width: 768px) {
  .top-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero-card {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .trust-grid,
  .pricing-cards,
  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .trust-item,
  .price-card,
  .services-card {
    flex: 1 1 260px;
  }

  .form-grid {
    flex-direction: row;
  }

  .form-grid > div {
    flex: 1;
  }
}
