* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f3ef;
  --ink: #1d1d1b;
  --muted: #5a5a55;
  --accent: #1f6e7a;
  --accent-soft: #cfe6ea;
  --sand: #e8dfd2;
  --stone: #d6d1c8;
  --shadow: rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  background: #fff;
  border-bottom: 1px solid var(--stone);
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.75rem;
  color: var(--muted);
  max-width: 200px;
  text-align: right;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 54px 6vw 30px;
  position: relative;
}

.hero-text {
  flex: 1 1 340px;
  max-width: 520px;
  padding: 36px;
  background: #fff;
  box-shadow: 0 16px 30px var(--shadow);
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  margin-top: 0;
  font-size: 2.4rem;
  line-height: 1.2;
}

.hero-media {
  flex: 1 1 380px;
  min-height: 360px;
  background: var(--stone);
  position: relative;
  transform: translateY(20px);
  box-shadow: 0 18px 36px var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--ink);
}

.btn.primary {
  background: var(--ink);
  color: #fff;
}

.btn.soft {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
}

.section {
  padding: 42px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.asym {
  background: #fff;
  margin: 0 6vw;
  box-shadow: 0 18px 30px var(--shadow);
  transform: translateY(-18px);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 300px;
}

.panel.image {
  min-height: 260px;
  background: var(--sand);
}

.panel.card {
  background: var(--accent-soft);
  padding: 26px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 220px;
  background: #fff;
  box-shadow: 0 12px 20px var(--shadow);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card .media {
  min-height: 150px;
  background: var(--stone);
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  box-shadow: 0 14px 24px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid var(--stone);
  border-radius: 8px;
  font-size: 1rem;
}

button {
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.highlight {
  background: var(--sand);
  padding: 26px;
  border-left: 6px solid var(--accent);
}

.inline-cta {
  font-weight: 600;
  color: var(--accent);
}

.footer {
  margin-top: auto;
  background: #1c1c1c;
  color: #f2f2ef;
  padding: 32px 6vw 56px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.footer .note {
  color: #d4d1c8;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 22px var(--shadow);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--stone);
  padding: 16px;
  box-shadow: 0 16px 24px var(--shadow);
  max-width: 320px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.banner-space {
  height: 14px;
}

.page-title {
  font-size: 2rem;
  margin-top: 0;
}

.legal {
  max-width: 820px;
}

.centered {
  max-width: 760px;
}

.image-band {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.image-tile {
  flex: 1 1 220px;
  min-height: 180px;
  background: var(--stone);
}

.contact-block {
  background: #fff;
  padding: 24px;
  box-shadow: 0 10px 20px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 10px 20px var(--shadow);
}

.table-row .cell {
  flex: 1 1 220px;
}

.bg-split {
  background: linear-gradient(120deg, var(--sand) 0%, var(--sand) 55%, #fff 55%, #fff 100%);
}

@media (max-width: 820px) {
  .hero {
    padding-top: 26px;
  }
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .ad-label {
    text-align: left;
    max-width: none;
  }
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
