* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #5a5a5a;
  --accent: #e24b37;
  --accent-dark: #b93a2b;
  --cream: #f7f1e8;
  --sand: #efe5d5;
  --sky: #e7f1ff;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  --radius: 22px;
  --max: 1120px;
}

body {
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fffdf9;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6vw 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 18px;
  font-size: 15px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.cta-ghost {
  border: 1px solid var(--ink);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
}

.wrapper {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 6vw;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--cream);
}

.section-sand {
  background: var(--sand);
}

.section-sky {
  background: var(--sky);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.storyline p {
  font-size: 18px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero h1 {
  font-size: clamp(2.3rem, 6vw, 3.8rem);
  line-height: 1.1;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  border: 1px solid #e2d9cd;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.metric {
  background: #fff;
  padding: 20px 24px;
  border-radius: 16px;
  min-width: 160px;
  box-shadow: var(--shadow);
}

.metric strong {
  display: block;
  font-size: 26px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border-left: 4px solid var(--accent);
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.price-card span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.price {
  font-size: 32px;
  font-weight: 700;
}

.form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7cfc2;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-cta {
  text-decoration: underline;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  background: #1b1b1b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: var(--shadow);
}

.footer {
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #101010;
  color: #f7f2ec;
}

.footer a {
  color: inherit;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #f0e7dc;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-hero {
  padding: 70px 0 40px;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.list li {
  list-style: none;
  padding-left: 20px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

@media (min-width: 900px) {
  header {
    padding: 28px 8vw 10px;
  }

  .section {
    padding: 100px 0;
  }

  .split,
  .split.reverse {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }

  .split > div {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1;
    min-width: 240px;
  }

  .storyline {
    flex-direction: row;
    gap: 60px;
  }

  .storyline div {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
    gap: 40px;
  }
}
