:root {
  color-scheme: light;
  --text: #1a1a1f;
  --muted: #5b5b66;
  --accent: #a93a5f;
  --accent-dark: #7e2b46;
  --soft: #f5f1ef;
  --dark: #1c1b22;
  --light: #ffffff;
  --panel: #f9f7f4;
  --border: rgba(26, 26, 31, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: #f2f0ee;
}

img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-mark {
  font-size: 20px;
  font-weight: 700;
}

.brand-note {
  font-size: 14px;
  color: var(--muted);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.site-nav a {
  font-size: 14px;
  color: var(--muted);
}

.site-nav .nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--text);
  color: var(--light);
}

.sticky-cta {
  position: sticky;
  top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--light);
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  margin-bottom: 18px;
  z-index: 5;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
  padding: 28px;
  border-radius: 24px;
  background: var(--panel);
}

.split.reverse {
  flex-direction: column;
}

.split-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-split {
  background: var(--light);
}

.light-panel {
  background: #fefcf9;
}

.soft-panel {
  background: #f7f1f3;
}

.dark-panel {
  background: var(--dark);
  color: var(--light);
}

.dark-panel .button.ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--light);
}

.accent-panel {
  background: #f0e6ea;
}

.neutral-panel {
  background: #eceae8;
}

.muted-panel {
  background: #f8f3f1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 18px;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.dark-panel p,
.dark-panel .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  color: var(--light);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.ghost {
  background: transparent;
  border-color: var(--border);
  color: inherit;
}

.button.subtle {
  background: #efe7ea;
  color: var(--text);
}

.link-cta {
  font-weight: 600;
  color: var(--accent);
}

.hero-stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-stats div {
  background: #f0eaef;
  padding: 12px 16px;
  border-radius: 14px;
}

.hero-stats strong {
  display: block;
  font-size: 18px;
}

.process {
  padding-left: 18px;
  line-height: 1.6;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 190px;
  background: var(--light);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.quote-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-style: italic;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist li::before {
  content: "•";
  color: var(--accent);
  margin-right: 8px;
}

.service-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--light);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.service-form input,
.service-form select,
.service-form textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: inherit;
}

.service-form button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 360px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  display: none;
  gap: 12px;
  flex-direction: column;
  z-index: 10;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

@media (min-width: 900px) {
  .site-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .split-text,
  .split-media {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .site-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
