* {
  box-sizing: border-box;
}

html {
  background: #eee2f4;
  color: #251b2a;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  background: #eee2f4;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  padding: 20px 18px 10px;
}

.brand-banner {
  display: block;
  max-width: 1080px;
  margin: 0 auto;
  border: 4px solid #5c2f7f;
  background: #eee2f4;
  text-decoration: none;
}

.brand-banner img {
  width: 100%;
  aspect-ratio: 2.35 / 1;
  object-fit: contain;
  background: #eee2f4;
}

main {
  width: min(1080px, calc(100% - 28px));
  margin: 0 auto 28px;
}

.intro {
  padding: 18px 4px 20px;
  text-align: center;
}

.eyebrow,
.caption span {
  margin: 0 0 8px;
  color: #5c2f7f;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 920px;
  margin: 0 auto;
  color: #2f1642;
  font-size: clamp(2rem, 6vw, 4.25rem);
  line-height: 1;
}

.intro p {
  max-width: 760px;
  margin: 16px auto 0;
  font-size: 1.15rem;
  line-height: 1.55;
}

.story {
  display: grid;
  gap: 20px;
}

.scene {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.45fr);
  align-items: stretch;
  overflow: hidden;
  border: 4px solid #5c2f7f;
  background: #fffdf8;
}

.scene figure {
  margin: 0;
  background: #eee2f4;
}

.scene img {
  width: 100%;
  height: 100%;
  max-height: 720px;
  object-fit: contain;
  background: #eee2f4;
}

.caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 28px;
  background: #fffdf8;
}

.caption p {
  margin: 0;
  color: #2f1642;
  font-size: clamp(1.25rem, 2.7vw, 2.25rem);
  font-weight: 700;
  line-height: 1.16;
}

.callout {
  margin-top: 22px;
  padding: 28px;
  border: 4px solid #5c2f7f;
  background: #fffdf8;
  text-align: center;
}

.callout h2 {
  max-width: 860px;
  margin: 0 auto;
  color: #2f1642;
  font-size: clamp(1.55rem, 4vw, 2.9rem);
  line-height: 1.08;
}

.callout p {
  max-width: 760px;
  margin: 14px auto 0;
  font-size: 1.1rem;
  line-height: 1.5;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 2px solid #5c2f7f;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

.primary-action {
  background: #5c2f7f;
  color: #fff;
}

.secondary-action {
  background: #fff;
  color: #5c2f7f;
}

.footer {
  padding: 22px 18px 32px;
  color: #2f1642;
  text-align: center;
}

.footer p {
  margin: 6px 0;
}

.footer a {
  color: #5c2f7f;
  font-weight: 700;
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 10px 6px;
  }

  main {
    width: min(100% - 18px, 1080px);
  }

  .scene {
    grid-template-columns: 1fr;
  }

  .caption {
    padding: 22px 20px;
  }
}
