@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #f6f2ee;
  --ink: #2b2b2b;
  --accent: #b54b3a;
  --accent-dark: #8d3a2d;
  --muted: #6a625e;
  --paper: #ffffff;
  --sand: #ede4dd;
  --sage: #dfe6da;
  --stone: #c8c0b8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 40px 20px 80px;
}

header {
  padding: 20px 24px;
  background: var(--paper);
  border-bottom: 1px solid var(--stone);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid var(--stone);
  border-radius: 999px;
  background: var(--sand);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--paper);
  padding: 28px;
  border-radius: 20px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -16px 40% -16px -12px;
  background: var(--sage);
  z-index: 0;
  border-radius: 24px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.hero-visual {
  position: relative;
  z-index: 1;
  background: #dcd2c9;
  border-radius: 18px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: var(--ink);
}

.btn.ghost {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.asymmetric-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.asymmetric-card {
  background: var(--paper);
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.offset-left {
  margin-left: 0;
}

.offset-right {
  margin-right: 0;
}

.image-frame {
  background: #e0d6cd;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: var(--paper);
  border-radius: 16px;
  border: 1px solid var(--stone);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  background: #d8d1c8;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split .panel {
  flex: 1;
  background: var(--paper);
  padding: 22px;
  border-radius: 16px;
}

.panel.highlight {
  background: var(--sand);
}

.form-shell {
  background: var(--paper);
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  font-family: inherit;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 18px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.sticky-cta button {
  background: var(--accent);
  border: none;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.footer {
  background: var(--paper);
  padding: 28px 20px 60px;
  border-top: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2a2623;
  color: #fff;
  padding: 16px 20px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: #fff;
  color: #2a2623;
}

.cookie-actions .reject {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

@media (min-width: 860px) {
  main {
    padding: 60px 8vw 110px;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
    gap: 32px;
  }

  .hero-content {
    flex: 1.1;
  }

  .hero-visual {
    flex: 1;
  }

  .hero::after {
    inset: -20px 48% -20px -18px;
  }

  .asymmetric-row {
    flex-direction: row;
    align-items: stretch;
  }

  .offset-left {
    margin-left: -40px;
  }

  .offset-right {
    margin-right: -40px;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 18px);
  }

  .split {
    flex-direction: row;
  }
}
