* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #5f666f;
  --accent: #e96f4d;
  --accent-dark: #c4573a;
  --paper: #f5f0ea;
  --mist: #f0f3f6;
  --shadow: rgba(18, 22, 28, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
}

.nav-links a {
  opacity: 0.85;
}

.nav-links a:hover {
  opacity: 1;
}

.hero {
  padding: 30px 6vw 60px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content,
.split .media {
  flex: 1 1 320px;
  min-width: 280px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: var(--muted);
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 12px 0 18px;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

p {
  color: var(--muted);
  margin-bottom: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.button:hover {
  background: var(--accent-dark);
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button.secondary:hover {
  background: rgba(233, 111, 77, 0.1);
}

.section {
  padding: 70px 6vw;
  position: relative;
  overflow: hidden;
}

.section.mist {
  background: var(--mist);
}

.section.paper {
  background: var(--paper);
}

.layered-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--shadow);
}

.stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 150px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px var(--shadow);
}

.services {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  align-items: center;
  box-shadow: 0 16px 30px var(--shadow);
}

.service-card img {
  width: 140px;
  height: 110px;
  object-fit: cover;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  border-left: 4px solid var(--accent);
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonial {
  flex: 1 1 260px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 12px 24px var(--shadow);
}

.form-wrapper {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 38px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7dbe0;
  font-size: 1rem;
}

.cta-inline {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.footer {
  padding: 40px 6vw 60px;
  background: #141414;
  color: #f2f2f2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  margin-top: 12px;
}

.footer-links a {
  color: #f2f2f2;
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  padding: 12px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 16px 30px var(--shadow);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 320px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 16px 30px var(--shadow);
  display: none;
  z-index: 30;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  padding: 40px 6vw 20px;
}

.content-narrow {
  max-width: 760px;
}

.policy-section {
  padding: 40px 6vw;
}

.policy-section ul {
  margin-left: 18px;
  margin-top: 10px;
  color: var(--muted);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px var(--shadow);
}

@media (max-width: 860px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
