:root {
  --ink: #1f2328;
  --muted: #5d6670;
  --accent: #d97728;
  --accent-dark: #b75d18;
  --surface: #f6f2ed;
  --surface-strong: #efe7de;
  --line: #e2d7cc;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 6vw 56px;
}

.hero-split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 54px 6vw;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--muted);
}

.headline {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.1;
  margin: 0;
}

.subhead {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
}

.inline-link {
  font-weight: 600;
  color: var(--accent);
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 6px;
}

.panel {
  background: var(--surface);
}

.panel-strong {
  background: var(--surface-strong);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--white);
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step-number {
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.quote {
  font-style: italic;
  margin: 0;
}

.callout {
  border-left: 4px solid var(--accent);
  padding-left: 18px;
}

.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 40px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 6;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 8px 12px;
  background: var(--white);
  cursor: pointer;
}

.cookie-actions button.accept {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.muted {
  color: var(--muted);
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface-strong);
  font-size: 0.85rem;
}

.center {
  text-align: center;
}

@media (min-width: 860px) {
  .hero-split,
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .hero-split > * ,
  .split > * {
    flex: 1;
  }

  .form-actions {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
