*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --text: #1f1f1f;
  --muted: #575c66;
  --accent: #d96b2b;
  --accent-dark: #b3531c;
  --bg: #f7f3ef;
  --bg-alt: #ffffff;
  --bg-ink: #1e2a2f;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

header {
  padding: 24px 6vw;
  background: var(--bg-alt);
  border-bottom: 1px solid #e3ddd6;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
}

.cta-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-btn {
  background: var(--accent);
  color: #fff;
}

.cta-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.secondary-btn {
  background: transparent;
  border: 1px solid #d1c7be;
  color: var(--text);
}

.section {
  padding: 64px 6vw;
}

.section.alt {
  background: var(--bg-alt);
}

.section.dark {
  background: var(--bg-ink);
  color: #f3f1ee;
}

.section.dark .muted {
  color: #c9c7c3;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-media {
  flex: 1;
  background: #f0eae4;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.muted {
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #efe7df;
  color: #8a5a3a;
  font-size: 0.85rem;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat-card {
  flex: 1 1 160px;
  background: var(--bg-alt);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #e5ded6;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #ece4db;
}

.service-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-dark);
}

.testimonial {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid #e9dfd5;
}

.layered {
  position: relative;
  overflow: hidden;
}

.layered::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: rgba(217, 107, 43, 0.12);
  border-radius: 50%;
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid #eadfd5;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8cfc6;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-cta {
  color: var(--accent-dark);
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

footer {
  padding: 40px 6vw 60px;
  background: #10171b;
  color: #d7d5d1;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-grid a {
  color: #d7d5d1;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f1f1f;
  color: #fff;
  padding: 16px 6vw;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #f1b06b;
}

.cookie-reject {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
