* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1d1a;
  --muted: #605a52;
  --accent: #d1603d;
  --accent-dark: #b24a2e;
  --paper: #f8f3ec;
  --leaf: #35524a;
  --sand: #efe6d7;
  --sun: #f0c487;
  --shadow: rgba(25, 20, 16, 0.14);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6%;
  background: #fff;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--accent);
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 32px var(--shadow);
  z-index: 4;
}

.sticky-cta:hover {
  background: var(--accent-dark);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 6% 70px;
  background: linear-gradient(120deg, var(--paper), #fff);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-tag {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--leaf);
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.15;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media img {
  border-radius: 24px;
  box-shadow: 0 20px 40px var(--shadow);
}

.section {
  padding: 70px 6%;
}

.section.alt {
  background: var(--paper);
}

.section.dark {
  background: var(--leaf);
  color: #fdf8f2;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.section-eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--accent-dark);
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.2;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
}

.split-text strong {
  color: var(--ink);
}

.highlight-box {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 16px 26px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 18px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  background: #fff;
  border-radius: 18px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 22px var(--shadow);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #eee3d5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  padding: 26px;
  border-radius: 26px;
  box-shadow: 0 20px 32px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.95rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #dccfbe;
  font-size: 1rem;
  font-family: inherit;
}

button[type="submit"] {
  padding: 13px 18px;
  border-radius: 26px;
  border: none;
  background: var(--leaf);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.mini-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--accent);
}

.footer {
  margin-top: auto;
  padding: 40px 6%;
  background: #1b1714;
  color: #f4eee6;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 30px var(--shadow);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 20px;
  border: 1px solid #e0d6c8;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
  border: none;
}

.page-hero {
  background: var(--paper);
  padding: 50px 6%;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.page-content {
  padding: 50px 6% 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-block {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 14px 24px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content,
  .hero-media {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards,
  .pricing-grid {
    flex-direction: row;
  }

  .cards .card,
  .pricing-grid .price-card {
    flex: 1;
  }

  .timeline {
    flex-direction: row;
  }

  .timeline-item {
    flex: 1;
  }
}
