/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1e1f24;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Split layout */
.split {
  display: flex;
  gap: 48px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-column {
  flex: 1;
  min-width: 0;
}

.section {
  padding: 72px 0;
}

.section.compact {
  padding: 48px 0;
}

.section-light {
  background: #ffffff;
}

.section-dark {
  background: #1d1f2b;
  color: #f5f2ec;
}

.section-muted {
  background: #efe9e2;
}

.eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: inherit;
  opacity: 0.7;
}

h1, h2, h3 {
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  margin: 0 0 18px;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  margin: 0 0 16px;
}

h3 {
  font-size: 1.25rem;
  margin: 0 0 10px;
}

p {
  margin: 0 0 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #2b48f5;
  color: #ffffff;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn.outline {
  background: transparent;
  border-color: currentColor;
}

.btn.light {
  background: #f5f2ec;
  color: #1d1f2b;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(20, 22, 40, 0.12);
}

.card.dark {
  background: #262836;
  color: #f5f2ec;
}

.badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(43, 72, 245, 0.12);
  color: #2b48f5;
  font-size: 0.8rem;
  font-weight: 600;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #ffffff;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d0c8bf;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1d1f2b;
  color: #f5f2ec;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.sticky-cta a {
  color: inherit;
  font-weight: 600;
}

.footer {
  padding: 40px 0 60px;
  background: #111216;
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #ffffff;
  color: #1e1f24;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(30, 31, 36, 0.18);
  z-index: 9;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

/* Background helpers */
.bg-hero {
  background: url("https://images.unsplash.com/photo-1454165205744-3b78555e5572?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.bg-abstract {
  background: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.bg-calm {
  background: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.panel-image {
  border-radius: 22px;
  overflow: hidden;
  min-height: 320px;
}

.panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 88px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: unset;
  }
}
