* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1c1e1b;
  background-color: #f6f2ea;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6vw 16px;
  gap: 24px;
}

.brand-block {
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.ad-label {
  font-size: 12px;
  background-color: #dcead0;
  padding: 8px 12px;
  border-radius: 20px;
  max-width: 220px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  text-align: right;
}

.hero {
  display: flex;
  padding: 16px 6vw 40px;
  gap: 32px;
  align-items: center;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: 38px;
  line-height: 1.2;
}

.hero-text p {
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  padding: 12px 20px;
  border-radius: 28px;
  border: 1px solid #1c1e1b;
  background-color: #1c1e1b;
  color: #f6f2ea;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.secondary-btn {
  background-color: transparent;
  color: #1c1e1b;
}

.hero-image {
  flex: 0.9;
  position: relative;
}

.image-frame {
  background-color: #d6d2c6;
  border-radius: 18px;
  overflow: hidden;
}

.frame-520 {
  height: 520px;
}

.frame-320 {
  height: 320px;
}

.frame-240 {
  height: 240px;
}

.frame-160 {
  height: 160px;
}

.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  bottom: -18px;
  left: -16px;
  background-color: #f6f2ea;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  max-width: 220px;
  font-size: 13px;
}

.section {
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.asym {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}

.section.asym.reverse {
  flex-direction: row-reverse;
}

.section-title {
  font-size: 24px;
}

.section p {
  max-width: 560px;
}

.cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.service-card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.service-card h3 {
  font-size: 18px;
}

.price {
  font-weight: 600;
  color: #2d4a32;
}

.service-card .primary-btn {
  align-self: flex-start;
}

.split-panel {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.panel-block {
  flex: 1;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.background-panel {
  background-color: #e6efda;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.background-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1461354464878-ad92f492a5a0?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.background-panel > * {
  position: relative;
  z-index: 1;
}

.form-wrapper {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.service-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background-color: #ffffff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.service-form label {
  font-size: 13px;
  font-weight: 600;
}

.service-form input,
.service-form select,
.service-form textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c8c7c0;
  font-size: 14px;
}

.service-form button {
  border: none;
  cursor: pointer;
}

.form-aside {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-link {
  text-decoration: underline;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #2d4a32;
  color: #f6f2ea;
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 13px;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 40px;
  background-color: #1c1e1b;
  color: #f6f2ea;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
}

.footer-disclaimer {
  font-size: 12px;
  max-width: 680px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-banner.hidden {
  display: none;
}

.legal-content {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-blocks {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.thanks-box {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  max-width: 560px;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.image-stack .image-frame {
  height: 240px;
}

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .section.asym,
  .section.asym.reverse,
  .split-panel,
  .form-wrapper {
    flex-direction: column;
  }

  .floating-note {
    position: static;
    margin-top: 12px;
  }
}
