* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1c1a;
  --muted: #5b5a57;
  --accent: #7b3f2a;
  --accent-soft: #f4e7df;
  --sage: #e5eee7;
  --stone: #f7f4ef;
  --dark: #2d2a26;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(33, 24, 20, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--stone);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.top-nav {
  padding: 24px 0 10px;
}

.top-nav .nav-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  background: var(--accent);
  color: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 20px rgba(123, 63, 42, 0.24);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  box-shadow: none;
}

.btn.light {
  background: var(--white);
  color: var(--dark);
  box-shadow: var(--shadow);
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 42px 0;
}

.split-section.reverse {
  flex-direction: column-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  padding-top: 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
}

.section-tone {
  background: var(--white);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.section-contrast {
  background: var(--sage);
  border-radius: 28px;
  padding: 28px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  padding: 18px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.service-card img {
  border-radius: 14px;
}

.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.testimonial {
  background: var(--dark);
  color: var(--white);
  padding: 22px;
  border-radius: 20px;
}

.form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ded9d4;
  font-size: 0.95rem;
  font-family: inherit;
}

.footer {
  padding: 32px 0 80px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  padding: 20px;
  border-radius: 20px;
  background: var(--accent-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  padding: 18px 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  width: min(680px, 92%);
  display: none;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.background-panel {
  background: linear-gradient(115deg, rgba(123, 63, 42, 0.12), rgba(255, 255, 255, 0.8)),
    url("https://images.unsplash.com/photo-1503437313881-503a91226402?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 34px;
  color: var(--dark);
}

.section-note {
  font-size: 0.95rem;
  color: var(--muted);
}

@media (min-width: 900px) {
  .top-nav .nav-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .split-section {
    flex-direction: row;
    gap: 40px;
  }

  .split-section.reverse {
    flex-direction: row-reverse;
  }

  .service-list {
    flex-direction: row;
  }

  .service-card {
    flex: 1;
  }
}
