*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #14231c;
  --muted: #4f6158;
  --surface: #f6f5f2;
  --surface-strong: #e6ece7;
  --accent: #1d6b4f;
  --accent-strong: #124835;
  --highlight: #f1ede3;
  --border: #d6dcd7;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 6vw;
  gap: 2rem;
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.nav-links a {
  border-bottom: 2px solid transparent;
  padding-bottom: 0.2rem;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.ad-disclosure {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 14rem;
  text-align: right;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3.5rem 6vw 4rem;
  background: linear-gradient(120deg, var(--surface) 0%, #fff 55%);
}

.hero-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0;
}

.hero p {
  color: var(--muted);
  margin: 0;
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.4rem;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn:hover {
  background: var(--accent-strong);
}

.btn.secondary:hover {
  color: #fff;
  background: var(--accent);
}

.hero-media {
  flex: 1 1 340px;
  display: flex;
  align-items: stretch;
}

.image-frame {
  background: var(--surface-strong);
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  min-height: 260px;
  display: flex;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding: 3.5rem 6vw;
  align-items: center;
}

.split-section.alt {
  flex-direction: row-reverse;
  background: var(--highlight);
}

.split-content,
.split-media {
  flex: 1 1 320px;
}

.split-content h2 {
  margin-top: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.split-content p {
  color: var(--muted);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.1rem;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.service-card {
  flex: 1 1 220px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-image {
  min-height: 160px;
  border-radius: 12px;
}

.service-card h3 {
  margin: 0;
}

.price-tag {
  font-weight: 700;
  color: var(--accent-strong);
}

.form-section {
  background: var(--surface);
}

.service-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
}

.service-form label {
  font-weight: 600;
}

.service-form input,
.service-form select {
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 1rem;
}

.form-note {
  font-size: 0.92rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 0.6rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  box-shadow: 0 12px 28px rgba(20, 35, 28, 0.14);
  z-index: 10;
}

.sticky-cta span {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 2.5rem 6vw;
  background: #0f1f18;
  color: #e8efe9;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer a {
  color: #e8efe9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.86rem;
  color: #cbd6cf;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: 0 12px 24px rgba(20, 35, 28, 0.12);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
}

.cookie-actions button {
  flex: 1;
}

@media (max-width: 860px) {
  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-disclosure {
    text-align: left;
    max-width: none;
  }

  .sticky-cta {
    right: 1rem;
    left: 1rem;
    justify-content: center;
  }
}
