* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f7f4ee;
  --ink: #1f1c19;
  --muted: #6b6056;
  --accent: #b0562b;
  --accent-soft: #f1d7c7;
  --dark: #1c1a17;
  --card: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 6vw;
}

.nav-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.brand {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--ink);
}

.hero-split {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 12px 6vw 48px;
}

.hero-split .hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 46px 6vw;
}

.split-section.reverse {
  background: var(--card);
}

.split-section .split-content,
.split-section .split-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tag {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 0.8rem;
  font-weight: 600;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.quote {
  background: var(--dark);
  color: #fff;
  padding: 24px;
  border-radius: 18px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  background: var(--card);
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e7dfd6;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.form-shell {
  background: var(--dark);
  color: #fff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4cbc0;
  font-size: 1rem;
  font-family: inherit;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  z-index: 30;
}

.page-footer {
  padding: 30px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid #e3d9cf;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: #efe7de;
  font-size: 0.85rem;
}

.split-micro {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-card {
  background: var(--card);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e7dfd6;
}

.legal-section {
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid #1f1c19;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

@media (min-width: 900px) {
  .nav-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero-split {
    flex-direction: row;
    align-items: center;
  }

  .hero-split .hero-copy,
  .hero-split .hero-visual {
    flex: 1;
  }

  .split-section {
    flex-direction: row;
    align-items: center;
  }

  .split-section.reverse {
    flex-direction: row-reverse;
  }

  .split-section .split-content,
  .split-section .split-visual {
    flex: 1;
  }

  .split-section .split-visual {
    align-items: flex-end;
  }

  .pricing-list {
    flex-direction: row;
  }
}
