* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1f1f1f;
  background-color: #f6f4f1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background-color: #1c1b1a;
  color: #f5f3ef;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.6px;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  color: #e3d9c9;
  border-left: 2px solid #c7a378;
  padding-left: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  padding: 6px 0;
}

.nav a:hover,
.nav a:focus {
  color: #c7a378;
}

.sidebar-cta {
  margin-top: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  border-radius: 24px;
  padding: 12px 18px;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn.primary {
  background-color: #c7a378;
  color: #1c1b1a;
}

.btn.primary:hover,
.btn.primary:focus {
  transform: translateY(-1px);
  background-color: #d7b990;
}

.btn.ghost {
  background-color: transparent;
  color: #c7a378;
  border: 1px solid #c7a378;
}

.btn.ghost:hover,
.btn.ghost:focus {
  background-color: #2a2724;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero {
  min-height: 360px;
  background-image: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1400&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 48px;
  position: relative;
  color: #f7f2e9;
}

.hero.hero-services {
  background-image: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1400&q=80");
}

.hero.hero-about {
  background-image: url("https://images.unsplash.com/photo-1523413651479-597eb2da0ad6?w=1400&q=80");
}

.hero.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
}

.hero.hero-thanks {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
}

.hero.hero-privacy {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.hero.hero-gdpr {
  background-image: url("https://images.unsplash.com/photo-1471879832106-c7ab9e0cee23?w=1400&q=80");
}

.hero.hero-cookies {
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
}

.hero.hero-terms {
  background-image: url("https://images.unsplash.com/photo-1515165562835-c4c1f8a0f29d?w=1400&q=80");
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.7));
}

.hero-content {
  position: relative;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.light {
  background-color: #ffffff;
}

.section.tint {
  background-color: #ece3d7;
}

.section.bg-warehouse {
  position: relative;
  color: #f8f1e6;
  background-image: url("https://images.unsplash.com/photo-1502877338535-766e1452684a?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section.bg-warehouse::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 27, 26, 0.65);
}

.section.bg-warehouse > * {
  position: relative;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.media-frame {
  background-color: #d8c9b7;
  border-radius: 18px;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(16, 15, 13, 0.08);
}

.card h3 {
  margin: 0;
  font-size: 18px;
}

.card p {
  margin: 0;
  line-height: 1.5;
}

.price {
  font-weight: 700;
  color: #8c5d2d;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #c7a378;
  color: #1c1b1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 220px;
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c9c1b7;
  font-size: 14px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.quote {
  font-style: italic;
  border-left: 3px solid #c7a378;
  padding-left: 12px;
}

.footer {
  padding: 36px 48px;
  background-color: #1c1b1a;
  color: #e3d9c9;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer small {
  line-height: 1.5;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background-color: #c7a378;
  color: #1c1b1a;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(24, 20, 16, 0.2);
  z-index: 10;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background-color: #d7b990;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 420px;
  background-color: #ffffff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  display: none;
  gap: 12px;
  flex-direction: column;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.inline-link {
  font-weight: 600;
  color: #8c5d2d;
}

.inline-link:hover,
.inline-link:focus {
  color: #5f3f1d;
}

.page-title {
  font-size: 32px;
  margin: 0;
}

.notice-box {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .sidebar-cta {
    width: 100%;
  }

  .hero,
  .section,
  .footer {
    padding: 32px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 600px) {
  .sidebar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 28px;
  }

  .page-title {
    font-size: 26px;
  }
}
