* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1e1f23;
  background: #f6f5f2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  padding: 32px 24px;
  background: #111215;
  color: #f5f5f2;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 13px;
  line-height: 1.4;
  color: #b2b4b9;
  border-left: 3px solid #e6b563;
  padding-left: 12px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 48px 100px;
}

.hero {
  display: flex;
  align-items: flex-end;
  min-height: 360px;
  padding: 32px;
  border-radius: 24px;
  background-color: #2c2f3a;
  background-image: url("https://images.unsplash.com/photo-1632187989763-c9c620420b4d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fdfcf8;
}

.hero-content {
  max-width: 520px;
  background: rgba(17, 18, 21, 0.78);
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #e6b563;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(17, 18, 21, 0.08);
}

.section.alt {
  background: #f0ede7;
}

.split {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
}

.media-frame {
  background: #d9d4c9;
  border-radius: 18px;
  overflow: hidden;
}

.media-frame img {
  width: 100%;
  height: 100%;
}

.cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #121318;
  color: #f5f4f0;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.light {
  background: #ffffff;
  color: #202126;
  border: 1px solid #ece7dd;
}

.card .media-frame {
  height: 140px;
}

.cta-banner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border-radius: 20px;
  background-color: #2a2e37;
  background-image: url("https://images.unsplash.com/photo-1632187981988-40f3cbaeef5e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.cta-banner .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-form label {
  font-size: 14px;
  color: #555a63;
}

.service-form input,
.service-form select,
.service-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d7d2c8;
  background: #fff;
  font-size: 15px;
}

.service-form button {
  align-self: flex-start;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  background: #e6b563;
  color: #1b1c21;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: #1b1c21;
  border: 1px solid #e6b563;
}

.btn.dark {
  background: #111215;
  color: #ffffff;
}

.btn:hover,
.nav-links a:hover {
  transform: translateY(-1px);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  box-shadow: 0 12px 30px rgba(17, 18, 21, 0.2);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer {
  padding: 16px 0 40px;
  font-size: 13px;
  color: #6f7480;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #111215;
  color: #f2f2ef;
  padding: 16px 20px;
  border-radius: 14px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.inline-note {
  font-size: 14px;
  color: #6c7079;
}

.message {
  padding: 12px 16px;
  background: #fef3da;
  border-radius: 10px;
  font-size: 14px;
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .content {
    padding: 32px 20px 120px;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
