:root {
  --bg-light: #f8f4ef;
  --bg-dark: #1c1b19;
  --accent: #c77d2a;
  --accent-soft: #f1d6b5;
  --text-dark: #1f1b16;
  --text-light: #fdf9f4;
  --muted: #6e6258;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

a {
  color: inherit;
  text-decoration: none;
}

.nav-split {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 8vw;
  background: #fffaf4;
  border-bottom: 1px solid #eee1d3;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand__name {
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: lowercase;
}

.brand__tagline {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-asym {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 600;
}

.section {
  padding: 70px 8vw;
  position: relative;
}

.section--hero {
  padding-top: 80px;
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section--light {
  background: #fffdf9;
}

.section--diagonal::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -40px;
  width: 100%;
  height: 80px;
  background: var(--bg-light);
  transform: skewY(-3deg);
  transform-origin: left;
  z-index: 1;
}

.section--offset-left {
  background: linear-gradient(120deg, #fff6ed 60%, #f8f4ef 60%);
}

.section--offset-right {
  background: linear-gradient(240deg, #fff6ed 55%, #f8f4ef 55%);
}

.section--split {
  padding-bottom: 90px;
}

.section--form {
  background: linear-gradient(140deg, #1c1b19 40%, #2e2923 40%);
}

.section--sticky {
  background: #fffdf8;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 12px;
}

h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 18px;
}

h2 {
  font-size: 1.9rem;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

p {
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn--secondary {
  background: #fff;
  border: 1px solid #d9b593;
  color: var(--text-dark);
}

.btn--ghost {
  background: transparent;
  border: 1px solid #c9b9aa;
  color: inherit;
}

.btn--outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.link-inline {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.link-inline--light {
  color: #fff;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.asym-hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.asym-hero__media {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.media-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.split-stack,
.asym-grid,
.split-emphasis {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-list,
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
  margin-bottom: 16px;
}

.feature-list li,
.benefit-list li {
  margin-left: 10px;
}

.trust-strip {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial-flow__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.card--highlight {
  transform: translateX(10px);
  background: var(--accent-soft);
}

.pricing-reveal__cards,
.service-cards,
.service-grid,
.team-list,
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.price-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card--offset {
  transform: translateX(12px);
  background: #fff8f0;
}

.price-tag {
  font-size: 1.6rem;
  font-weight: 700;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.service-card--offset {
  transform: translateX(-8px);
}

.sticky-layout {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.sticky-cta {
  background: #fff8f0;
  padding: 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 20px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

.lead-form input,
.lead-form select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d3c4b6;
  font-size: 1rem;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-copy {
  color: var(--text-light);
}

.microcopy {
  font-size: 0.9rem;
  color: #d7cfc6;
}

.urgency-box,
.final-cta {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.section--dark .urgency-box,
.section--dark .final-cta {
  background: #2a2420;
  color: #fff;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.team-card,
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.team-card--offset,
.contact-card--offset {
  transform: translateX(14px);
  background: #fff8f0;
}

.site-footer {
  background: #1c1b19;
  color: #f4efe9;
  padding: 40px 8vw;
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-columns a {
  display: block;
  margin-bottom: 6px;
  color: #f4efe9;
}

.footer-note {
  font-size: 0.85rem;
  color: #d6cfc7;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 16px 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  width: min(90%, 520px);
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.selected-service {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
}

@media (min-width: 900px) {
  .nav-split {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
  }

  .asym-hero {
    flex-direction: row;
    align-items: center;
  }

  .asym-hero__copy {
    flex: 1.1;
  }

  .asym-hero__media {
    flex: 0.9;
  }

  .split-stack,
  .asym-grid,
  .split-emphasis {
    flex-direction: row;
    align-items: center;
  }

  .split-stack__text,
  .asym-grid__text,
  .split-emphasis__content {
    flex: 1;
  }

  .split-stack__image,
  .asym-grid__media,
  .split-emphasis__image {
    flex: 1;
  }

  .trust-strip,
  .testimonial-flow__cards,
  .pricing-reveal__cards,
  .service-cards,
  .service-grid,
  .team-list,
  .contact-grid,
  .faq-grid,
  .footer-columns {
    flex-direction: row;
  }

  .trust-strip > div,
  .testimonial-flow__cards .card,
  .pricing-reveal__cards .price-card,
  .service-cards .service-card,
  .service-grid .price-card,
  .team-list .team-card,
  .contact-grid .contact-card,
  .faq-grid > div {
    flex: 1;
  }

  .sticky-layout {
    flex-direction: row;
  }

  .sticky-layout__aside {
    flex: 0.7;
  }

  .sticky-layout__content {
    flex: 1.3;
  }

  .form-wrap {
    flex-direction: row;
    align-items: flex-start;
  }

  .form-copy,
  .lead-form {
    flex: 1;
  }

  .cookie-banner__actions {
    flex-direction: row;
    justify-content: flex-end;
  }
}
