* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1b19;
  --muted: #6b625e;
  --accent: #c6503e;
  --accent-dark: #8c382c;
  --sand: #f4efe9;
  --moss: #c7d5c1;
  --clay: #e9d7c8;
  --midnight: #2b2a27;
  --white: #ffffff;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 24px 6vw 12px;
  position: relative;
  z-index: 2;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-wrap {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
}

.nav-wrap a {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.nav-wrap a:hover {
  color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 6vw 64px;
  background: var(--clay);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(198, 80, 62, 0.14);
  top: 12%;
  right: 8%;
}

.hero-content {
  max-width: 540px;
  z-index: 1;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-visual img {
  box-shadow: 0 20px 50px rgba(31, 27, 25, 0.18);
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--white);
}

.section.moss {
  background: var(--moss);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  background: var(--white);
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(31, 27, 25, 0.12);
}

.offset-card.moved {
  transform: translateX(18px);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
}

.callout {
  font-size: 1.3rem;
  font-weight: 600;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  background: var(--sand);
  border-radius: 18px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.testimonial {
  background: var(--white);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: 0 12px 30px rgba(31, 27, 25, 0.1);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.timeline-step span {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.form-section {
  background: var(--midnight);
  color: var(--white);
  border-radius: 28px;
  padding: 32px;
}

.form-section label {
  font-weight: 600;
}

.form-section input,
.form-section select,
.form-section textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  margin-top: 8px;
  font-size: 1rem;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.form-actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.85rem;
}

.footer {
  padding: 36px 6vw 48px;
  background: var(--midnight);
  color: var(--white);
  margin-top: auto;
}

.footer a {
  color: var(--white);
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 18px;
  background: var(--accent);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(31, 27, 25, 0.28);
  z-index: 4;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 320px;
  background: var(--white);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(31, 27, 25, 0.22);
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-weight: 600;
}

.cookie-actions button.primary {
  background: var(--accent);
  color: var(--white);
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-stack .lift {
  transform: translateX(-16px);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.85rem;
}

.contact-card {
  background: var(--white);
  padding: 22px;
  border-radius: 20px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal h2 {
  font-size: 1.4rem;
}

@media (min-width: 820px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .gallery,
  .image-stack {
    flex-direction: row;
  }

  .form-grid {
    flex-direction: row;
  }

  .form-grid > div {
    flex: 1;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }
}
