:root {
  --cs-ink: #222222;
  --cs-muted: #666666;
  --cs-primary: #E04F67;
  --cs-primary-dark: #C53E52;
  --cs-soft: #F5F5F5;
  --cs-paper: #FBFAF7;
  --cs-border: #E8E4DF;
  --cs-dark: #1A1A1A;
  --cs-font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --cs-shadow: rgba(0, 0, 0, .07) 0 10px 34px;
}

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

body {
  margin: 0;
  color: var(--cs-ink);
  background: var(--cs-paper);
  font-family: var(--cs-font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.03em; }
h1 { max-width: 980px; margin-bottom: 20px; font-size: clamp(42px, 5.8vw, 78px); }
h2 { margin-bottom: 16px; font-size: clamp(30px, 4vw, 52px); }
h3 { margin-bottom: 12px; font-size: 21px; }
p { margin-bottom: 16px; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.cs-shell {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.cs-kicker {
  margin-bottom: 14px;
  color: var(--cs-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.cs-hero {
  padding: 86px 0 70px;
  background:
    radial-gradient(circle at 86% 16%, rgba(224, 79, 103, .12), transparent 34%),
    linear-gradient(135deg, #FFFFFF 0%, #F7F3EF 100%);
}

.cs-hero p:not(.cs-kicker) {
  max-width: 760px;
  color: var(--cs-muted);
  font-size: 17px;
}

.cs-filter {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cs-filter a {
  padding: 9px 13px;
  color: var(--cs-muted);
  background: #fff;
  border: 1px solid var(--cs-border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.cs-filter a:hover {
  color: #fff;
  background: var(--cs-primary);
  border-color: var(--cs-primary);
}

.cs-section {
  padding: 72px 0;
}

.cs-section--feature {
  background: #fff;
}

.cs-feature {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 0;
  overflow: hidden;
  background: var(--cs-dark);
  box-shadow: var(--cs-shadow);
}

.cs-feature__content {
  padding: 52px 46px;
  color: #fff;
}

.cs-feature__content > span,
.cs-card span {
  display: block;
  margin-bottom: 13px;
  color: var(--cs-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cs-feature h2 { color: #fff; }

.cs-feature p {
  color: rgba(255, 255, 255, .72);
}

.cs-feature dl {
  margin: 28px 0 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.cs-feature dt {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cs-feature dd {
  margin: 0;
  color: #fff;
  font-size: 13px;
}

.cs-feature__image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.cs-link,
.cs-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--cs-primary);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cs-link::after,
.cs-card a::after { content: "→"; font-size: 12px; }

.cs-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cs-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--cs-border);
  box-shadow: rgba(0, 0, 0, .04) 0 4px 18px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cs-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--cs-shadow);
}

.cs-card img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: contain;
  background: var(--cs-soft);
}

.cs-card div {
  height: 100%;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cs-card p {
  color: var(--cs-muted);
  font-size: 13px;
}

.cs-card a {
  margin-top: auto;
}

.cs-section--brief {
  color: #fff;
  background: var(--cs-dark);
}

.cs-brief {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cs-brief h2 {
  max-width: 680px;
  color: #fff;
}

.cs-brief p:not(.cs-kicker) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .72);
}

.cs-button {
  min-height: 44px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--cs-primary);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.cs-button:hover { background: var(--cs-primary-dark); }

@media (max-width: 992px) {
  .cs-feature,
  .cs-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-feature { grid-template-columns: 1fr; }
  .cs-brief { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 576px) {
  body { font-size: 14px; }
  .cs-shell { padding: 0 18px; }
  .cs-hero { padding: 58px 0 48px; }
  .cs-section { padding: 52px 0; }
  .cs-grid { grid-template-columns: 1fr; }
  .cs-feature__content { padding: 34px 24px; }
  .cs-feature dl { grid-template-columns: 1fr; }
  .cs-feature__image img { min-height: 280px; }
  .cs-button { width: 100%; }
}
