/* Base */
:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #5f5a55;
  --accent: #b06a5b;
  --accent-deep: #7e3f33;
  --soft: #f7f2ef;
  --sand: #efe6e1;
  --edge: #ded1c9;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6vw 10px;
}

.brand {
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-color: var(--accent);
}

.section {
  padding: 60px 6vw;
  position: relative;
}

.section.soft {
  background: var(--soft);
}

.section.sand {
  background: var(--sand);
}

.section.asymmetric {
  padding-top: 90px;
  padding-bottom: 90px;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 20px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero .hero-media {
  min-height: 280px;
  border-radius: 24px;
  background: url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=1400&q=80")
    center/cover no-repeat;
  box-shadow: var(--shadow);
}

.hero .hero-card {
  background: var(--white);
  padding: 28px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-top: -40px;
  margin-left: auto;
  max-width: 520px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  border: 1px solid transparent;
}

.button.outline {
  background: transparent;
  color: var(--accent-deep);
  border-color: var(--accent-deep);
}

.offset-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  transform: translateX(8%);
}

.offset-card.alt {
  transform: translateX(-8%);
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-strip img {
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split-row .text-block {
  flex: 1;
}

.split-row .visual-block {
  flex: 1;
  position: relative;
}

.visual-card {
  background: var(--white);
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: absolute;
  bottom: -20px;
  right: -10px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-item .price {
  font-weight: 600;
  color: var(--accent-deep);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 22px;
  border-left: 4px solid var(--accent);
  background: var(--white);
  border-radius: 12px;
}

.quote {
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  font-style: italic;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--edge);
  background: var(--white);
  font-size: 0.9rem;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--edge);
  font-family: inherit;
  font-size: 1rem;
}

.footer {
  padding: 40px 6vw 60px;
  border-top: 1px solid var(--edge);
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 18px;
  background: var(--accent-deep);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 320px;
  background: var(--white);
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  z-index: 25;
  display: none;
  gap: 12px;
  flex-direction: column;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--edge);
  background: var(--white);
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.page-hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-hero img {
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.contact-card {
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: flex-start;
  }

  .hero .hero-media {
    flex: 1;
  }

  .hero .hero-card {
    flex: 1;
    margin-top: 40px;
  }

  .split-row {
    flex-direction: row;
    align-items: center;
  }

  .offset-block {
    flex-direction: row;
  }

  .image-strip {
    flex-direction: row;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    flex: 1 1 260px;
  }

  .page-hero {
    flex-direction: row;
    align-items: center;
  }
}
