* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1f1f1f;
  background: #f6f3ee;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sidebar {
  background: #11120f;
  color: #f8f4ee;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.tagline {
  font-size: 0.95rem;
  color: #bcb5aa;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-weight: 500;
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: #f0c064;
  color: #11120f;
  border-radius: 999px;
  font-weight: 600;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 32px 18px 80px;
}

.section {
  padding: 28px 18px;
  border-radius: 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.section--dark {
  background: #1f2a2a;
  color: #f7f2ea;
}

.section--sand {
  background: #f3e7d6;
}

.section--ink {
  background: #1a1d27;
  color: #f6f1ea;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #8b8173;
}

.hero {
  gap: 24px;
}

.hero h1 {
  font-size: 2.2rem;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1a1d27;
  color: #f7f2ea;
  font-weight: 600;
}

.button--light {
  background: #f0c064;
  color: #11120f;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #f8f4ef;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  background: #fff5e4;
  padding: 16px;
  border-radius: 16px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfc6bb;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: #6c645b;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  color: #554f47;
}

.footer a {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #11120f;
  color: #f7f2ea;
  padding: 16px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner.is-hidden {
  display: none;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #f0c064;
  color: #11120f;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  z-index: 9;
}

.sticky-cta a {
  color: inherit;
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.list-inline span {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  background: #f7f2ea;
  padding: 18px;
  border-radius: 16px;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  background: #f8f4ef;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.highlight {
  background: #f0c064;
  color: #11120f;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 600;
}

@media (min-width: 900px) {
  .site {
    flex-direction: row;
  }

  .sidebar {
    width: 280px;
    min-height: 100vh;
    position: relative;
  }

  .content {
    padding: 48px 48px 100px;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-text {
    flex: 1.1;
  }

  .hero-media {
    flex: 0.9;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .form-wrap {
    flex-direction: row;
    align-items: flex-start;
  }

  .form-wrap .form-info {
    flex: 0.9;
  }

  .form-wrap form {
    flex: 1.1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-item {
    flex: 1;
  }

  .service-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
