* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c231f;
  --muted: #4b5b51;
  --accent: #1c6b4a;
  --accent-dark: #124732;
  --soft: #f2f5f1;
  --sand: #e7ede5;
  --sun: #f5f0e4;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #d9dfd7;
  padding-bottom: 18px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.brand span {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a,
.nav-links button {
  font-size: 14px;
  border: none;
  background: none;
  cursor: pointer;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border-left: 1px solid #d9dfd7;
  padding-left: 14px;
}

.hero {
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding: 40px 6vw 60px;
  align-items: stretch;
}

.hero-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-panel h1 {
  font-size: 40px;
  line-height: 1.2;
}

.hero-panel p {
  font-size: 18px;
  color: var(--muted);
}

.hero-visual {
  flex: 1;
  min-height: 360px;
  border-radius: 24px;
  background-position: center;
  background-size: cover;
  background-color: #cad6cc;
}

.hero-home {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1400&q=80");
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: 2px solid var(--accent);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.split {
  display: flex;
  gap: 36px;
  padding: 56px 6vw;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .text h2 {
  font-size: 32px;
  line-height: 1.2;
}

.split .text p {
  color: var(--muted);
}

.image-frame {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  background-color: #dfe7de;
  min-height: 280px;
  display: flex;
  align-items: stretch;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services {
  padding: 20px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.services h2 {
  font-size: 30px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 220px;
  border-radius: 18px;
  background: var(--soft);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card .image-frame {
  min-height: 160px;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.trust-band {
  background-position: center;
  background-size: cover;
  background-color: #dde5dc;
  padding: 70px 6vw;
  color: #ffffff;
  background-image: url("https://images.unsplash.com/photo-1476041800959-2f6bb412c8ce?w=1400&q=80");
}

.trust-content {
  background: rgba(19, 32, 24, 0.78);
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
}

.trust-content h2 {
  font-size: 28px;
}

.trust-content p {
  color: #e8efe9;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-style: italic;
}

.form-section {
  padding: 60px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--sun);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cbd3cc;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.notice {
  font-size: 14px;
  color: var(--muted);
}

.form-message {
  font-size: 14px;
  color: var(--accent-dark);
}

.footer {
  padding: 32px 6vw;
  border-top: 1px solid #d9dfd7;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.footer small {
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid #d9dfd7;
  border-radius: 16px;
  padding: 16px;
  max-width: 340px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--accent);
}

.content-page {
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-page h1 {
  font-size: 34px;
}

.content-page .split {
  padding: 0;
}

.contact-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  background: var(--soft);
  padding: 18px;
  border-radius: 16px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-image {
  margin-top: 16px;
}

.policy-image .image-frame {
  min-height: 180px;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .hero-panel h1 {
    font-size: 32px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
