* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1c1c1c;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  background: #111315;
  color: #f5f1ea;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.brand {
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
}

.nav a {
  color: #f5f1ea;
  opacity: 0.85;
}

.nav a:hover {
  opacity: 1;
}

.sidebar-note {
  font-size: 13px;
  opacity: 0.7;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 72px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section--hero {
  background: url("https://images.unsplash.com/photo-1505238680356-667803448bb6?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: #fff;
  position: relative;
}

.section--hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 14, 18, 0.62);
}

.section--hero > * {
  position: relative;
  z-index: 1;
}

.hero-columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  font-size: 42px;
  max-width: 540px;
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button--light {
  background: #f5f1ea;
  color: #1b1c1f;
}

.button--ghost {
  border-color: #f5f1ea;
  color: #f5f1ea;
  background: transparent;
}

.section--story {
  background: #fff;
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-card {
  background: #f2ede6;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section--asymmetric {
  background: #e7eef3;
  position: relative;
}

.section--asymmetric::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 10%;
  width: 120px;
  height: 120px;
  background: #f0b53f;
  border-radius: 50%;
  opacity: 0.25;
}

.asymmetric-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section--pricing {
  background: #fff;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #f8f3ec;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 22px;
  font-weight: 700;
}

.section--gallery {
  background: #101618;
  color: #f5f1ea;
}

.gallery-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gallery-row img {
  border-radius: 18px;
}

.section--team {
  background: #fff;
}

.team-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.team-member {
  flex: 1 1 180px;
  background: #f2f0ec;
  padding: 20px;
  border-radius: 14px;
}

.section--form {
  background: #dde4e9;
}

.form-wrap {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d0d0d0;
  font-size: 15px;
  font-family: inherit;
}

.section--faq {
  background: #fff;
}

.faq-item {
  background: #f6f0ea;
  padding: 20px;
  border-radius: 16px;
}

.footer {
  background: #111315;
  color: #f5f1ea;
  padding: 40px 8vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #f5f1ea;
  opacity: 0.8;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #f0b53f;
  color: #161616;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  z-index: 20;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.service-select {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.service-pill {
  padding: 10px 16px;
  background: #1b1c1f;
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
}

.service-pill.active {
  background: #f0b53f;
  color: #1b1c1f;
}

@media (min-width: 900px) {
  .hero-columns {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .hero-title {
    font-size: 54px;
  }

  .story-grid {
    flex-direction: row;
  }

  .story-card {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split > div {
    flex: 1;
  }

  .gallery-row {
    flex-direction: row;
  }

  .gallery-row img {
    flex: 1;
  }
}

@media (max-width: 860px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
