:root {
  --ink: #1b1a18;
  --ink-soft: #4b4844;
  --sand: #f4efe9;
  --stone: #e6e0d8;
  --ocean: #0f1d2d;
  --accent: #d1784f;
  --accent-dark: #b15e3c;
  --mint: #d8ebe6;
  --sky: #e7f1f7;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

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

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

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

header {
  padding: 24px 0 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.hero {
  background: var(--sand);
  position: relative;
  overflow: hidden;
  padding: 56px 0 72px;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(27, 26, 24, 0.08);
  max-width: 520px;
}

.hero-image {
  margin-left: auto;
  max-width: 520px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(15, 29, 45, 0.25);
  transform: translateY(10px);
}

.section {
  padding: 64px 0;
  position: relative;
}

.section.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.alt {
  background: var(--sky);
}

.section.muted {
  background: var(--stone);
}

.section .label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.offset-block {
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(27, 26, 24, 0.08);
  transform: translateX(0);
}

.offset-image {
  border-radius: 24px;
  overflow: hidden;
  transform: translateX(0);
}

.story-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--mint);
  border-radius: 22px;
  padding: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--ocean);
  color: var(--white);
  font-size: 0.85rem;
}

.inline-cta {
  font-weight: 600;
}

.testimonial {
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(27, 26, 24, 0.08);
}

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

.service-card {
  background: var(--white);
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 18px 40px rgba(27, 26, 24, 0.1);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: var(--ocean);
}

.button.ghost {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.form-wrap {
  background: var(--white);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(27, 26, 24, 0.12);
}

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

input, select, textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d0cbc3;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 36px 0;
  background: var(--ocean);
  color: var(--white);
}

.footer a {
  color: var(--white);
}

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

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  box-shadow: 0 16px 40px rgba(15, 29, 45, 0.3);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 20px 50px rgba(27, 26, 24, 0.18);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.badge-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge {
  background: var(--white);
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(27, 26, 24, 0.08);
}

.list-split {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.media-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.layered {
  position: relative;
}

.layered::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 30px;
  width: 140px;
  height: 140px;
  background: var(--accent);
  opacity: 0.18;
  border-radius: 24px;
  z-index: 0;
}

.layered > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 860px) {
  .hero-layout {
    flex-direction: row;
    align-items: center;
  }

  .section.split {
    flex-direction: row;
    align-items: center;
  }

  .cards {
    flex-direction: row;
  }

  .service-card {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

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

  .badge-row {
    flex-direction: row;
  }

  .media-block {
    flex-direction: row;
    align-items: center;
  }

  .offset-block {
    transform: translateX(-40px);
  }

  .offset-image {
    transform: translateX(40px);
  }
}
