* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1e2a21;
  background: #f6f3ef;
  line-height: 1.6;
}

a {
  color: #1f5b3f;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  background: #f1ede8;
  border-bottom: 1px solid #e1d8cf;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a3b2a;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.95rem;
  color: #233a2c;
}

.hero {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 70vh;
  overflow: hidden;
}

.hero-image {
  flex: 1.2;
  background-image: url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d9d0c5;
  min-height: 70vh;
  display: flex;
}

.about-hero {
  background-image: url("https://images.unsplash.com/photo-1491553895911-0055eca6402d?w=1400&q=80");
}

.services-hero {
  background-image: url("https://images.unsplash.com/photo-1472214103451-9374bd1c798e?w=1400&q=80");
}

.contact-hero {
  background-image: url("https://images.unsplash.com/photo-1476041800959-2f6bb412c8ce?w=1400&q=80");
}

.hero-content {
  flex: 0.9;
  background: rgba(246, 243, 239, 0.95);
  margin-left: -8vw;
  padding: 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  box-shadow: -20px 25px 40px rgba(0, 0, 0, 0.08);
}

.hero-content h1 {
  font-size: 2.6rem;
  margin: 0;
}

.hero-content p {
  margin: 0;
  max-width: 520px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-button {
  border: none;
  background: #1f5b3f;
  color: #f6f3ef;
  padding: 12px 22px;
  font-size: 1rem;
  cursor: pointer;
}

.cta-link {
  align-self: center;
  font-weight: 600;
}

.section {
  padding: 5vw 6vw;
}

.section-alt {
  background: #efe8df;
}

.asym-row {
  display: flex;
  gap: 4vw;
  flex-wrap: wrap;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1;
  min-width: 260px;
}

.asym-card {
  flex: 1;
  min-width: 260px;
  background: #ffffff;
  padding: 26px;
  border-radius: 6px;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.08);
}

.image-frame {
  flex: 1;
  min-width: 260px;
  background: #d9d0c5;
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
}

.image-frame.large {
  height: 420px;
}

.image-frame.small {
  height: 220px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 250px;
  background: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #e1d8cf;
}

.service-card h3 {
  margin: 0;
}

.service-card p {
  margin: 0;
}

.price {
  font-weight: 700;
  color: #1f5b3f;
}

.split-band {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.band-block {
  flex: 1 1 300px;
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.band-highlight {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=800&q=80");
  background-size: cover;
  background-position: center;
  background-color: #3a4a3f;
  color: #f6f3ef;
  position: relative;
}

.band-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 42, 33, 0.65);
}

.band-highlight > * {
  position: relative;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 28px;
  border-radius: 8px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.1);
  max-width: 520px;
}

.form-shell label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-shell input,
.form-shell select {
  padding: 10px 12px;
  border: 1px solid #d3c7bb;
  border-radius: 4px;
  font-size: 1rem;
}

.form-shell button {
  background: #1f5b3f;
  color: #f6f3ef;
  border: none;
  padding: 12px;
  font-size: 1rem;
  cursor: pointer;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw;
  background: #1e2a21;
  color: #f6f3ef;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
}

.footer a {
  color: #f6f3ef;
}

.footer-column {
  max-width: 340px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border: 1px solid #d3c7bb;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 999;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.2);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #1f5b3f;
  color: #f6f3ef;
}

.cookie-reject {
  background: #c7b8a8;
  color: #1e2a21;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #1f5b3f;
  color: #f6f3ef;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  z-index: 998;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #e1d8cf;
}

.hero-subimage {
  width: 180px;
  height: 140px;
  background: #cfc3b6;
  overflow: hidden;
  align-self: flex-end;
}

.list-clean {
  margin: 0;
  padding-left: 18px;
}

.list-clean li {
  margin-bottom: 6px;
}

.inline-image {
  background: #d9d0c5;
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 8px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #efe8df;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .hero-content {
    margin-left: 0;
  }

  .sticky-cta {
    left: auto;
    right: 20px;
  }
}
