* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1d1b;
  background-color: #f6f2ed;
  line-height: 1.6;
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.header {
  background: #f6f2ed;
  border-bottom: 1px solid #ddd3c9;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  background: #eee3d7;
  border-radius: 999px;
  font-size: 0.85rem;
}

.main {
  flex: 1;
}

.section {
  padding: 72px 0;
  position: relative;
}

.section.compact {
  padding: 48px 0;
}

.asym-row {
  display: flex;
  gap: 36px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-block {
  flex: 1;
  min-width: 0;
}

.offset-card {
  background: #fffaf5;
  border: 1px solid #e2d6c9;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(31, 29, 27, 0.08);
  transform: translateY(-18px);
}

.media {
  background-color: #e3d9cf;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media.tall {
  height: 380px;
}

.media.medium {
  height: 300px;
}

.media.small {
  height: 220px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1f1d1b;
  color: #f6f2ed;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button.outline {
  background: transparent;
  color: #1f1d1b;
  border: 1px solid #1f1d1b;
}

.button:hover,
.button:focus {
  opacity: 0.88;
}

.inline-link {
  border-bottom: 1px solid #1f1d1b;
}

.highlight-panel {
  background: #1f1d1b;
  color: #f6f2ed;
  padding: 36px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.services-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #e4d8cc;
  position: relative;
}

.service-card .price {
  font-weight: 700;
  font-size: 1.05rem;
}

.layered {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.layered .panel {
  flex: 1 1 280px;
  background: #fdf7f1;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid #eadfd3;
  transform: translateY(12px);
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid #e2d6c9;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d5c8ba;
  font-size: 0.95rem;
  background: #fff;
}

.form-note {
  font-size: 0.9rem;
  color: #5b544e;
}

.footer {
  background: #1f1d1b;
  color: #f6f2ed;
  padding: 48px 0 64px;
}

.footer-top {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.disclaimer {
  margin-top: 24px;
  font-size: 0.9rem;
  color: #d8cfc7;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #fffaf5;
  border: 1px solid #e3d7cc;
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 100px;
  z-index: 9;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1453904300235-0f2f60b15b5d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.accent-bg {
  background-image: url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.about-bg {
  background-image: url("https://images.unsplash.com/photo-1472289065668-ce650ac443d2?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.services-bg {
  background-image: url("https://images.unsplash.com/photo-1495446815901-a7297e633e8d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.contact-bg {
  background-image: url("https://images.unsplash.com/photo-1506784983877-45594efa4cbe?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.legal-bg {
  background-image: url("https://images.unsplash.com/photo-1457694716743-eb419114c894?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.privacy-bg {
  background-image: url("https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.gdpr-bg {
  background-image: url("https://images.unsplash.com/photo-1503602642458-232111445657?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.cookies-bg {
  background-image: url("https://images.pexels.com/photos/6565245/pexels-photo-6565245.jpeg");
  background-size: cover;
  background-position: center;
}

.terms-bg {
  background-image: url("https://images.unsplash.com/photo-1481627834876-b7833e8f5570?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.overlay {
  background: rgba(31, 29, 27, 0.5);
  color: #f6f2ed;
  padding: 64px 0;
}

.muted {
  color: #6b625a;
}

.quote {
  font-style: italic;
  margin: 0;
}

@media (max-width: 900px) {
  .asym-row {
    flex-direction: column;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 14px;
    bottom: 86px;
  }
}
