* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1c1c;
  --muted: #6b6b6b;
  --accent: #f1592a;
  --accent-dark: #c8431a;
  --soft: #f6f3ef;
  --deep: #161616;
  --sand: #efe7dd;
  --leaf: #0f3a2e;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: #ffffff;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px 24px;
  align-items: center;
}

.split-section.reverse {
  flex-direction: column-reverse;
}

.split-section .split-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 540px;
}

.split-section .split-media {
  width: 100%;
  max-width: 520px;
}

.split-section h1,
.split-section h2 {
  font-size: 2rem;
  line-height: 1.2;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn.dark {
  background: var(--deep);
}

.subtle-link {
  font-weight: 600;
  color: var(--accent);
}

.bg-soft {
  background: var(--soft);
}

.bg-deep {
  background: var(--deep);
  color: #ffffff;
}

.bg-sand {
  background: var(--sand);
}

.bg-leaf {
  background: var(--leaf);
  color: #ffffff;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dedede;
  font-size: 0.9rem;
}

.quote {
  font-style: italic;
  font-size: 1.05rem;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e4e4e4;
}

.service-card .price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

.inline-image {
  border-radius: 20px;
  overflow: hidden;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e3e3e3;
}

.testimonial span {
  font-weight: 600;
}

.selection-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.selection-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #e1e1e1;
  background: #ffffff;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid #e1e1e1;
  background: #ffffff;
}

.form-card label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d4d4d4;
  font-size: 0.95rem;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  align-self: flex-end;
  margin-right: 24px;
  z-index: 20;
}

.footer {
  margin-top: auto;
  padding: 32px 24px;
  background: #111111;
  color: #f8f8f8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border: 1px solid #d7d7d7;
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-page {
  padding: 64px 24px;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 900px) {
  .split-section {
    flex-direction: row;
    justify-content: space-between;
  }

  .split-section.reverse {
    flex-direction: row-reverse;
  }

  .split-section h1,
  .split-section h2 {
    font-size: 2.6rem;
  }

  .service-grid {
    flex-direction: row;
  }

  .service-card,
  .testimonial,
  .selection-card {
    flex: 1;
  }

  .selection-list {
    flex-direction: row;
  }

  .contact-blocks {
    flex-direction: row;
  }
}
