* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f2b24;
  background: #f5f3ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.masthead {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 6%;
  background: #e6ede7;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.85rem;
  background: #1f2b24;
  color: #f5f3ef;
  padding: 4px 10px;
  border-radius: 14px;
  width: fit-content;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6% 60px;
}

.hero-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-media {
  flex: 1 1 360px;
  background: #b7c7b6;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  border: none;
  padding: 12px 18px;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
}

.primary-btn {
  background: #1f2b24;
  color: #f5f3ef;
}

.secondary-btn {
  background: #f0c36f;
  color: #1f2b24;
}

.ghost-btn {
  background: transparent;
  border: 1px solid #1f2b24;
  color: #1f2b24;
}

.mag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding: 50px 6%;
}

.mag-col {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.panel {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.panel--dark {
  background: #1f2b24;
  color: #f5f3ef;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.image-frame {
  background: #c7d2c8;
  border-radius: 16px;
  overflow: hidden;
  min-height: 200px;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 60px 6%;
  background: #e1e8df;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-tag {
  font-weight: 700;
  color: #1f2b24;
}

.form-section {
  padding: 60px 6%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.lead-form {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  max-width: 520px;
}

.lead-form label {
  font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd8d1;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  padding: 36px 6%;
  background: #1f2b24;
  color: #f5f3ef;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}

.footer a {
  text-decoration: underline;
}

.legal-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #f0c36f;
  color: #1f2b24;
  padding: 14px 18px;
  border-radius: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.sticky-cta button,
.sticky-cta a {
  border: none;
  background: #1f2b24;
  color: #f5f3ef;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 320px;
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
}

.cookie-accept {
  background: #1f2b24;
  color: #ffffff;
}

.cookie-reject {
  background: #cfd8d1;
  color: #1f2b24;
}

.simple-page {
  padding: 60px 6%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-col .panel {
  flex: 1 1 280px;
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
