* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --text: #1f1d1a;
  --muted: #5e5a54;
  --accent: #a35d2a;
  --accent-dark: #7a421d;
  --cream: #f6f1ea;
  --stone: #e8dfd4;
  --sage: #d7dfd6;
  --charcoal: #2f2a24;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: #fbfaf8;
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

header {
  padding: 26px 6vw 10px;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.2s ease;
}

.primary-btn {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}

.primary-btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.secondary-btn {
  border: 1px solid var(--accent);
  color: var(--accent);
}

.secondary-btn:hover {
  background: var(--accent);
  color: #fff;
}

main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px 5vw 80px;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(27, 21, 14, 0.06);
}

.split-section.reverse .split-media {
  order: -1;
}

.split-copy h1,
.split-copy h2 {
  font-weight: 700;
  line-height: 1.2;
}

.split-copy h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.split-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.split-copy p {
  color: var(--muted);
  margin-top: 12px;
}

.split-copy ul {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}

.split-copy li::before {
  content: "•";
  margin-right: 10px;
  color: var(--accent);
}

.highlight-panel {
  background: var(--stone);
}

.soft-panel {
  background: var(--cream);
}

.sage-panel {
  background: var(--sage);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}

.metric {
  padding: 14px 16px;
  background: #fff;
  border-radius: 16px;
  min-width: 140px;
  box-shadow: inset 0 0 0 1px rgba(54, 39, 26, 0.08);
}

.metric strong {
  font-size: 1.4rem;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(42, 29, 18, 0.08);
}

.service-card span {
  font-weight: 700;
  color: var(--accent);
}

.service-card p {
  color: var(--muted);
}

.testimonial {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  border-radius: 12px;
  margin-top: 16px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7c8b9;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 40px 6vw;
  background: var(--charcoal);
  color: #f7f3ee;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.footer small {
  color: rgba(255, 255, 255, 0.7);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(27, 20, 12, 0.22);
  padding: 8px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.sticky-cta span {
  font-size: 0.85rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 30;
  max-width: 340px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 36px rgba(28, 21, 14, 0.2);
  display: none;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (min-width: 900px) {
  .split-section {
    flex-direction: row;
    align-items: center;
    gap: 38px;
  }

  .split-section.reverse {
    flex-direction: row-reverse;
  }

  .split-copy,
  .split-media {
    flex: 1;
  }

  .service-grid {
    flex-direction: row;
  }

  .service-card {
    flex: 1;
  }
}
