* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #f7f1ea;
  --sand: #efe3d5;
  --espresso: #3b2f2a;
  --clay: #b86a55;
  --olive: #69735c;
  --fog: #fdfbf8;
  --shadow: rgba(59, 47, 42, 0.18);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--espresso);
  background-color: var(--fog);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6%;
  background-color: var(--fog);
  position: relative;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--clay);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6% 60px;
  background: linear-gradient(120deg, var(--sand), var(--fog));
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
}

.hero-title {
  font-size: 2.3rem;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid var(--espresso);
}

.btn-primary {
  background-color: var(--espresso);
  color: var(--fog);
}

.btn-outline {
  background-color: transparent;
}

.hero-visual {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}

.hero-visual img {
  border-radius: 16px;
  box-shadow: 0 16px 30px var(--shadow);
}

.section {
  padding: 56px 6%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.section.light {
  background-color: var(--fog);
}

.section.muted {
  background-color: var(--cream);
}

.section.deep {
  background-color: var(--espresso);
  color: var(--fog);
}

.section-title {
  font-size: 1.6rem;
  max-width: 680px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split > div {
  flex: 1;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background-color: var(--fog);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 26px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 1.2rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background-color: var(--sand);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--clay);
  color: var(--fog);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery-row img {
  border-radius: 14px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border-radius: 18px;
  background-color: var(--sand);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price {
  font-size: 1.4rem;
  font-weight: 600;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: var(--fog);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 16px 30px var(--shadow);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(59, 47, 42, 0.2);
  font-family: inherit;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(59, 47, 42, 0.2);
  background-color: var(--cream);
}

.cta-inline {
  color: var(--clay);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background-color: var(--clay);
  color: var(--fog);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 20px var(--shadow);
  z-index: 5;
}

.footer {
  padding: 32px 6% 48px;
  background-color: var(--espresso);
  color: var(--fog);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--espresso);
  color: var(--fog);
  padding: 16px 6%;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--fog);
  background-color: transparent;
  color: var(--fog);
  font-weight: 600;
}

.cookie-btn.accept {
  background-color: var(--fog);
  color: var(--espresso);
}

.page-title {
  font-size: 2rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-visual {
    max-width: 520px;
  }

  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-grid {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .gallery-row {
    flex-direction: row;
  }

  .pricing-grid {
    flex-direction: row;
  }

  .pricing-grid .card {
    flex: 1;
  }

  .service-options {
    flex-direction: row;
  }

  .service-option {
    flex: 1;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
