* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background: #f5f2ed;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: #121212;
  color: #f4f0e8;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
}

.nav a {
  opacity: 0.85;
}

.nav a:hover,
.sidebar a:focus {
  opacity: 1;
}

.sidebar-cta {
  margin-top: auto;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  padding: 64px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section--hero {
  padding-top: 72px;
  background: #efe6d6;
}

.section--hero .hero-wrap {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1;
  min-width: 260px;
}

.hero-image {
  flex: 1;
  min-width: 260px;
  position: relative;
}

.hero-image img {
  border-radius: 28px;
}

.section--layered {
  background: #fdfbf7;
}

.section--layered::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 8vw;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(186, 84, 50, 0.12);
}

.section--split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.split-text,
.split-media {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
  color: #8b5f43;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
}

h1 {
  font-size: 38px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 20px;
}

p {
  margin: 0;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  background: #1f1f1f;
  color: #f5f2ed;
  width: fit-content;
}

.btn-outline {
  background: transparent;
  border-color: #1f1f1f;
  color: #1f1f1f;
}

.btn-accent {
  background: #ba5432;
  color: #fff;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
  color: #ba5432;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #ffffff;
  padding: 22px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(31, 31, 31, 0.08);
}

.card img {
  border-radius: 16px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #ba5432;
}

.quote {
  background: #1f1f1f;
  color: #f8f4ec;
  border-radius: 20px;
  padding: 22px;
  flex: 1;
  min-width: 220px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ba5432;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 16px 35px rgba(31, 31, 31, 0.1);
}

.form-panel label {
  font-size: 13px;
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d5c8b9;
  font-size: 14px;
  width: 100%;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.sticky-cta a {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(31, 31, 31, 0.18);
  display: none;
  gap: 12px;
  flex-direction: column;
  max-width: 320px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
}

.contact-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1;
  min-width: 220px;
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
}

.footer-note {
  padding: 24px 8vw 40px;
  font-size: 13px;
  color: #63574a;
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sidebar-cta {
    margin-top: 0;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 48px 6vw;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
