.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  padding: 110px 0 120px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.08)),
    url("../images/fv.jpg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(46vw, 650px);
  height: auto;
  min-width: 0;
  min-height: 0;
  background: linear-gradient(90deg, rgba(142, 0, 0, 0.96) 0%, rgba(178, 0, 0, 0.88) 62%, rgba(204, 28, 28, 0.38) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(5vw, 64px);
  transform: translateX(min(46vw, 650px));
  background: linear-gradient(90deg, rgba(204, 28, 28, 0.38), rgba(204, 28, 28, 0));
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.hero__content {
  max-width: 650px;
}

.hero__label {
  margin-bottom: 18px;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 900;
}

.hero__title {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 58px;
  font-weight: 900;
  line-height: 1.28;
  text-shadow: 0 3px 12px rgba(60, 0, 0, 0.35);
}

.hero__title span {
  display: block;
  white-space: nowrap;
}

.hero__text {
  max-width: 520px;
  margin-top: 24px;
  color: var(--color-white);
  font-size: 19px;
  text-shadow: 0 2px 10px rgba(60, 0, 0, 0.35);
}

.hero-venue-list {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 8px;
  margin-top: 22px;
}

.hero-venue-list li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.16);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  backdrop-filter: blur(4px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero .button--primary {
  background: var(--color-line);
  color: var(--color-white);
}

.hero .button--primary:hover {
  background: #05a948;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.hero .button--outline {
  border-color: var(--color-white);
  background: var(--color-white);
  color: var(--color-red);
}

.hero .button--outline:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: 42px;
}

.intro-panel {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 42px;
  border-left: 5px solid var(--color-red);
  background: var(--color-white);
  box-shadow: 0 18px 42px rgba(80, 0, 0, 0.08);
}

.intro-panel .section-heading {
  margin-bottom: 0;
}

.intro-panel p {
  font-size: 18px;
}

.intro-panel > p,
.mission-card p,
.venue-card p,
.report-card p {
  font-weight: normal;
}

.intro-visual {
  overflow: hidden;
  aspect-ratio: 1;
  min-height: 0;
  margin: 0;
  background: var(--color-white);
}

.intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-visual--logo {
  display: grid;
  place-items: center;
  padding: 42px;
}

.intro-visual--logo img {
  height: auto;
  object-fit: contain;
}

.mission {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1)),
    url("../images/wagara-bg.png") center / cover no-repeat;
}

.mission .section-heading,
.reports-preview .section-heading {
  text-align: center;
}

.mission .section-heading__title::after,
.reports-preview .section-heading__title::after {
  left: 50%;
  transform: translateX(-50%);
}

.mission__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.mission-card {
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--color-red);
  background: var(--color-white);
}

.mission-card__en {
  margin-bottom: 6px;
  color: var(--color-red);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  opacity: 0.7;
}

.mission-card h3 {
  margin-bottom: 14px;
  color: var(--color-red);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

.mission-card__emphasis {
  display: inline-block;
  color: var(--color-red);
  font-size: 1.12em;
  font-weight: 900;
  line-height: 1.7;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.venue-card,
.report-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.venue-card:hover,
.report-card:hover {
  border-color: var(--color-red);
  box-shadow: 0 18px 36px rgba(80, 0, 0, 0.18);
  transform: translateY(-6px);
}

.venue-card:hover h3,
.report-card:hover h3 {
  color: var(--color-red);
}

.venue-card:hover .venue-card__image {
  background:
    linear-gradient(135deg, rgba(189, 0, 0, 0.16), rgba(255, 255, 255, 0.68)),
    repeating-linear-gradient(45deg, #f1e5e5 0 12px, #ffffff 12px 24px);
}

.venue-card__image,
.report-card__image {
  display: grid;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(189, 0, 0, 0.06), rgba(255, 255, 255, 0.65)),
    repeating-linear-gradient(45deg, #f2f2f2 0 12px, #ffffff 12px 24px);
  color: var(--color-red);
  font-size: 14px;
  font-weight: 900;
}

.venue-card__image img,
.report-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.report-card__image img {
  object-fit: contain;
  background: var(--color-white);
}

.report-card__image--logo {
  padding: 28px;
  background: var(--color-white);
}

.venue-card__body {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.venue-card__day,
.report-card__meta {
  color: var(--color-red);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
}

.venue-card h3,
.report-card h3 {
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.4;
}

.venue-card p,
.report-card p {
  font-size: 14px;
}

.reports-preview {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.96)),
    url("../images/wagara-bg.png") center / cover no-repeat;
}

.report-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.report-card__body {
  display: grid;
  gap: 8px;
  padding: 20px;
}
