@font-face {
  font-family: "InterLocal";
  src: local("Inter"), local("Arial");
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #1b1c22;
  --muted: #5a5f6b;
  --accent: #e54b4b;
  --accent-dark: #b83333;
  --surface: #f5f2ed;
  --surface-alt: #fff7f3;
  --line: #e0d7cf;
  --shadow: 0 18px 40px rgba(27, 28, 34, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "InterLocal", system-ui, sans-serif;
  color: var(--ink);
  background: #faf8f5;
  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;
  gap: 0;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-bottom-color: var(--accent);
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.cta-primary:hover {
  background: var(--accent-dark);
}

.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 600;
  background: transparent;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}

.section {
  padding: 64px 6vw;
  position: relative;
}

.section.alt {
  background: var(--surface);
}

.section.accent {
  background: var(--surface-alt);
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.offset-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.floating-note {
  position: absolute;
  top: -32px;
  right: 8vw;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
}

.cta-inline {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.78rem;
  border: 1px solid var(--line);
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.overlap {
  margin-top: -48px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.9rem;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.radio-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.radio-card input {
  margin-top: 4px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.form-grid textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 40px 6vw 60px;
  background: #111116;
  color: #f5f2ed;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
  margin-top: 14px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: none;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.15;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.stat {
  background: #fff;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  min-width: 150px;
}

.stat strong {
  display: block;
  font-size: 1.5rem;
}

.quote {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.map-box {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  padding: 18px;
}

@media (min-width: 900px) {
  .split,
  .split-row {
    flex-direction: row;
    align-items: center;
  }

  .split > * {
    flex: 1;
  }

  .split-row .narrow {
    flex: 0.9;
  }

  .split-row .wide {
    flex: 1.1;
  }

  .two-col {
    flex-direction: row;
  }

  .hero h1 {
    font-size: 3rem;
  }
}
