* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1f23;
  background: #f4f2ef;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  background: #121418;
  color: #f7f3ee;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  background: #2e3238;
  padding: 10px 12px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-links a {
  padding: 8px 10px;
  background: #1c2026;
  border-radius: 8px;
}

.content {
  flex: 1;
  padding: 40px 6vw 120px 6vw;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1;
  background: #fffaf2;
  padding: 32px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: 34px;
  line-height: 1.2;
}

.hero-media {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  background: #e0dbd2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-split {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.panel {
  flex: 1;
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel-dark {
  background: #1f2328;
  color: #f8f4f0;
}

.panel-accent {
  background: #f3efe8;
}

.inline-link {
  text-decoration: underline;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  gap: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
}

.service-card img {
  width: 150px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  background: #e0dbd2;
}

.service-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-tag {
  font-weight: 600;
}

.story-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
}

.story-row img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  background: #d8d0c6;
}

.form-block {
  display: flex;
  gap: 24px;
  background: #fffaf2;
  padding: 28px;
  border-radius: 18px;
}

.form-block form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-block label {
  font-size: 14px;
  font-weight: 600;
}

.form-block select,
.form-block input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8c1b7;
  font-size: 14px;
}

.action-button {
  background: #1c2026;
  color: #fdf9f2;
  border: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 15px;
  cursor: pointer;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.footer {
  margin-top: 10px;
  padding: 24px 0 8px 0;
  font-size: 13px;
  color: #3a3f45;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer a {
  text-decoration: underline;
}

.two-column {
  display: flex;
  gap: 22px;
}

.two-column .panel {
  flex: 1;
}

.image-inline {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  background: #d7d1c8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 360px;
  background: #1f2328;
  color: #f7f2ea;
  padding: 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-button {
  flex: 1;
  border: none;
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
}

.cookie-accept {
  background: #f7f2ea;
  color: #1f2328;
}

.cookie-reject {
  background: #2e333a;
  color: #f7f2ea;
}

.muted {
  color: #6b7178;
}

.centered {
  text-align: center;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
