* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f6f3;
  --ink: #1f2421;
  --muted: #5c6b63;
  --accent: #2f6f6d;
  --accent-dark: #1f4b49;
  --soft: #e3e6e2;
  --warm: #f0ede7;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #ffffff;
  border-bottom: 1px solid var(--soft);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.ad-label {
  font-size: 0.8rem;
  color: var(--accent-dark);
  padding: 6px 10px;
  border: 1px solid var(--accent-dark);
  border-radius: 999px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero {
  padding: 60px 0;
}

.hero-copy h1 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-copy p {
  color: var(--muted);
  margin-bottom: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-align: center;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--warm);
}

.section h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  margin-bottom: 14px;
}

.section p {
  color: var(--muted);
  margin-bottom: 12px;
}

.image-frame {
  background: #d9ded9;
  border-radius: 12px;
  overflow: hidden;
  min-height: 240px;
  display: flex;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-card {
  background: #ffffff;
  border: 1px solid var(--soft);
  padding: 16px;
  border-radius: 10px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 230px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.price-tag {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-box {
  background: #ffffff;
  border: 1px solid var(--soft);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-box label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #cfd5cf;
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
}

.footer {
  background: #1b1f1d;
  color: #f3f3f0;
  padding: 40px 0 60px;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer a {
  color: #f3f3f0;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.disclaimer {
  margin-top: 20px;
  color: #cbd4cd;
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--soft);
  padding: 16px;
  border-radius: 10px;
  width: min(360px, 90%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--accent-dark);
  background: #ffffff;
  color: var(--accent-dark);
  cursor: pointer;
  font-weight: 600;
}

.pill.primary {
  background: var(--accent-dark);
  color: #ffffff;
}

.contact-block {
  background: #ffffff;
  border: 1px solid var(--soft);
  border-radius: 12px;
  padding: 20px;
}

.fine-print {
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 780px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
