* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #5c5c5c;
  --accent: #5a2d9b;
  --soft: #f4f1f8;
  --warm: #fff4ec;
  --line: #ded9e8;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6vw 16px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--accent);
}

main {
  display: flex;
  flex-direction: column;
  gap: 34px;
  padding: 0 6vw 80px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.split:first-of-type {
  border-top: none;
}

.split.reverse {
  flex-direction: column;
}

.split > div {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  margin-bottom: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #ffffff;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn.ghost {
  border-color: var(--line);
  color: var(--ink);
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  padding: 18px;
  border-radius: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.card.alt {
  background: var(--warm);
}

.price {
  font-weight: 700;
  color: var(--ink);
}

.quote {
  font-style: italic;
  color: var(--ink);
}

.service-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.service-form label {
  font-weight: 600;
  font-size: 0.9rem;
}

.service-form input,
.service-form select,
.service-form textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  width: 100%;
}

.service-form button {
  cursor: pointer;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  font-size: 0.85rem;
}

.accent-panel {
  background: var(--soft);
  padding: 24px;
  border-radius: 20px;
}

.background-panel {
  background: url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=900&q=80")
    center/cover no-repeat;
  padding: 24px;
  border-radius: 20px;
  color: #ffffff;
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.background-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 10, 24, 0.55);
  border-radius: 20px;
}

.background-panel > * {
  position: relative;
  z-index: 1;
}

.footer {
  padding: 40px 6vw 60px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 12px 30px rgba(32, 19, 54, 0.25);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(24, 16, 40, 0.15);
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    gap: 48px;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .nav-links {
    justify-content: flex-end;
  }
}
