* {
  box-sizing: border-box;
}

:root {
  color: #1f2a24;
  background: #f5f1ea;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  margin: 0;
  background: #f5f1ea;
  color: #1f2a24;
}

a {
  color: #1f5a3b;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.top-band {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6vw 16px;
  background: #efe6d7;
  border-bottom: 1px solid #d8cbb9;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 320px;
}

.brand h1 {
  margin: 0;
  font-size: 28px;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #dfe8d6;
  padding: 6px 10px;
  display: inline-flex;
  align-self: flex-start;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.nav-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 16px;
  background: #f7f4ef;
}

.hero {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: stretch;
  padding: 40px 6vw 20px;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-image {
  flex: 0.9;
  position: relative;
  background: #d9e2d2;
  padding: 16px;
  transform: translateY(24px);
}

.hero-image img {
  width: 100%;
  height: 420px;
  border-radius: 16px;
}

.hero-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 30px;
  border: 1px solid #1f5a3b;
  background: #1f5a3b;
  color: #f7f4ef;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: #1f5a3b;
}

.section {
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  background: #fdfaf6;
  border: 1px solid #e3d9cc;
  padding: 24px;
  max-width: 620px;
  align-self: flex-end;
  box-shadow: 0 12px 30px rgba(31, 42, 36, 0.08);
}

.split-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
}

.split-visual {
  flex: 1;
  background: #d8e4dd;
  padding: 16px;
}

.split-visual img {
  width: 100%;
  height: 320px;
  border-radius: 12px;
}

.service-board {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  background: #f7f4ef;
  border-left: 4px solid #1f5a3b;
}

.service-row img {
  width: 160px;
  height: 120px;
  border-radius: 10px;
}

.service-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.price {
  font-weight: 700;
  color: #1f5a3b;
  font-size: 18px;
}

.note-strip {
  background: #e6efe0;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-wrap {
  background: #fdfaf6;
  border: 1px solid #e3d9cc;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
}

.form-wrap label {
  font-weight: 600;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cdbfb0;
  font-size: 14px;
  background: #fff;
}

.inline-cta {
  background: #f2efe9;
  padding: 16px;
}

.aside-sticky {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  background: #fdfaf6;
  border: 1px solid #e3d9cc;
  padding: 18px;
  max-width: 260px;
  position: sticky;
  top: 24px;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 6vw 48px;
  background: #efe6d7;
  border-top: 1px solid #d8cbb9;
}

.footer-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
}

.references {
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #1f2a24;
  color: #f7f4ef;
  padding: 16px 18px;
  border-radius: 12px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  border-radius: 20px;
  padding: 8px 16px;
  cursor: pointer;
}

.cookie-accept {
  background: #f2c94c;
  color: #1f2a24;
}

.cookie-reject {
  background: #5e6a63;
  color: #f7f4ef;
}

.simple-page {
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-grid {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  background: #f7f4ef;
  border: 1px solid #e3d9cc;
  padding: 18px;
  min-width: 240px;
  flex: 1;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.muted {
  color: #4d5a53;
}

@media (max-width: 900px) {
  .hero,
  .split-row {
    flex-direction: column;
  }

  .hero-image {
    transform: none;
  }

  .nav-wrap {
    align-items: flex-start;
  }

  .aside-sticky {
    position: static;
    max-width: 100%;
  }
}
