@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --background: #faf8f4;
  --foreground: #2e3442;
  --muted: #5f6b80;
  --primary: #b66a78;
  --primary-contrast: #fff7f8;
  --border: #e8e0d8;
  --card: #ffffff;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "DM Sans", sans-serif;
}

a {
  color: var(--primary);
}

.cluster-wrap {
  width: min(100% - 2rem, 920px);
  margin: 0 auto;
  padding: 2.5rem 0 3rem;
}

.cluster-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.cluster-brand {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.cluster-back {
  font-size: 0.9rem;
  text-decoration: none;
}

.cluster-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem;
  box-shadow: 0 8px 20px rgb(15 23 42 / 0.06);
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  margin: 0;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

h2 {
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  margin: 1.3rem 0 0.65rem;
}

p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

ul {
  margin: 0.2rem 0 0.9rem;
  padding-left: 1.15rem;
}

li {
  margin-bottom: 0.4rem;
  line-height: 1.55;
}

.cluster-cta {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.cluster-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  padding: 0.65rem 1.15rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
}

.cluster-button--primary {
  background: var(--primary);
  color: var(--primary-contrast);
}

.cluster-button--secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.cluster-links {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.cluster-links p {
  margin-bottom: 0.6rem;
  color: var(--foreground);
  font-weight: 600;
}

.cluster-links ul {
  margin: 0;
}
