* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #141414;
  --muted: #5d5d5d;
  --cream: #f6f1ea;
  --accent: #b56b2e;
  --accent-dark: #7a441b;
  --sage: #e6efe7;
  --blush: #f7e5dd;
  --night: #1f1f1f;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
  overflow-x: hidden;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6%;
  background: #ffffff;
}

.nav-left {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  z-index: 40;
}

.section {
  padding: 72px 6%;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

.headline {
  font-size: 2.4rem;
  line-height: 1.2;
}

.subhead {
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.btn-ghost {
  background: var(--night);
  color: #ffffff;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
  height: 160px;
  object-fit: cover;
}

.tag {
  background: var(--sage);
  color: #1f3d2c;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  width: fit-content;
}

.highlight {
  background: var(--cream);
}

.accent {
  background: var(--blush);
}

.dark {
  background: var(--night);
  color: #fdfbf8;
}

.dark .subhead,
.dark .nav-links a {
  color: #c7c7c7;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #ededed;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 520px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  font-size: 0.95rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 40px 6%;
  background: #121212;
  color: #f5f5f5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: #bdbdbd;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 6%;
  background: #ffffff;
  border-top: 1px solid #e3e3e3;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.small-text {
  font-size: 0.85rem;
  color: var(--muted);
}

@media (min-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: row;
  }

  .headline {
    font-size: 3rem;
  }

  .card-row,
  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .service-item {
    flex: 1 1 240px;
  }
}
