* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1e1c1a;
  --muted: #6b6762;
  --sand: #f5f1ec;
  --stone: #e6dfd6;
  --clay: #c6a48b;
  --forest: #2f3a34;
  --accent: #b46b4a;
  --sky: #d9e6ea;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fbfaf8;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0;
}

.nav-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.3em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links a {
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 64px 0;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-media {
  flex: 1;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-content h1,
.split-content h2 {
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
}

.split-content p {
  margin: 0;
  color: var(--muted);
}

.hero {
  background: var(--sand);
}

.hero h1 {
  font-size: 40px;
}

.tagline {
  font-size: 18px;
  color: var(--forest);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.pane {
  background: var(--stone);
}

.pane-alt {
  background: var(--sky);
}

.pane-dark {
  background: var(--forest);
  color: #f5f1ec;
}

.pane-dark p {
  color: #e4ded7;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--stone);
  font-size: 14px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(30, 28, 26, 0.08);
}

.card img {
  border-radius: 12px;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  border: 1px solid var(--stone);
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent);
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  list-style: none;
  margin: 0;
}

.quote {
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 18px 35px rgba(30, 28, 26, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 16px;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: rgba(245, 241, 236, 0.96);
  border-top: 1px solid var(--stone);
  padding: 14px 0;
  z-index: 5;
}

.sticky-cta .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  left: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(30, 28, 26, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  padding: 48px 0;
  background: var(--sand);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
}

.divider {
  height: 1px;
  background: var(--stone);
  margin: 20px 0;
}

.meta {
  font-size: 14px;
  color: var(--muted);
}

.map-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(30, 28, 26, 0.1);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  color: var(--forest);
}

.mini-icon {
  width: 32px;
  height: 32px;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .hero h1 {
    font-size: 54px;
  }

  .cards {
    flex-direction: row;
  }

  .pricing-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-card {
    flex: 1 1 240px;
  }

  .cookie-banner {
    max-width: 560px;
    left: auto;
  }
}
