* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: #141416;
  background: #f6f3ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 20px 0 12px;
  position: relative;
  z-index: 2;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.brand span {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.75rem;
  opacity: 0.7;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: #141416;
}

.hero {
  padding: 24px 0 48px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.1;
  margin: 0;
}

.hero p {
  margin: 0;
  max-width: 560px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #141416;
  background: #141416;
  color: #f6f3ef;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #1d1d20;
}

.btn-outline {
  background: transparent;
  color: #141416;
}

.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: #141416;
  text-decoration: underline;
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-media img {
  width: min(460px, 90%);
  box-shadow: 0 24px 60px rgba(20, 20, 22, 0.22);
}

.float-card {
  position: absolute;
  left: 0;
  bottom: -24px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  max-width: 220px;
  font-size: 0.85rem;
}

.section {
  padding: 54px 0;
  position: relative;
}

.section.soft {
  background: #fff8f2;
}

.section.dark {
  background: #141416;
  color: #f6f3ef;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.highlight {
  background: #f0d9c8;
  padding: 20px;
  border-radius: 18px;
}

.offset-box {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  margin-left: auto;
  box-shadow: 0 12px 30px rgba(20, 20, 22, 0.08);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 8px 14px;
  background: #141416;
  color: #f6f3ef;
  border-radius: 999px;
  font-size: 0.8rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-item span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #141416;
  color: #f6f3ef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 34px rgba(20, 20, 22, 0.08);
}

.card small {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  opacity: 0.6;
}

.card .price {
  font-size: 1.3rem;
  font-weight: 700;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-left: 3px solid #141416;
  background: #fff;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-option {
  border: 1px solid rgba(20, 20, 22, 0.2);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  transition: border 0.2s ease, transform 0.2s ease;
}

.service-option.active {
  border-color: #141416;
  transform: translateY(-2px);
}

.form-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(20, 20, 22, 0.2);
  font-family: inherit;
  font-size: 1rem;
}

input:disabled,
select:disabled,
textarea:disabled {
  background: #f2f0ed;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  display: inline-flex;
  padding: 12px 18px;
  background: #f0d9c8;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(20, 20, 22, 0.22);
  font-weight: 600;
}

.footer {
  padding: 50px 0 70px;
  background: #111113;
  color: #f6f3ef;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 16px 36px rgba(20, 20, 22, 0.22);
  display: none;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  padding: 40px 0 30px;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.simple-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notice {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px dashed rgba(20, 20, 22, 0.2);
}

@media (min-width: 900px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-copy {
    flex: 1.1;
  }

  .hero-media {
    flex: 0.9;
  }

  .split,
  .split.reverse {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards,
  .service-grid,
  .simple-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .service-option,
  .simple-grid > div {
    flex: 1 1 calc(33% - 12px);
  }

  .service-option {
    min-width: 220px;
  }
}
