* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1c1c1c;
  background: #f7f4f0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 8vw 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.85rem;
  color: #5f5b56;
  max-width: 210px;
  text-align: right;
}

.hero {
  display: flex;
  align-items: stretch;
  padding: 40px 8vw 80px;
  gap: 32px;
}

.hero-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background: #fff6ee;
  padding: 40px;
  border-radius: 24px;
  position: relative;
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 120px;
  height: 120px;
  background: #f0d7c3;
  border-radius: 32px;
  z-index: -1;
}

.hero-image {
  flex: 1.2;
  border-radius: 28px;
  overflow: hidden;
  background: #d9d0c8;
}

.section {
  padding: 64px 8vw;
}

.offset-row {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.offset-card {
  flex: 1;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  min-width: 260px;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.08);
}

.offset-card.push {
  margin-top: 40px;
}

.image-frame {
  background: #d7dad9;
  border-radius: 20px;
  overflow: hidden;
}

.image-frame.wide {
  flex: 1.2;
  min-width: 280px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1;
  min-width: 240px;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.07);
}

.price {
  font-weight: 700;
  font-size: 1.15rem;
  color: #2c4b3b;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #2c4b3b;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.secondary {
  background: #f0d7c3;
  color: #2c4b3b;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(44, 75, 59, 0.18);
}

.inline-link {
  border-bottom: 1px solid #2c4b3b;
  padding-bottom: 2px;
}

.asym-banner {
  background: #1f2a24;
  color: #f7f4f0;
  padding: 48px 8vw;
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 32px;
  margin: 0 6vw;
}

.bg-focus {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #f7f4f0;
}

.bg-focus::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 42, 36, 0.78);
}

.bg-focus > * {
  position: relative;
}

.asym-banner .note {
  flex: 1.4;
}

.asym-banner .mini-card {
  flex: 0.8;
  background: #2c4b3b;
  border-radius: 18px;
  padding: 24px;
}

.form-wrap {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.form-card {
  flex: 1.1;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
}

.form-aside {
  flex: 0.9;
  background: #f0d7c3;
  border-radius: 20px;
  padding: 32px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d6d2cc;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  margin-top: auto;
  padding: 48px 8vw;
  background: #ece6de;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #4f4b47;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 22px;
  background: #2c4b3b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(44, 75, 59, 0.3);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  padding: 20px 24px;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.legal-page {
  display: flex;
  gap: 40px;
  padding: 48px 8vw 80px;
  flex-wrap: wrap;
}

.legal-side {
  flex: 0.6;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  min-width: 240px;
}

.legal-main {
  flex: 1.4;
  background: #fff6ee;
  border-radius: 18px;
  padding: 32px;
  min-width: 280px;
}

.contact-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1;
  min-width: 220px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
}

.muted {
  color: #5f5b56;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .hero-panel::after {
    display: none;
  }

  .asym-banner {
    margin: 0 4vw;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
