* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d2a24;
  --soft-ink: #2e3f38;
  --accent: #1e7b69;
  --accent-2: #0f4a5c;
  --sand: #f5f1ea;
  --mist: #e7efe9;
  --stone: #d6ddd6;
  --sky: #dfe8f0;
  --shadow: rgba(20, 40, 33, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 6vw;
  background: #fff;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 1.1rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--soft-ink);
  max-width: 240px;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.section {
  padding: 64px 6vw;
  position: relative;
}

.section.compact {
  padding: 36px 6vw;
}

.section-header {
  max-width: 620px;
}

.section-title {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.lead {
  font-size: 1.1rem;
  color: var(--soft-ink);
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.split > * {
  flex: 1 1 280px;
}

.card-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 12px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 220px;
}

.card img {
  border-radius: 14px;
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--stone);
}

.card .price {
  font-weight: 700;
  color: var(--accent-2);
}

.ghost-block {
  background: var(--mist);
  padding: 28px;
  border-radius: 22px;
}

.offset {
  margin-top: -40px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 18px 40px var(--shadow);
}

.media-box {
  background: var(--stone);
  border-radius: 20px;
  overflow: hidden;
}

.media-box img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  background: var(--stone);
}

.inline-image {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.inline-image img {
  width: 260px;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  background: var(--stone);
}

.service-select {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: #fff;
  cursor: pointer;
  font-size: 0.95rem;
}

.service-button.active {
  background: var(--accent);
  color: #fff;
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 14px 36px var(--shadow);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c5d1c8;
  font-size: 1rem;
  font-family: inherit;
}

.form-grid button {
  background: var(--accent-2);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
}

.pill-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  background: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  border: 1px solid #cbd8cf;
  font-size: 0.9rem;
}

.image-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.image-strip img {
  flex: 1 1 220px;
  height: 160px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--stone);
}

.cta-block {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-link {
  color: var(--accent-2);
  text-decoration: underline;
}

.footer {
  background: #fff;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid #e1e6e0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--soft-ink);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 12px 28px var(--shadow);
  z-index: 10;
}

.sticky-cta button {
  background: #fff;
  color: var(--accent);
  border: none;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 30px var(--shadow);
  max-width: 320px;
  z-index: 20;
}

.cookie-banner button {
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: var(--stone);
  color: var(--ink);
}

.bg-sky {
  background: var(--sky);
}

.bg-mist {
  background: var(--mist);
}

.bg-white {
  background: #fff;
}

.bg-image {
  background-image: linear-gradient(rgba(15, 40, 34, 0.55), rgba(15, 40, 34, 0.55)), url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-image .lead,
.bg-image .muted {
  color: #f1f5f3;
}

.centered {
  text-align: center;
}

.narrow {
  max-width: 720px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
}

.contact-block strong {
  font-weight: 600;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

.hero {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-text {
  flex: 1 1 300px;
}

.hero-image {
  flex: 1 1 280px;
  background: var(--stone);
  border-radius: 26px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mist);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.muted {
  color: var(--soft-ink);
}

.spacer {
  height: 18px;
}

.visible {
  display: block;
}

.hidden {
  display: none;
}
