* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a2d;
  background: #f7f6f2;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.image-frame {
  background: #e6e2d8;
  padding: 12px;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.shell {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 10px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand h1,
.brand h2 {
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.9rem;
  color: #6a6f6b;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.nav a:hover {
  border-color: #3b5f54;
}

.hero {
  display: flex;
  align-items: stretch;
  gap: 40px;
  padding: 48px 0 80px;
  position: relative;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: clamp(2.1rem, 3vw, 3.4rem);
  line-height: 1.1;
}

.hero-text p {
  max-width: 520px;
}

.hero-media {
  flex: 0.9;
  position: relative;
}

.hero-media .image-frame {
  background: #dfe5df;
  padding: 14px;
  border-radius: 20px;
  transform: translateY(20px);
}

.hero-media .note-card {
  position: absolute;
  left: -80px;
  bottom: 40px;
  width: 220px;
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.btn {
  background: #3b5f54;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: #2b4a42;
  transform: translateY(-1px);
}

.btn.secondary {
  background: #ffffff;
  color: #3b5f54;
  border: 1px solid #3b5f54;
}

.section {
  padding: 70px 0;
  position: relative;
}

.section.has-bg {
  overflow: hidden;
}

.section-bg {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background: #dfe5df;
}

.section-bg img {
  width: 100%;
  height: 100%;
}

.section.alt {
  background: #ffffff;
}

.section .title {
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  margin-bottom: 18px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1.1;
}

.split .media {
  flex: 0.9;
}

.media .image-frame {
  background: #e6e2d8;
  padding: 12px;
  border-radius: 18px;
}

.offset-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.stagger {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stagger .step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.stagger .step:nth-child(2) {
  margin-left: 40px;
}

.stagger .step:nth-child(3) {
  margin-left: 80px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  flex: 1 1 260px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.service-card .price {
  font-weight: 600;
  color: #3b5f54;
}

.inline-link {
  color: #3b5f54;
  border-bottom: 1px solid #3b5f54;
  padding-bottom: 2px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  border-left: 4px solid #3b5f54;
}

.form-panel {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.form-panel form {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7cfc8;
  font-size: 0.95rem;
}

.form-panel textarea {
  min-height: 120px;
  resize: vertical;
}

.form-panel .side-note {
  flex: 0.7;
  align-self: center;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 20;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.footer {
  background: #1f2a2d;
  color: #e7ece8;
  padding: 50px 0;
}

.footer .columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer .col {
  flex: 1 1 220px;
}

.footer a {
  color: #e7ece8;
  border-bottom: 1px solid transparent;
}

.footer a:hover {
  border-color: #e7ece8;
}

.footer-note {
  padding-top: 20px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  display: none;
  z-index: 30;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.legal-block {
  background: #ffffff;
  padding: 26px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.aside-image {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 35%);
  transform: translate(20%, -20%);
  opacity: 0.9;
}

.aside-image .image-frame {
  background: #dfe5df;
  padding: 8px;
  border-radius: 18px;
}

.simple-header {
  padding: 32px 0 10px;
}

.page-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}

.contact-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  flex: 1 1 280px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  .hero,
  .split,
  .form-panel {
    flex-direction: column;
  }

  .hero-media .note-card {
    position: static;
    margin-top: 16px;
  }

  .stagger .step:nth-child(2),
  .stagger .step:nth-child(3) {
    margin-left: 0;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
  }
}
