:root {
  color-scheme: light;
  --bg: #f7f3ee;
  --text: #1f1d1a;
  --muted: #6c635a;
  --accent: #8a6f55;
  --accent-dark: #2a2723;
  --soft: #efe8de;
  --soft-2: #e4d9cc;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.site-header {
  padding: 26px 0;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 18px;
}

.brand {
  font-size: 20px;
  letter-spacing: 1.2px;
  text-transform: lowercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.section {
  padding: 60px 0;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  background: var(--accent-dark);
  color: var(--white);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: column;
}

.split > div {
  flex: 1;
}

.hero-title {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 18px;
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--soft-2);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 30px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
}

.cta-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.cta-ghost {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  background: transparent;
}

.inline-link {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

.media-card {
  background: var(--white);
  padding: 18px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.quote {
  font-size: 20px;
  font-style: italic;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-item {
  background: var(--soft-2);
  padding: 16px 18px;
  border-radius: 16px;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: var(--white);
  padding: 18px;
  border-radius: 18px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.service-card img {
  width: 80px;
  height: 80px;
}

.service-price {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-card {
  background: var(--white);
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 14px;
  font-family: inherit;
}

.helper {
  font-size: 12px;
  color: var(--muted);
}

.footer {
  padding: 40px 0 80px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent-dark);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  background: var(--white);
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: none;
  align-items: center;
  gap: 14px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 20px;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: var(--white);
}

.cookie-reject {
  background: var(--soft-2);
  color: var(--text);
}

.page-hero {
  padding: 50px 0 20px;
}

.notice {
  background: var(--soft-2);
  padding: 18px;
  border-radius: 16px;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .service-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 18px);
  }

  .stats {
    flex-direction: row;
  }
}
