* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1f2a;
  background: #f8f6f3;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  background: #efeae3;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 12px;
  color: #5d6475;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 20px;
  background: #f8f6f3;
}

.hero {
  display: flex;
  flex-direction: row;
  gap: 4vw;
  align-items: stretch;
  padding: 0 6vw 60px;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 40px 0;
}

.hero-text h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0;
}

.hero-text p {
  margin: 0;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  padding: 12px 18px;
  border-radius: 26px;
  border: 1px solid #1b1f2a;
  background: #1b1f2a;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: #1b1f2a;
}

.hero-media {
  flex: 1;
  display: flex;
  align-items: stretch;
}

.hero-media .media-frame {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #d9d2c7;
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #f1ece6;
}

.asymmetric {
  display: flex;
  gap: 4vw;
  align-items: flex-start;
  flex-wrap: wrap;
}

.asymmetric .block {
  flex: 1;
  min-width: 260px;
}

.offset-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(27, 31, 42, 0.08);
}

.image-frame {
  border-radius: 22px;
  overflow: hidden;
  background: #d9d2c7;
}

.image-frame.tall {
  min-height: 320px;
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid #1b1f2a;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  min-width: 220px;
  background: #ffffff;
  border-radius: 22px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 26px rgba(27, 31, 42, 0.08);
}

.service-card img {
  width: 100%;
  height: 160px;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.form-wrapper {
  display: flex;
  gap: 4vw;
  flex-wrap: wrap;
  align-items: stretch;
}

.form-panel {
  flex: 1;
  min-width: 260px;
  background: #ffffff;
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 12px 26px rgba(27, 31, 42, 0.08);
}

.form-panel label {
  display: block;
  font-size: 13px;
  margin: 12px 0 6px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid #c7c0b5;
  font-size: 14px;
  background: #f9f7f4;
}

.form-panel button {
  margin-top: 14px;
  width: 100%;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9;
  display: flex;
}

.sticky-cta a {
  background: #2b3763;
  color: #fff;
  padding: 12px 16px;
  border-radius: 24px;
  font-size: 14px;
}

.footer {
  padding: 40px 6vw 60px;
  background: #1b1f2a;
  color: #e8e4dd;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer small {
  color: #c0b8ab;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(27, 31, 42, 0.12);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.legal-main {
  display: flex;
  gap: 4vw;
  flex-wrap: wrap;
}

.legal-main .block {
  flex: 1;
  min-width: 260px;
}

.contact-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 22px;
  box-shadow: 0 10px 22px rgba(27, 31, 42, 0.08);
}

.list {
  margin: 0;
  padding-left: 18px;
}

.highlight {
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    justify-content: center;
    margin: 20px 0 0;
  }
}
