.rouge-services-splash {
  --rouge-red: #9b1c31;
  --rouge-red-dark: #6f1423;
  --rouge-ink: #1f1f1f;
  --rouge-muted: #666;
  --rouge-soft: #f8f4f1;
  --rouge-border: #e4d9d2;
  --rouge-card: #ffffff;
  padding: 70px 20px;
  background: var(--rouge-soft);
  color: var(--rouge-ink);
}

.rouge-services-splash .rouge-wrap {
  max-width: 1150px;
  margin: 0 auto;
}

.rouge-services-splash .rouge-eyebrow {
  color: var(--rouge-red);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.rouge-services-splash h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--rouge-ink);
}

.rouge-services-splash .rouge-lead {
  max-width: 850px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--rouge-muted);
  margin: 0 0 40px;
}

.rouge-service-choices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.rouge-service-choice {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 34px;
  background: var(--rouge-card);
  border: 1px solid var(--rouge-border);
  border-radius: 26px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.rouge-service-choice::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(155, 28, 49, 0.09), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.rouge-service-choice:hover {
  transform: translateY(-5px);
  border-color: rgba(155, 28, 49, 0.55);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.11);
}

.rouge-service-choice:hover::before {
  opacity: 1;
}

.rouge-choice-label {
  position: relative;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 7px 12px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--rouge-soft);
  color: var(--rouge-red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.rouge-service-choice h2 {
  position: relative;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.08;
  margin: 0 0 16px;
  color: var(--rouge-red-dark);
}

.rouge-service-choice p {
  position: relative;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--rouge-muted);
  margin: 0 0 22px;
}

.rouge-service-list {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 8px 0 28px;
  padding: 0;
  list-style: none;
}

.rouge-service-list li {
  position: relative;
  padding-left: 22px;
  color: var(--rouge-ink);
  line-height: 1.45;
}

.rouge-service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rouge-red);
}

.rouge-choice-footer {
  position: relative;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid #efe7e1;
}

.rouge-choice-price {
  color: var(--rouge-muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

.rouge-choice-price strong {
  display: block;
  color: var(--rouge-ink);
  font-size: 1.05rem;
}

.rouge-choice-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--rouge-red);
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.rouge-service-choice:hover .rouge-choice-button {
  background: var(--rouge-red-dark);
}

.rouge-services-note {
  margin-top: 34px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--rouge-border);
  border-left: 5px solid var(--rouge-red);
  border-radius: 18px;
  color: var(--rouge-muted);
  line-height: 1.65;
}

.rouge-services-note strong {
  color: var(--rouge-ink);
}

@media (max-width: 850px) {
  .rouge-services-splash {
    padding: 52px 16px;
  }
  .rouge-service-choices {
    grid-template-columns: 1fr;
  }
  .rouge-service-choice {
    min-height: auto;
    padding: 28px;
  }
  .rouge-choice-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .rouge-choice-button {
    width: 100%;
  }
}
