:root {
  color-scheme: light;
  --bg: #fbf5ef;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --ink: #2f1f1f;
  --muted: #6f5c57;
  --brand: #d85d79;
  --brand-deep: #9b3550;
  --line: rgba(47, 31, 31, 0.12);
  --shadow: 0 24px 60px rgba(124, 66, 66, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 216, 222, 0.75), transparent 38%),
    linear-gradient(180deg, #fffaf6 0%, var(--bg) 100%);
  color: var(--ink);
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
}

.hero {
  padding: 56px 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(216, 93, 121, 0.12);
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.hero-copy p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.button {
  background: linear-gradient(135deg, var(--brand), #ef8fa2);
  color: #fff;
  box-shadow: 0 14px 32px rgba(216, 93, 121, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(216, 93, 121, 0.18);
  color: var(--brand-deep);
}

.button:hover,
.button-secondary:hover,
.story-card:hover,
.story-list a:hover {
  transform: translateY(-2px);
}

.hero-card,
.section-panel,
.story-card {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 420px;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 11, 14, 0.02), rgba(24, 11, 14, 0.58));
}

.hero-card-copy {
  position: absolute;
  inset: auto 20px 20px;
  z-index: 1;
  color: #fff;
}

.hero-card-copy strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.hero-card-copy span {
  display: block;
  font-size: 0.94rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.section {
  padding: 18px 0 40px;
}

.section-panel {
  border-radius: 28px;
  padding: 26px;
}

.section-panel h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.section-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 22px;
}

.story-card {
  overflow: hidden;
  border-radius: 24px;
  text-decoration: none;
}

.story-card-media {
  position: relative;
  aspect-ratio: 9 / 16;
  background: linear-gradient(180deg, #ffdce4 0%, #f4b5c0 100%);
}

.story-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-card-body {
  padding: 18px 18px 20px;
}

.story-card-body strong {
  display: block;
  font-size: 1.15rem;
}

.story-card-body p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.story-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.story-list a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
}

.story-list strong {
  display: block;
  font-size: 1rem;
}

.story-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.story-list em {
  color: var(--brand-deep);
  font-style: normal;
  font-weight: 700;
}

.footer {
  padding: 0 0 40px;
}

.footer p {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .story-grid,
  .story-list {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-card {
    min-height: 340px;
  }
}
