* {
  box-sizing: border-box;
}

:root {
  --ink: #1f1f24;
  --muted: #5a5f6b;
  --sand: #f4f1ec;
  --stone: #e6e0d8;
  --emerald: #145a32;
  --sky: #e7f0f7;
  --clay: #d8c7b6;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #faf9f7;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  padding: 18px 6vw;
  background: #ffffff;
  border-bottom: 1px solid var(--stone);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 36px 6vw 80px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > .pane {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero {
  background: var(--sand);
  padding: 26px;
  border-radius: 24px;
}

.bg-contact {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: var(--ink);
}

.bg-panel {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 18px;
}

.hero h1 {
  font-size: 2.3rem;
  margin-bottom: 12px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 18px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.outline {
  background: transparent;
  color: var(--ink);
}

.inline-link {
  color: var(--emerald);
  text-decoration: underline;
}

.img-wrap {
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  height: 100%;
  min-height: 240px;
}

.card-image {
  height: 140px;
  min-height: auto;
}

.card-image .img-cover {
  height: 140px;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.layered {
  position: relative;
  padding: 30px;
  background: var(--sky);
  border-radius: 24px;
}

.layered .card {
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  margin-top: -22px;
}

.service-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  color: var(--emerald);
}

.pill {
  display: inline-flex;
  background: var(--clay);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--stone);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cfd3d9;
  border-radius: 12px;
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--stone);
  border-radius: 999px;
  padding: 8px 14px;
  display: flex;
  gap: 8px;
  align-items: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.sticky-cta span {
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer {
  padding: 36px 6vw 60px;
  background: #111216;
  color: #ffffff;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.footer-col a {
  color: #ffffff;
}

.disclaimer {
  margin-top: 18px;
  font-size: 0.85rem;
  color: #d7d7d7;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--stone);
  padding: 16px;
  border-radius: 16px;
  max-width: 320px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .btn {
  font-size: 0.85rem;
  padding: 8px 12px;
}

.content-block {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--stone);
}

.meta-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
}

.notice {
  background: var(--sand);
  border-radius: 16px;
  padding: 16px;
  color: var(--muted);
}

@media (max-width: 720px) {
  .sticky-cta {
    left: 20px;
    right: auto;
  }
}
