* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f1f1f;
  --muted: #5c5c5c;
  --soft: #f2efe9;
  --accent: #21614c;
  --accent-strong: #123b2f;
  --sand: #f7f4f0;
  --coral: #e56d52;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 24px 6vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.nav-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand {
  font-size: 20px;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: var(--accent-strong);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

main {
  flex: 1;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 72px 6vw;
  background: #ffffff;
}

.split-section.alt {
  background: var(--sand);
}

.split-section.deep {
  background: var(--accent-strong);
  color: #ffffff;
}

.split-section.deep a {
  color: #ffffff;
}

.split-content,
.split-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--coral);
  font-weight: 600;
}

.headline {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin: 0;
}

.subhead {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}

.deep .subhead {
  color: rgba(255, 255, 255, 0.78);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(33, 97, 76, 0.1);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 600;
}

.button,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--accent);
  transition: transform 0.2s ease;
}

.button {
  background: var(--accent);
  color: #ffffff;
}

.button-outline {
  background: transparent;
  color: var(--accent);
}

.button:hover,
.button-outline:hover {
  transform: translateY(-2px);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.service-card strong {
  font-size: 18px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.testimonial {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.deep .testimonial {
  background: rgba(255, 255, 255, 0.1);
}

.note {
  background: rgba(229, 109, 82, 0.12);
  color: var(--accent-strong);
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.form-card label {
  font-size: 14px;
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 15px;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--soft);
  border: 1px dashed rgba(0, 0, 0, 0.2);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

footer {
  padding: 48px 6vw;
  background: #141414;
  color: #ffffff;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  left: 16px;
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hidden {
  display: none !important;
}

.hero-image {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(33, 97, 76, 0.08), rgba(229, 109, 82, 0.08));
  padding: 20px;
}

.hero-image img {
  border-radius: 18px;
}

.image-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  padding: 12px;
}

.list-split {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--muted);
}

.list-item span {
  font-weight: 700;
  color: var(--accent-strong);
}

.float-panel {
  border-radius: 18px;
  background: #ffffff;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.tinted {
  background: var(--soft);
  border-radius: 24px;
  padding: 24px;
}

@media (min-width: 900px) {
  .nav-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .split-section {
    flex-direction: row;
    align-items: center;
  }

  .split-section.reverse {
    flex-direction: row-reverse;
  }

  .split-content,
  .split-media {
    flex: 1;
  }

  .form-row {
    flex-direction: row;
  }

  .form-row > div {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
