* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1d1d;
  --muted: #5c5c5c;
  --sand: #f6f1eb;
  --mist: #eef1f4;
  --olive: #4a5b50;
  --peach: #f2d9c9;
  --white: #ffffff;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-nav {
  padding: 28px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--olive);
}

.split-section {
  padding: 70px 6vw;
  position: relative;
}

.split-section.layered::before {
  content: "";
  position: absolute;
  inset: 14px 0 auto 0;
  height: 70%;
  background: var(--sand);
  z-index: 0;
}

.split-section.alt::before {
  background: var(--mist);
}

.split {
  display: flex;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-media {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--muted);
}

h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  line-height: 1.2;
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--olive);
  color: var(--white);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

.btn.outline {
  background: transparent;
  color: var(--olive);
  border-color: var(--olive);
}

.inline-link {
  font-weight: 600;
  color: var(--olive);
}

.feature-list,
.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item,
.service-item {
  padding: 14px 16px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.service-item span {
  font-weight: 600;
}

.badge {
  background: var(--peach);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  align-self: flex-start;
}

.form-card {
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 0.95rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  padding: 40px 6vw;
  background: #121212;
  color: #f4f4f4;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--olive);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 22px;
  bottom: 22px;
  background: var(--white);
  color: var(--ink);
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--olive);
  color: var(--white);
}

.cookie-reject {
  background: #d5d5d5;
  color: var(--ink);
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-card {
  background: var(--sand);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal {
  padding: 60px 6vw;
}

.legal h1 {
  margin-bottom: 20px;
}

.legal h2 {
  margin-top: 26px;
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 22px;
    right: auto;
  }
}
