* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2428;
  --muted: #5f6b72;
  --sand: #f2eee8;
  --stone: #e6e1d9;
  --night: #14181b;
  --accent: #1d6f5c;
  --accent-soft: #e6f2ee;
  --border: #d9d2c7;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 20px 6vw;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-tagline {
  font-size: 13px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--accent);
}

.ad-disclosure {
  font-size: 12px;
  color: var(--muted);
  max-width: 220px;
}

main {
  flex: 1;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: stretch;
  background-color: var(--stone);
  background-position: center;
  background-size: cover;
  color: #ffffff;
}

.hero-home {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?w=1400&q=80");
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1523217582562-09d0def993a6?w=1400&q=80");
}

.hero-overlay {
  background: rgba(20, 24, 27, 0.62);
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  width: 100%;
}

.hero h1 {
  font-size: 44px;
  margin: 0;
  max-width: 680px;
}

.hero p {
  max-width: 560px;
  color: #f5f5f5;
  font-size: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:hover {
  filter: brightness(0.95);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: var(--sand);
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content,
.split .media {
  flex: 1;
  min-width: 0;
}

.media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-frame {
  background-color: var(--stone);
  padding: 10px;
  width: 100%;
}

.image-frame img {
  width: 100%;
  height: 320px;
  display: block;
  object-fit: cover;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 260px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background-color: var(--stone);
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.highlight {
  background: rgba(29, 111, 92, 0.08);
  border-left: 4px solid var(--accent);
  padding: 16px;
}

.form-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 14px;
  font-family: inherit;
}

.section-bg {
  background-color: var(--night);
  color: #ffffff;
  background-position: center;
  background-size: cover;
}

.section-bg-trust {
  background-image: url("https://images.unsplash.com/photo-1501183638710-841dd1904471?w=1400&q=80");
}

.section-bg .content {
  background: rgba(20, 24, 27, 0.7);
  padding: 28px;
  border-radius: 16px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  z-index: 50;
}

.sticky-cta:hover {
  filter: brightness(0.95);
}

footer {
  background: var(--night);
  color: #f3f3f3;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #f3f3f3;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-meta {
  font-size: 13px;
  color: #c9c9c9;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #ffffff;
}

.cookie-actions .reject {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.simple-hero {
  padding: 70px 6vw 40px;
  background-color: var(--stone);
  color: var(--ink);
}

.simple-hero h1 {
  margin: 0;
  font-size: 36px;
}

.page-image {
  padding: 30px 6vw;
}

.page-image .image-frame img {
  height: 260px;
}

@media (max-width: 960px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 34px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
