*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2428;
  background: #f6f4f1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background: #111313;
  color: #f5f3ef;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 22px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  color: #d4c8b7;
  border-left: 2px solid #d4c8b7;
  padding-left: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.nav a {
  padding: 6px 0;
}

.nav a:hover {
  color: #f0c96c;
}

.sidebar-note {
  font-size: 13px;
  line-height: 1.5;
  color: #b7b0a4;
}

.content {
  flex: 1;
  padding: 36px 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 48px 48px 56px;
  border-radius: 28px;
  color: #f7f3ed;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2b2b2b;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 11, 12, 0.55);
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero p {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: #f0c96c;
  color: #1b1c1d;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #e8b952;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
  min-width: 260px;
}

.offset-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 14px 30px rgba(21, 22, 25, 0.08);
}

.offset-panel .panel-image {
  flex: 1;
  min-width: 220px;
  background: #e6ded2;
  border-radius: 20px;
  overflow: hidden;
}

.offset-panel .panel-text {
  flex: 1.2;
  min-width: 260px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1;
  min-width: 220px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #1b1c1d;
}

.band {
  background: #ede6db;
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.band-bg {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2f2b27;
  color: #fdf9f4;
  position: relative;
}

.band-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.55);
  border-radius: 24px;
}

.band-bg > * {
  position: relative;
  z-index: 1;
}

.quote {
  font-style: italic;
  border-left: 3px solid #b18b3d;
  padding-left: 14px;
}

.form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 16px 28px rgba(21, 22, 25, 0.08);
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4c9bd;
  font-size: 15px;
}

.form-card textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-link {
  color: #b18b3d;
  font-weight: 600;
}

.inline-link:hover {
  color: #8f6d2a;
}

.image-card {
  background: #e6ded2;
  border-radius: 20px;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.legal-box {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  margin-top: 20px;
  font-size: 12px;
  color: #6c6c6c;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer a {
  color: #6c6c6c;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 16px;
  max-width: 320px;
  background: #111313;
  color: #f5f3ef;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  justify-content: center;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #111313;
  color: #f5f3ef;
  padding: 18px;
  border-radius: 16px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #f0c96c;
  color: #1b1c1d;
}

.cookie-reject {
  background: #3c3f42;
  color: #f5f3ef;
}

.page-hero {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 24px;
  overflow: hidden;
  background: #e6ded2;
}

.page-hero img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.page-hero .hero-text {
  background: #fff;
  padding: 24px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.contact-card {
  flex: 1;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.references {
  font-size: 12px;
  color: #6c6c6c;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hidden {
  display: none;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .content {
    padding: 28px 24px 70px;
  }

  .hero {
    padding: 36px;
  }
}
