* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f3ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 6vw;
  background: #f0e9e2;
  border-bottom: 1px solid #d9cfc6;
}

.topbar__brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.topbar__nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.topbar__nav a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.topbar__nav a:hover {
  border-bottom-color: #1b1b1b;
}

.topbar__ad {
  font-size: 0.82rem;
  background: #1b1b1b;
  color: #f7f3ef;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 70px 6vw 60px;
  align-items: stretch;
  background: #e8dfd6;
}

.hero__content,
.hero__visual {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__headline {
  font-size: 2.8rem;
  margin: 0 0 18px;
}

.hero__lead {
  font-size: 1.05rem;
  margin-bottom: 22px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1b1b1b;
  background: #1b1b1b;
  color: #f7f3ef;
  font-weight: 600;
  cursor: pointer;
}

.button--ghost {
  background: transparent;
  color: #1b1b1b;
}

.button:hover {
  transform: translateY(-1px);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 6vw;
  align-items: center;
}

.split--reverse {
  flex-direction: row-reverse;
}

.split__content,
.split__media {
  flex: 1 1 300px;
}

.split__media {
  background: #d7cbbb;
  border-radius: 18px;
  overflow: hidden;
}

.split__media img {
  width: 100%;
  height: 100%;
}

.section-tag {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.card__media {
  background: #d7cbbb;
}

.card__media img {
  width: 100%;
  height: 180px;
}

.card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 60px 6vw;
  background: #f2ece6;
}

.storyline__row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.storyline__row--reverse {
  flex-direction: row-reverse;
}

.storyline__block {
  flex: 1 1 280px;
}

.storyline__image {
  flex: 1 1 280px;
  background: #d7cbbb;
  border-radius: 14px;
  overflow: hidden;
}

.storyline__image img {
  width: 100%;
  height: 240px;
}

.form-shell {
  background: #1b1b1b;
  color: #f7f3ef;
  padding: 60px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.form-shell__intro {
  flex: 1 1 280px;
}

.form-shell__form {
  flex: 1 1 320px;
  background: #f7f3ef;
  color: #1b1b1b;
  padding: 28px;
  border-radius: 18px;
}

.form-shell__form label {
  display: block;
  margin-top: 12px;
  font-size: 0.9rem;
}

.form-shell__form input,
.form-shell__form select,
.form-shell__form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #c8c0b9;
  font-size: 0.95rem;
}

.form-shell__form button {
  width: 100%;
  margin-top: 18px;
}

.service-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.service-selector button {
  border: 1px solid #1b1b1b;
  background: transparent;
  color: #1b1b1b;
}

.service-selector button:hover {
  background: #1b1b1b;
  color: #f7f3ef;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.sticky-cta button {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #e1d5ca;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__meta {
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #1b1b1b;
  color: #f7f3ef;
  padding: 16px;
  border-radius: 12px;
  max-width: 320px;
  display: none;
  z-index: 25;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-banner__actions button {
  flex: 1 1 auto;
}

.legal-page {
  padding: 50px 6vw 70px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 240px;
  padding: 20px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.contact-card__title {
  font-weight: 700;
  margin-bottom: 8px;
}
