*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1b1f23;
  background: #f7f4ef;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.site {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #151515;
  color: #f6f1e9;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand span {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  color: #c2b8a3;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.sidebar-cta {
  margin-top: auto;
  padding: 16px;
  border-radius: 16px;
  background: #f5a524;
  color: #1a1307;
  font-weight: 600;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  color: #fdfbf7;
  min-height: 60vh;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.45);
}

.hero > * {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0 0 16px 0;
}

.hero-lead {
  font-size: 1.1rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: #f5a524;
  color: #1a1307;
}

.btn-outline {
  border: 1px solid #f6e9d0;
  color: #fdfbf7;
}

.section {
  padding: 72px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section--split {
  flex-direction: row;
  gap: 48px;
  align-items: center;
}

.section--light {
  background: #fffdf9;
}

.section--dark {
  background: #20201f;
  color: #f6f1e9;
}

.section--layered {
  background: linear-gradient(120deg, #fff5dd 0%, #f5f1eb 100%);
}

.section-title {
  font-size: 2rem;
  margin: 0;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: #8b816f;
  margin-bottom: 8px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stat-card {
  flex: 1 1 180px;
  padding: 18px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.card img {
  border-radius: 12px;
  height: 160px;
  object-fit: cover;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-item span {
  font-weight: 700;
  color: #f5a524;
}

.testimonial {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.testimonial blockquote {
  flex: 1 1 240px;
  background: rgba(255, 255, 255, 0.1);
  border-left: 3px solid #f5a524;
  padding: 20px;
  border-radius: 16px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.price-row span {
  font-weight: 600;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d2c8b5;
  font-size: 1rem;
  font-family: inherit;
}

button {
  cursor: pointer;
  border: none;
}

.footer {
  padding: 32px 72px;
  background: #151515;
  color: #cfc4b1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

.footer a {
  color: #f5a524;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  background: #1a1307;
  color: #fdfbf7;
  border-radius: 999px;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-accept {
  background: #f5a524;
}

.cookie-reject {
  background: #e6e0d6;
}

.hero--home {
  background: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
}

.hero--about {
  background: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
}

.hero--services {
  background: url("https://images.unsplash.com/photo-1497435334941-8c899ee9e8e9?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
}

.hero--contact {
  background: url("https://images.unsplash.com/photo-1470137430626-983a37b8ea46?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
}

.page-header {
  padding: 64px 72px;
  background: #f2ebe2;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.info-panel {
  flex: 1 1 220px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.policy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  line-height: 1.6;
}

@media (max-width: 960px) {
  .site {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .content {
    width: 100%;
  }

  .section {
    padding: 56px 28px;
  }

  .hero {
    padding: 72px 28px;
  }

  .page-header {
    padding: 48px 28px;
  }

  .footer {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .section--split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
  }
}
